@hmcts/ccpay-web-component 5.0.7-beta02 → 5.0.7-beta05
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 +788 -2071
- 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 +31 -33
- package/esm2015/lib/components/add-remission/add-remission.component.js +144 -697
- package/esm2015/lib/components/case-transactions/case-transactions.component.js +25 -31
- package/esm2015/lib/components/fee-summary/fee-summary.component.js +54 -21
- package/esm2015/lib/components/payment-view/payment-view.component.js +112 -188
- package/esm2015/lib/components/process-refund/process-refund.component.js +28 -49
- package/esm2015/lib/components/refund-list/refund-list.component.js +3 -3
- package/esm2015/lib/components/refund-status/refund-status.component.js +36 -211
- package/esm2015/lib/components/reports/reports.component.js +83 -14
- package/esm2015/lib/components/service-request/service-request.component.js +152 -237
- package/esm2015/lib/components/table/table.component.js +9 -24
- package/esm2015/lib/components/unprocessed-payments/unprocessed-payments.component.js +17 -1
- package/esm2015/lib/interfaces/IFee.js +1 -13
- package/esm2015/lib/interfaces/IPayment.js +1 -7
- package/esm2015/lib/interfaces/IRefundList.js +1 -7
- package/esm2015/lib/interfaces/IRemission.js +1 -7
- package/esm2015/lib/interfaces/IResubmitRefundRequest.js +2 -10
- package/esm2015/lib/interfaces/PostIssueRefundRetroRemission.js +2 -6
- package/esm2015/lib/interfaces/PostRefundRetroRemission.js +2 -20
- package/esm2015/lib/payment-lib.component.js +17 -11
- package/esm2015/lib/payment-lib.module.js +1 -3
- package/esm2015/lib/payment-lib.service.js +1 -16
- package/esm2015/lib/services/refunds/refunds.service.js +1 -10
- package/esm2015/lib/services/shared/httpclient/webcomponent.http.client.js +1 -1
- package/esm2015/lib/services/xl-file/xl-file.service.js +29 -1
- package/esm5/hmcts-ccpay-web-component.js +31 -33
- package/esm5/lib/components/add-remission/add-remission.component.js +149 -819
- package/esm5/lib/components/case-transactions/case-transactions.component.js +25 -31
- package/esm5/lib/components/fee-summary/fee-summary.component.js +54 -21
- package/esm5/lib/components/payment-view/payment-view.component.js +130 -219
- package/esm5/lib/components/process-refund/process-refund.component.js +78 -52
- package/esm5/lib/components/refund-list/refund-list.component.js +3 -3
- package/esm5/lib/components/refund-status/refund-status.component.js +34 -247
- package/esm5/lib/components/reports/reports.component.js +89 -14
- package/esm5/lib/components/service-request/service-request.component.js +182 -278
- package/esm5/lib/components/table/table.component.js +9 -27
- package/esm5/lib/components/unprocessed-payments/unprocessed-payments.component.js +17 -1
- package/esm5/lib/interfaces/IFee.js +1 -13
- package/esm5/lib/interfaces/IPayment.js +1 -7
- package/esm5/lib/interfaces/IRefundList.js +1 -7
- package/esm5/lib/interfaces/IRemission.js +1 -7
- package/esm5/lib/interfaces/IResubmitRefundRequest.js +2 -8
- package/esm5/lib/interfaces/PostIssueRefundRetroRemission.js +2 -5
- package/esm5/lib/interfaces/PostRefundRetroRemission.js +2 -16
- package/esm5/lib/payment-lib.component.js +12 -9
- package/esm5/lib/payment-lib.module.js +1 -3
- package/esm5/lib/payment-lib.service.js +1 -23
- package/esm5/lib/services/refunds/refunds.service.js +1 -16
- package/esm5/lib/services/shared/httpclient/webcomponent.http.client.js +1 -1
- package/esm5/lib/services/xl-file/xl-file.service.js +34 -1
- package/fesm2015/hmcts-ccpay-web-component.js +700 -1861
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +766 -2085
- package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
- package/hmcts-ccpay-web-component.d.ts +30 -32
- package/hmcts-ccpay-web-component.metadata.json +1 -1
- package/lib/components/add-remission/add-remission.component.d.ts +5 -45
- package/lib/components/case-transactions/case-transactions.component.d.ts +3 -2
- package/lib/components/fee-summary/fee-summary.component.d.ts +2 -0
- package/lib/components/payment-view/payment-view.component.d.ts +8 -23
- package/lib/components/process-refund/process-refund.component.d.ts +1 -6
- package/lib/components/refund-status/refund-status.component.d.ts +8 -34
- package/lib/components/reports/reports.component.d.ts +4 -0
- package/lib/components/service-request/service-request.component.d.ts +11 -28
- package/lib/components/table/table.component.d.ts +0 -1
- package/lib/components/unprocessed-payments/unprocessed-payments.component.d.ts +4 -0
- package/lib/interfaces/IFee.d.ts +0 -6
- package/lib/interfaces/IPayment.d.ts +0 -3
- package/lib/interfaces/IRefundList.d.ts +0 -4
- package/lib/interfaces/IRemission.d.ts +0 -3
- package/lib/interfaces/IResubmitRefundRequest.d.ts +1 -5
- package/lib/interfaces/PostIssueRefundRetroRemission.d.ts +1 -3
- package/lib/interfaces/PostRefundRetroRemission.d.ts +1 -7
- package/lib/payment-lib.component.d.ts +4 -2
- package/lib/payment-lib.service.d.ts +0 -3
- package/lib/services/refunds/refunds.service.d.ts +0 -2
- package/lib/services/xl-file/xl-file.service.d.ts +1 -0
- package/package.json +1 -5
- package/esm2015/lib/components/contact-details/contact-details.component.js +0 -447
- package/esm2015/lib/interfaces/IPutNotificationRequest.js +0 -25
- package/esm2015/lib/interfaces/IRefundContactDetails.js +0 -25
- package/esm2015/lib/interfaces/IRefundFee.js +0 -21
- package/esm2015/lib/interfaces/IRefundsNotifications.js +0 -21
- package/esm2015/lib/services/notification/notification.service.js +0 -85
- package/esm5/lib/components/contact-details/contact-details.component.js +0 -472
- package/esm5/lib/interfaces/IPutNotificationRequest.js +0 -23
- package/esm5/lib/interfaces/IRefundContactDetails.js +0 -25
- package/esm5/lib/interfaces/IRefundFee.js +0 -21
- package/esm5/lib/interfaces/IRefundsNotifications.js +0 -21
- package/esm5/lib/services/notification/notification.service.js +0 -89
- package/lib/components/contact-details/contact-details.component.d.ts +0 -49
- package/lib/interfaces/IPutNotificationRequest.d.ts +0 -6
- package/lib/interfaces/IRefundContactDetails.d.ts +0 -9
- package/lib/interfaces/IRefundFee.d.ts +0 -7
- package/lib/interfaces/IRefundsNotifications.d.ts +0 -16
- package/lib/services/notification/notification.service.d.ts +0 -15
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["ng://@hmcts/ccpay-web-component/lib/payment-lib.service.ts","ng://@hmcts/ccpay-web-component/lib/services/orderslist.service.ts","ng://@hmcts/ccpay-web-component/lib/payment-lib.component.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/error-handler.service.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/logger/logger.service.ts","ng://@hmcts/ccpay-web-component/lib/services/payment-list/payment-list.service.ts","ng://@hmcts/ccpay-web-component/lib/components/payment-list/payment-list.component.ts","node_modules/tslib/tslib.es6.js","ng://@hmcts/ccpay-web-component/lib/services/shared/httpclient/webcomponent.http.client.ts","ng://@hmcts/ccpay-web-component/lib/services/payment-view/payment-view.service.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PostRefundRetroRemission.ts","ng://@hmcts/ccpay-web-component/lib/components/payment-view/payment-view.component.ts","ng://@hmcts/ccpay-web-component/lib/services/refunds/refunds.service.ts","ng://@hmcts/ccpay-web-component/lib/components/process-refund/process-refund.component.ts","ng://@hmcts/ccpay-web-component/lib/components/refund-list/refund-list.component.ts","ng://@hmcts/ccpay-web-component/lib/services/card-details/card-details.service.ts","ng://@hmcts/ccpay-web-component/lib/components/card-details/card-details.component.ts","ng://@hmcts/ccpay-web-component/lib/components/page-not-found.component.ts","ng://@hmcts/ccpay-web-component/lib/services/status-history/status-history.service.ts","ng://@hmcts/ccpay-web-component/lib/components/status-history/status-history.component.ts","ng://@hmcts/ccpay-web-component/lib/services/notification/notification.service.ts","ng://@hmcts/ccpay-web-component/lib/components/contact-details/contact-details.component.ts","ng://@hmcts/ccpay-web-component/lib/components/pba-details/pba-details.component.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/logger/console-logger.service.ts","ng://@hmcts/ccpay-web-component/lib/services/case-transactions/case-transactions.service.ts","ng://@hmcts/ccpay-web-component/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.ts","ng://@hmcts/ccpay-web-component/lib/components/case-transactions/case-transactions.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PaymentToPayhubRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PayhubAntennaRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/fee-summary/fee-summary.component.ts","ng://@hmcts/ccpay-web-component/lib/components/error-banner/error-banner.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/UnidentifiedPaymentsRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/AllocatePaymentRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/UnsolicitedPaymentsRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.ts","ng://@hmcts/ccpay-web-component/lib/components/unprocessed-payments/unprocessed-payments.component.ts","ng://@hmcts/ccpay-web-component/lib/components/processed-payments/processed-payments.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IAllocationPaymentsRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/allocate-payments/allocate-payments.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/AddRemissionRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/AddRetroRemissionRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PostIssueRefundRetroRemission.ts","ng://@hmcts/ccpay-web-component/lib/components/add-remission/add-remission.component.ts","ng://@hmcts/ccpay-web-component/lib/pipes/ccd-hyphens.pipe.ts","ng://@hmcts/ccpay-web-component/lib/pipes/capitalize.pipe.ts","ng://@hmcts/ccpay-web-component/lib/pipes/key-value.pipe.ts","ng://@hmcts/ccpay-web-component/lib/pipes/sanitize-html.pipe.ts","ng://@hmcts/ccpay-web-component/lib/services/xl-file/xl-file.service.ts","ng://@hmcts/ccpay-web-component/lib/components/reports/reports.component.ts","ng://@hmcts/ccpay-web-component/lib/components/table/table.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IPutNotificationRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IResubmitRefundRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/refund-status/refund-status.component.ts","ng://@hmcts/ccpay-web-component/lib/components/service-request/service-request.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IserviceRequestCardPayment.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IserviceRequestPbaPayment.ts","ng://@hmcts/ccpay-web-component/lib/components/pba-payment/pba-payment.component.ts","ng://@hmcts/ccpay-web-component/lib/payment-lib.module.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\n\nexport class PaymentLibService {\n API_ROOT: string;\n BULKSCAN_API_ROOT: string;\n REFUNDS_API_ROOT: string;\n NOTIFICATION_API_ROOT: string;\n CARDPAYMENTRETURNURL: string;\n\n constructor() { }\n\n setApiRootUrl(apiRoot: string): void {\n this.API_ROOT = apiRoot;\n }\n\n getApiRootUrl(): string {\n return this.API_ROOT;\n }\n\n setBulkScanApiRootUrl(bulkscanapiRoot: string): void {\n this.BULKSCAN_API_ROOT = bulkscanapiRoot;\n }\n\n getBulkScanApiRootUrl(): string {\n return this.BULKSCAN_API_ROOT;\n }\n\n setRefundndsApiRootUrl(refundsapiRoot: string): void {\n this.REFUNDS_API_ROOT = refundsapiRoot;\n }\n\n getRefundsApiRootUrl(): string {\n return this.REFUNDS_API_ROOT;\n }\n setNoticationApiRootUrl(notificationapiRoot: string): void {\n this.NOTIFICATION_API_ROOT = notificationapiRoot;\n }\n\n getNoticationApiRootUrl(): string {\n return this.NOTIFICATION_API_ROOT;\n }\n setCardPaymentReturnUrl(cardPaymentReturnUrl: string):void {\n this.CARDPAYMENTRETURNURL = cardPaymentReturnUrl;\n }\n getCardPaymentReturnUrl(): string {\n return this.CARDPAYMENTRETURNURL;\n }\n}\n","import { Injectable } from '@angular/core';\nimport { Observable, BehaviorSubject } from 'rxjs';\nimport {IOrderReferenceFee} from '../interfaces/IOrderReferenceFee';\nimport { IRefundList } from '../interfaces/IRefundList';\nimport { IPaymentView } from '../interfaces/IPaymentView'; \n\n@Injectable({\n providedIn: 'root'\n})\nexport class OrderslistService {\n private ordersList: BehaviorSubject<IOrderReferenceFee[]> = new BehaviorSubject<IOrderReferenceFee[]>(null);\n private refundView: BehaviorSubject<IRefundList> = new BehaviorSubject<IRefundList>(null);\n private caseType = new BehaviorSubject(\"\");\n getcaseType = this.caseType.asObservable();\n private feeExists = new BehaviorSubject<boolean>(null);\n getFeeExist = this.feeExists.asObservable();\n private ccdCaseNumber = new BehaviorSubject(\"\");\n getCCDCaseNumberforRefund = this.ccdCaseNumber.asObservable();\n private isFromServiceRequestPage = new BehaviorSubject<boolean>(null);\n getisFromServiceRequestPage = this.isFromServiceRequestPage.asObservable();\n private OrderRefId = new BehaviorSubject(\"\");\n getOrderRefId = this.OrderRefId.asObservable();\n private navigationPage = new BehaviorSubject(\"\");\n getnavigationPage = this.navigationPage.asObservable();\n\n private orderRef = new BehaviorSubject(\"\");\n getorderRef = this.orderRef.asObservable();\n private orderCCDEvent = new BehaviorSubject(\"\");\n getorderCCDEvent = this.caseType.asObservable();\n private orderCreated = new BehaviorSubject<Date>(null);\n getorderCreated = this.orderCreated.asObservable();\n private orderParty = new BehaviorSubject(\"\");\n getorderParty = this.orderParty.asObservable();\n private orderRemissionTotal = new BehaviorSubject<number>(null);\n getorderRemissionTotal = this.orderRemissionTotal.asObservable();\n private orderFeesTotal = new BehaviorSubject<number>(null);\n getorderFeesTotal = this.orderFeesTotal.asObservable();\n private orderTotalPayments = new BehaviorSubject<number>(null);\n getorderTotalPayments = this.orderTotalPayments.asObservable();\n private rolesList: BehaviorSubject<any[]> = new BehaviorSubject<any[]>(null);\n\n private orderDetail: BehaviorSubject<any[]> = new BehaviorSubject<any[]>(null);\n\n private paymentPageView: BehaviorSubject<IPaymentView> = new BehaviorSubject<IPaymentView>(null);\n\n constructor() { }\n\n setOrdersList(orderLevelFees: IOrderReferenceFee[]): void {\n this.ordersList.next(Object.assign([], orderLevelFees));\n }\n getOrdersList() {\n return this.ordersList;\n }\n\n setRefundView(refundList: IRefundList): void {\n this.refundView.next(Object.assign([], refundList));\n }\n getRefundView() {\n return this.refundView;\n }\n\n setCaseType(caseType: string){\n this.caseType.next(caseType);\n }\n getCaseType(){\n return this.caseType;\n }\n\n setCCDCaseNumber(ccdCaseNumber: string){\n this.ccdCaseNumber.next(ccdCaseNumber);\n }\n getCCDCaseNumber(){\n return this.ccdCaseNumber;\n }\n\n setFeeExists(feeExists: boolean){\n this.feeExists.next(feeExists);\n }\n getFeeExists(){\n return this.feeExists;\n } \n\n setisFromServiceRequestPage(isFromServiceRequestPage: boolean){\n this.isFromServiceRequestPage.next(isFromServiceRequestPage);\n }\n getisFromServiceRequestPages(){\n return this.isFromServiceRequestPage;\n }\n\n setOrderRefId(OrderRefId: string){\n this.OrderRefId.next(OrderRefId);\n }\n getSelectedOrderRefId(){\n return this.OrderRefId;\n }\n\n setnavigationPage(navigationPage: string){\n this.navigationPage.next(navigationPage);\n }\n getnavigationPageValue(){\n return this.navigationPage;\n }\n\n setpaymentPageView(paymentpageList: IPaymentView): void {\n this.paymentPageView.next(Object.assign([], paymentpageList));\n }\n getpaymentPageView() {\n return this.paymentPageView;\n }\n\n setUserRolesList(rolesList:any[]): void {\n this.rolesList.next(Object.assign([], rolesList));\n }\n getUserRolesList() {\n return this.rolesList;\n }\n\n setorderDetail(orderDetail:any[]): void {\n this.orderDetail.next(Object.assign([], orderDetail));\n }\n getorderDetail() {\n return this.orderDetail;\n }\n\n setOrderRef(orderRef: string){\n this.orderRef.next(orderRef);\n }\n getorderRefs(){\n return this.orderRef;\n }\n\n setorderCCDEvent(orderCCDEvent: string){\n this.orderCCDEvent.next(orderCCDEvent);\n }\n getorderCCDEvents(){\n return this.orderCCDEvent;\n }\n\n setorderCreated(orderCreated: Date){\n this.orderCreated.next(orderCreated);\n }\n getorderCreateds(){\n return this.orderCreated;\n }\n\n setorderParty(orderParty: string){\n this.orderParty.next(orderParty);\n }\n getorderPartys(){\n return this.orderParty;\n }\n\n setorderRemissionTotal(orderRemissionTotal: number){\n this.orderRemissionTotal.next(orderRemissionTotal);\n }\n getorderRemissionTotals(){\n return this.orderRemissionTotal;\n }\n\n setorderFeesTotal(orderFeesTotal: number){\n this.orderFeesTotal.next(orderFeesTotal);\n }\n getorderFeesTotals(){\n return this.orderFeesTotal;\n }\n\n setorderTotalPayments(orderTotalPayments: number){\n this.orderTotalPayments.next(orderTotalPayments);\n }\n getoorderTotalPaymentss(){\n return this.orderTotalPayments;\n }\n}\n","import { ChangeDetectorRef, Component, Input, OnInit } from '@angular/core';\nimport { PaymentLibService } from './payment-lib.service';\nimport { IBSPayments } from './interfaces/IBSPayments';\nimport { OrderslistService } from './services/orderslist.service';\nimport { IPayment } from './interfaces/IPayment';\n\n@Component({\n selector: 'ccpay-payment-lib',\n 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\n [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\"\n [API_ROOT]=\"API_ROOT\"\n *ngIf=\"viewName === 'refundstatuslist'\"> </ccpay-refund-status >\n <ccpay-payment-view [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'payment-view'\"\n [isTurnOff]=\"ISTURNOFF\" [isTakePayment]=\"TAKEPAYMENT\" [caseType]=\"CASETYPE\"\n [ISPAYMENTSTATUSENABLED] = \"ISPAYMENTSTATUSENABLED\"\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\" [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 ></ccpay-fee-summary>\n <ccpay-reports *ngIf=\"viewName === 'reports'\"></ccpay-reports>\n `\n})\n\nexport class PaymentLibComponent implements OnInit {\n @Input('API_ROOT') API_ROOT: string;\n @Input('BULKSCAN_API_ROOT') BULKSCAN_API_ROOT: string;\n @Input('REFUNDS_API_ROOT') REFUNDS_API_ROOT: string;\n @Input('NOTIFICATION_API_ROOT') NOTIFICATION_API_ROOT: string;\n @Input('CARDPAYMENTRETURNURL') CARDPAYMENTRETURNURL: string;\n @Input('CCD_CASE_NUMBER') CCD_CASE_NUMBER: string;\n @Input('EXC_REFERENCE') EXC_REFERENCE: string;\n @Input('PAYMENT_METHOD') PAYMENT_METHOD: string;\n @Input('VIEW') VIEW: string;\n @Input('VIEWSERVICE') VIEWSERVICE: string;\n @Input('PAYMENT_GROUP_REF') PAYMENT_GROUP_REF?: string;\n @Input('TAKEPAYMENT') TAKEPAYMENT: boolean;\n @Input('SERVICEREQUEST') SERVICEREQUEST: string;\n @Input('DCN_NUMBER') DCN_NUMBER: string;\n @Input('SELECTED_OPTION') SELECTED_OPTION: string;\n @Input('ISBSENABLE') ISBSENABLE: Boolean;\n @Input('ISSFENABLE') ISSFENABLE: boolean;\n @Input('ISTURNOFF') ISTURNOFF: boolean;\n @Input('CASETYPE') CASETYPE: string;\n @Input('ISPAYMENTSTATUSENABLED') ISPAYMENTSTATUSENABLED: boolean;\n @Input('rootUrl') rootUrl: boolean;\n @Input('REFUNDLIST') REFUNDLIST: string;\n @Input('USERID') USERID: string;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: any[];\n @Input('LOGGEDINUSEREMAIL') LOGGEDINUSEREMAIL: string;\n @Input('isFromServiceRequestPage') isFromServiceRequestPage: boolean;\n\n paymentMethod: string;\n bspaymentdcn: string;\n unProcessedPaymentServiceId: string = null;\n paymentGroupReference: string;\n paymentReference: string;\n refundReference: string;\n isFromPayBubble: boolean = false;\n refundlistsource: any;\n viewName: string;\n isTurnOff: boolean;\n caseType: string;\n unProcessedPayment: IBSPayments = null;\n isRefundStatusView: boolean;\n isRedirectFromCaseTransactionPage: string;\n isCallFromRefundList: boolean;\n isFromRefundStatusPage: boolean;\n iscancelClicked : boolean;\n isFromPaymentDetailPage: boolean;\n pbaPayOrderRef: IPayment;\n isTakePayment: boolean;\n\n orderDetail: any[];\n orderRef: string;\n orderStatus: string;\n orderParty: string;\n orderCreated: Date;\n orderCCDEvent: string;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n orderFeesTotal: number = 0.00;\n orderRemissionTotal: number = 0.00;\n orderTotalPayments: number = 0.00;\n orderPendingPayments: number = 0.00;\n\n constructor(private paymentLibService: PaymentLibService,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) { }\n ngAfterContentChecked(): void {\n this.cd.detectChanges();\n }\n\n\n ngOnInit() {\n this.paymentLibService.setApiRootUrl(this.API_ROOT);\n this.paymentLibService.setBulkScanApiRootUrl(this.BULKSCAN_API_ROOT);\n this.paymentLibService.setRefundndsApiRootUrl(this.REFUNDS_API_ROOT);\n this.paymentLibService.setNoticationApiRootUrl(this.NOTIFICATION_API_ROOT);\n this.paymentLibService.setCardPaymentReturnUrl(this.CARDPAYMENTRETURNURL);\n\n if(this.LOGGEDINUSERROLES.length > 0) {\n this.OrderslistService.setUserRolesList(this.LOGGEDINUSERROLES);\n }\n if (this.PAYMENT_GROUP_REF) {\n this.paymentGroupReference = this.PAYMENT_GROUP_REF;\n }\n if (this.DCN_NUMBER) {\n this.bspaymentdcn = this.DCN_NUMBER;\n }\n if (this.REFUNDLIST === \"true\") {\n this.VIEW = 'refund-list';\n this.viewName = this.VIEW;\n }\n if (this.VIEW === 'fee-summary') {\n this.viewName = 'fee-summary';\n } else if (this.VIEW !== 'reports' && this.VIEW !== 'refund-list') {\n this.viewName = 'case-transactions';\n } else {\n this.viewName = this.VIEW;\n }\n\n if (this.isTakePayment) {\n this.TAKEPAYMENT = true;\n }\n }\n}\n","import { Injectable } from '@angular/core';\nimport { _throw } from 'rxjs/observable/throw';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { HttpErrorResponse } from '@angular/common/http';\nimport { stringify } from '@angular/core/src/util';\n\n@Injectable({\n providedIn: 'root'\n})\n\n\nexport class ErrorHandlerService {\n\n constructor() { }\n\n\n handleError(err: HttpErrorResponse): Observable<any> {\n let errorMessage: string;\n if (err.error instanceof Error) {\n // A client-side or network error occurred.\n errorMessage = `An error occurred: ${err.error.message}`;\n } else {\n // The backend returned an unsuccessful response code.\n if (err.status === 404) {\n\n if (typeof err.error === 'string' && err.error !== undefined) {\n \n if(err.error.length > 60) {\n if (JSON.parse(err.error).statusCode !== undefined && JSON.parse(err.error).statusCode === 500)\n {\n errorMessage = 'Internal server error';\n } else {\n if(err.error.length > 60) {\n errorMessage = JSON.parse(err.error).error;\n } else {\n errorMessage = err.error;\n }\n \n }\n } else {\n errorMessage = err.error;\n }\n } else {\n errorMessage = JSON.parse(err.error).error;\n }\n \n }\n else if (err.status === 500) {\n errorMessage = 'Internal server error';\n } else if (err.error.messsage === undefined) {\n if( typeof err.error === 'object') {\n errorMessage = JSON.parse(JSON.stringify(err.error)).error;\n } else {\n if (typeof err.error === 'string' && err.error !== undefined) {\n \n if(err.error.length > 60) {\n if (JSON.parse(err.error).statusCode !== undefined && JSON.parse(err.error).statusCode === 500)\n {\n errorMessage = 'Internal server error';\n } else {\n if(err.error.length > 60) {\n errorMessage = JSON.parse(err.error).error;\n } else {\n errorMessage = err.error;\n }\n \n }\n } else {\n errorMessage = err.error;\n }\n } else {\n errorMessage = JSON.parse(err.error).error;\n }\n \n }\n \n } else {\n if (err.error.message !== undefined) {\n errorMessage = `${err.error.message}`;\n } else {\n errorMessage = `${err.error}`;\n }\n \n }\n }\n return _throw(errorMessage);\n }\n\n\n getServerErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","import { Injectable } from '@angular/core';\n\nconst noop = (): any => undefined;\n\nexport abstract class Logger {\n\n info: any;\n warn: any;\n error: any;\n}\n\n@Injectable({\n providedIn: 'root'\n})\nexport class LoggerService implements Logger {\n\n info: any;\n warn: any;\n error: any;\n\n invokeConsoleMethod(type: string, args?: any): void {}\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\n\nimport { Observable } from 'rxjs/internal/Observable';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { IPayments } from '../../interfaces/IPayments';\nimport { catchError } from 'rxjs/operators';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PaymentListService {\n payments: IPayments;\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n\n getPaymentByCcdCaseNumber(ccdCaseNumber: string, paymentMethod: string): Observable<IPayments> {\n this.logger.info('Payment-list-service getPaymentByCcdCaseNumber for: ', ccdCaseNumber);\n\n return this.http.get<IPayments>(`${this.paymentLibService.API_ROOT}/cases/${ccdCaseNumber}/payments`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import {Component, OnInit} from '@angular/core';\n\nimport {PaymentListService} from '../../services/payment-list/payment-list.service';\nimport {IPayments} from '../../interfaces/IPayments';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport {IStatusHistory} from '../../interfaces/IStatusHistory';\n\n@Component({\n selector: 'ccpay-payment-list',\n templateUrl: './payment-list.component.html',\n styleUrls: ['./payment-list.component.css']\n})\nexport class PaymentListComponent implements OnInit {\n payments: IPayments;\n errorMessage: string;\n code: string;\n\n constructor(private paymentListService: PaymentListService,\n private paymentLibComponent: PaymentLibComponent) {\n }\n\n ngOnInit() {\n this.paymentListService.getPaymentByCcdCaseNumber(this.paymentLibComponent.CCD_CASE_NUMBER, this.paymentLibComponent.PAYMENT_METHOD)\n .subscribe(\n payments => this.payments = payments,\n (error: any) => this.errorMessage = <any>error\n );\n }\n\n loadPaymentViewComponent(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.paymentLibComponent.paymentMethod = paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n}\n","/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Meta } from '@angular/platform-browser';\nimport { Observable } from 'rxjs';\n\n@Injectable()\nexport class WebComponentHttpClient {\n constructor(\n private http: HttpClient,\n private meta: Meta\n ) { }\n\n post(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.post(url, body, opts);\n }\n\n put(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.put(url, body, opts);\n }\n\n get(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.get(url, opts);\n }\n\n delete(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.delete(url, opts);\n }\n \n patch(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.patch(url, body, opts);\n }\n\n addHeaders(options: any): any {\n const csrfToken = this.meta.getTag('name=csrf-token');\n const headers = {};\n \n if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n if (csrfToken === null) {\n if( document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')) !== undefined ) {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')).split('=')[1]; \n } else {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith(' XSRF-TOKEN')).split('=')[1];\n }\n \n } else {\n headers['CSRF-Token'] = csrfToken.content;\n }\n options.headers = new HttpHeaders(headers);\n options.responseType = 'text';\n return options;\n }\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { v4 as uuidv4 } from 'uuid';\nimport {IPayment} from '../../interfaces/IPayment';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { catchError } from 'rxjs/operators';\nimport { LoggerService } from '../shared/logger/logger.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { PayhubAntennaRequest } from '../../interfaces/PayhubAntennaRequest';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { Meta } from '@angular/platform-browser';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { IAllocationPaymentsRequest } from '../../interfaces/IAllocationPaymentsRequest';\nimport {IOrderReferenceFee} from '../../interfaces/IOrderReferenceFee';\nimport { BehaviorSubject } from 'rxjs';\nimport { IserviceRequestPbaPayment } from '../../interfaces/IserviceRequestPbaPayment';\nimport { IserviceRequestCardPayment } from '../../interfaces/IserviceRequestCardPayment';\nimport { RefundsRequest } from '../../interfaces/RefundsRequest';\nimport { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\nimport { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';\nimport { error } from '@angular/compiler/src/util';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PaymentViewService {\n private ordersList = <BehaviorSubject<IOrderReferenceFee[]>>new BehaviorSubject([]);\n\n private meta: Meta;\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getPaymentDetails(paymentReference: string, paymentMethod: string): Observable<IPayment> {\n this.logger.info('Payment-view-service getPaymentDetails for: ', paymentReference);\n\n return this.http.get<IPayment>(paymentMethod === 'card' || paymentMethod === 'cash' || paymentMethod === 'cheque' || paymentMethod === 'postal order' ?\n `${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}` :\n `${this.paymentLibService.API_ROOT}/credit-account-payments/${paymentReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getPaymentGroupDetails(paymentGroupReference: string): Observable<IPaymentGroup> {\n this.logger.info('Payment-view-service getPaymentGroupDetails for: ', paymentGroupReference);\n\n return this.http.get<IPayment>(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getApportionPaymentDetails(paymentReference: string): Observable<IPaymentGroup> {\n this.logger.info('Payment-view-service getPaymentGroupDetails for: ', paymentReference);\n\n return this.http.get<IPayment>(`${this.paymentLibService.API_ROOT}/payment-groups/fee-pay-apportion/${paymentReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getPBAaccountDetails(): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/pba-accounts`;\n return this.http.get(url, { withCredentials: true }).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postWays2PayCardPayment(serviceRef: string, body: IserviceRequestCardPayment): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/service-request/${serviceRef}/card-payments`;\n const rurl = this.paymentLibService.CARDPAYMENTRETURNURL.replace('.prod', '');\n body['return-url'] = `${rurl}/payment`;\n return this.https.post(url, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n \n postPBAaccountPayment(serviceRef: string, body: IserviceRequestPbaPayment): Observable<any> {\n let randomKey = 'idam-key-' + Math.random().toString().split('.').join('-');\n body['idempotency_key'] = randomKey; \n const url = `${this.paymentLibService.API_ROOT}/service-request/${serviceRef}/pba-payments`;\n return this.https.post(url, body);\n }\n\n postBSPayments(body: AllocatePaymentRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/bulk-scan-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSUnidentifiedPayments(body: UnidentifiedPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSUnsolicitedPayments(body: UnsolicitedPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSAllocationPayments(body: IAllocationPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postPaymentGroupWithRemissions(paymentGroupReference: string, feeId: number, body: AddRemissionRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}/fees/${feeId}/remissions`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n deleteFeeFromPaymentGroup(feeId: number): Observable<any> {\n this.logger.info('Payment-view-service deleteFeeFromPaymentGroup for: ', feeId);\n return this.https.delete(`${this.paymentLibService.API_ROOT}/fees/${feeId}`).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postPaymentToPayHub(body: PaymentToPayhubRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/card-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postPaymentAntennaToPayHub(body: PayhubAntennaRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/telephony-card-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n downloadSelectedReport(reportName: string, startDate: string, endDate:string): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/report/data?date_from=${startDate}&date_to=${endDate}&report_type=${reportName}`;\n return this.https.get(url, { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n downloadFailureReport(startDate: string, endDate:string): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/payment-failures/failure-report?date_from=${startDate}&date_to=${endDate}`;\n return this.https.get(url, { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getBSfeature(): Observable<any> {\n return this.https.get('api/payment-history/bulk-scan-feature', { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getSiteID(): Observable<any> {\n return this.https.get('api/payment-history/refdata/legacy-sites', { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getPartyDetails(caseNumber: string): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/case-payment-orders?case_ids=${caseNumber}`;\n return this.https.get(url, { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n \n setOrdersList(orderLevelFees: IOrderReferenceFee[]): void {\n this.ordersList.next(Object.assign([], orderLevelFees));\n}\n getOrdersList() {\n return this.ordersList;\n }\n\n //issue refund\n postRefundsReason(body: PostRefundRetroRemission): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/refund-for-payment`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n // retro remissions\n postPaymentGroupWithRetroRemissions(paymentGroupReference: string, feeId: number, body: AddRetroRemissionRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}/fees/${feeId}/retro-remission`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postRefundRetroRemission(body:PostIssueRefundRetroRemission) {\n return this.https.post(`${this.paymentLibService.API_ROOT}/refund-retro-remission`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getPaymentFailure(paymentReference: string): Observable<any> {\n return this.https.get(`${this.paymentLibService.API_ROOT}/payment-failures/${paymentReference}`, {\n withCredentials: true\n }).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { IFee } from \"./IFee\";\nimport { IRefundContactDetails } from \"./IRefundContactDetails\";\n\nexport class PostRefundRetroRemission {\n ccd_case_number: string;\n payment_reference: string;\n refund_reason: string;\n total_refund_amount: any;\n fees: any[];\n is_over_payment: boolean;\n contact_details: IRefundContactDetails\n \n constructor(contact_details:any,fees: any[], payment_reference : string,refund_reason:string, total_refund_amount : any, is_over_payment: string ) {\n this.contact_details = contact_details;\n this.fees = fees;\n this.payment_reference= payment_reference;\n this.refund_reason = refund_reason;\n\t this.total_refund_amount = total_refund_amount;\n this.is_over_payment = is_over_payment === 'op';\n } \n}","import { Component, OnInit, Input } from '@angular/core';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\nimport { ChangeDetectorRef } from '@angular/core';\nimport { IPaymentFailure } from '../../interfaces/IPaymentFailure';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';\n\n@Component({\n selector: 'ccpay-payment-view',\n templateUrl: './payment-view.component.html',\n styleUrls: ['./payment-view.component.scss']\n})\n\nexport class PaymentViewComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() isTakePayment: boolean;\n @Input() caseType: boolean;\n @Input() orderRef: string;\n @Input() orderStatus: string;\n @Input() orderTotalPayments: number;\n @Input() payment: IPayment;\n @Input() LOGGEDINUSERROLES: string[];\n @Input() ISPAYMENTSTATUSENABLED: string;\n @Input() orderParty: string;\n @Input() orderCreated: Date;\n @Input() orderCCDEvent: string;\n @Input() orderFeesTotal: number;\n @Input() orderRemissionTotal: number;\n @Input() orderDetail: any[];\n fees: any;\n isFullyRefund: boolean;\n @Input(\"isServiceRequest\") isServiceRequest: string;\n errorMsg: string;\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n ccdCaseNumber: string;\n selectedOption: string;\n dcnNumber: string;\n isStatusAllocated: boolean;\n isRemissionsMatch: boolean;\n feeId: IFee;\n viewStatus: string;\n isRefundRemission: boolean = false;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n remissions: IRemission[] = [];\n allPaymentsFailure: IPaymentFailure[] = [];\n selectedPaymentsStatus: IPaymentFailure;\n remissionFeeAmt: number;\n isRefundRemissionBtnEnable: boolean;\n serviceReference: string;\n isFromServiceRequestPage: boolean;\n isFromPaymentDetailPage: boolean;\n paymentFees: IFee[];\n paymentType: string;\n isContinueBtnDisabled: boolean = true;\n viewCompStatus: string;\n contactDetailsObj: IRefundContactDetails\n notification: any;\n isConfirmationBtnDisabled: boolean;\n refundReference: string;\n refundAmount: string;\n constructor(private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) {\n }\n\n ngAfterContentChecked(): void {\n this.cd.detectChanges();\n }\n\n ngOnInit() {\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION;\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.serviceReference = this.paymentLibComponent.paymentGroupReference;\n this.viewStatus = 'paymentview';\n this.paymentViewService.getApportionPaymentDetails(this.paymentLibComponent.paymentReference).subscribe(\n paymentGroup => {\n let fees = [];\n paymentGroup.fees.forEach(fee => {\n this.isRemissionsMatch = false;\n\n paymentGroup.remissions.forEach(rem => {\n if (rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n if (!this.isRemissionsMatch) {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees\n this.paymentFees =fees;\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n\n },\n (error: any) => this.errorMessage = error\n );\n this.paymentViewService.getPaymentFailure(this.paymentLibComponent.paymentReference).subscribe({\n next: (res) => {\n JSON.parse(res).payment_failure_list.reverse().forEach(payments => {\n\n this.allPaymentsFailure.push(payments.payment_failure_initiated);\n if(payments.payment_failure_closed) {\n this.allPaymentsFailure.push(payments.payment_failure_closed);\n }\n });\n this.allPaymentsFailure = this.allPaymentsFailure.reverse();\n },\n error: (e) => {\n this.allPaymentsFailure = [];\n this.errorMsg = \"Server error\"\n }\n })\n }\n\n get isCardPayment(): boolean {\n return this.paymentGroup.payments[0].method === 'card';\n }\n\n get isTelephonyPayment(): boolean {\n return this.paymentGroup.payments[0].channel === 'telephony';\n }\n\n public goToPaymentList(): void {\n this.paymentLibComponent.viewName = 'payment-list';\n }\n getOverPaymentValue() {\n let feesOverPayment = 0;\n this.paymentGroup.fees.forEach(fee => {\n feesOverPayment += fee.over_payment;\n });\n return feesOverPayment > 0 ? feesOverPayment : this.paymentGroup.payments[0].over_payment;\n\n }\n goToServiceRequestPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = false;\n this.paymentLibComponent.SERVICEREQUEST = 'true';\n this.paymentLibComponent.isFromServiceRequestPage = true;\n window.location.reload();\n }\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n if (!this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.resetOrderData();\n } else {\n this.OrderslistService.getorderRefs().subscribe((data) => this.orderRef = data);\n this.OrderslistService.getorderCCDEvents().subscribe((data) => this.orderCCDEvent = data);\n this.OrderslistService.getorderCreateds().subscribe((data) => this.orderCreated = data);\n this.OrderslistService.getorderDetail().subscribe((data) => this.orderDetail = data);\n this.OrderslistService.getorderPartys().subscribe((data) => this.orderParty = data);\n this.OrderslistService.getorderRemissionTotals().subscribe((data) => this.orderRemissionTotal = data);\n this.OrderslistService.getorderFeesTotals().subscribe((data) => this.orderFeesTotal = data);\n this.OrderslistService.getoorderTotalPaymentss().subscribe((data) => this.orderTotalPayments = data);\n this.viewStatus = 'order-full-view';\n }\n\n }\n\n addRemission(fee: IFee) {\n if(this.chkIsAddRemissionBtnEnable(fee)) {\n this.feeId = fee;\n this.paymentViewService.getApportionPaymentDetails(this.paymentGroup.payments[0].reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n this.paymentLibComponent.isFromPaymentDetailPage = true;\n this.viewStatus = 'addremission';\n this.isRefundRemission = true;\n this.cd.detectChanges();\n },\n (error: any) => this.errorMessage = error\n );\n }\n }\n\n checkForFees(paymentGroup: any) {\n if(paymentGroup !== null && paymentGroup !== undefined)\n {\n if (paymentGroup.fees !== null && paymentGroup.fees !== undefined) {\n return true;\n }\n\n }\n return false;\n }\n processRefund() {\n this.isConfirmationBtnDisabled = true;\n this.errorMessage = '';\n const obj = this.paymentGroup.fees[0];\n this.fees = [{ id: obj.id, \n code: obj.code,\n version:obj.version, \n apportion_amount: obj.apportion_amount,\n calculated_amount: obj.calculated_amount,\n updated_volume: obj.updated_volume ? obj.updated_volume : obj.volume,\n volume: obj.volume,\n refund_amount: this.getOverPaymentValue() }];\n const requestBody = new PostRefundRetroRemission(this.contactDetailsObj,this.fees, this.paymentGroup.payments[0].reference, 'RR037', \n this.getOverPaymentValue(), 'op');\n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n })\n }\n gotoAddressPage(note?: IRefundContactDetails) {\n if (note) {\n this.notification = { contact_details: note, notification_type: note.notification_type };\n }\n this.errorMessage = '';\n this.viewCompStatus = 'overPaymentAddressCapture';\n }\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n //if(!this.chkIsIssueRefundBtnEnable(payment)) {\n this.paymentViewService.getApportionPaymentDetails(payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(payment.reference));\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n this.viewStatus = 'addrefundforremission';\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n //}\n }\n\n goToPaymentViewComponent() {\n this.viewCompStatus = '';\n this.viewStatus = 'paymentview';\n }\n issueRefund(paymentgrp: IPaymentGroup) {\n if (paymentgrp !== null && paymentgrp !== undefined) {\n if(this.chkIsIssueRefundBtnEnable(paymentgrp.payments[0])) {\n if(paymentgrp.payments[0].over_payment > 0) {\n this.viewCompStatus = 'overpayment';\n } else {\n this.paymentGroup = paymentgrp;\n this.viewStatus = 'issuerefund';\n this.isRefundRemission = true;\n this.paymentLibComponent.isFromPaymentDetailPage = true;\n this.isFromPaymentDetailPage = true;\n this.isFromServiceRequestPage = false;\n }\n }\n }\n }\n getRemissionByFeeCode(feeCode: string, remissions: IRemission[]): IRemission {\n if (remissions && remissions.length > 0) {\n for (const remission of remissions) {\n if (remission.fee_code === feeCode) {\n return remission;\n }\n }\n }\n return null;\n }\n\n chkIsIssueRefundBtnEnable(payment: IPayment): boolean {\n if (payment !== null && payment !== undefined) {\n return payment.issue_refund && payment.refund_enable\n } else {\n return false;\n }\n }\n\n chkIsAddRefundBtnEnable(remission: IRemission): boolean {\n if (remission !== null && remission !== undefined) {\n return remission.add_refund;\n } else {\n return false;\n }\n }\n\n chkIsAddRemissionBtnEnable(fee: IFee): boolean {\n if (fee !== null && fee !== undefined) {\n return fee.add_remission && fee.remission_enable;\n } else {\n return false\n }\n}\n selectPymentOption(paymentType: string) {\n this.paymentType = paymentType;\n this.isContinueBtnDisabled = false;\n }\n continuePayment(paymentgrp: IPaymentGroup) {\n \n if (this.paymentType === 'op') {\n this.isFullyRefund = false\n this.viewCompStatus = 'overPaymentAddressCapture';\n } else if(this.paymentType === 'fp') {\n this.isFullyRefund = true\n this.paymentGroup = paymentgrp;\n this.viewStatus = 'issuerefund';\n this.viewCompStatus = \"\";\n this.isRefundRemission = true;\n this.paymentLibComponent.isFromPaymentDetailPage = true;\n this.isFromPaymentDetailPage = true;\n this.isFromServiceRequestPage = this.paymentLibComponent.isFromServiceRequestPage;\n }\n }\n gotoPaymentSelectPage(event: Event) {\n event.preventDefault();\n this.viewCompStatus = 'overpayment';\n }\n getContactDetails(obj:IRefundContactDetails) {\n this.contactDetailsObj = obj;\n this.viewCompStatus = 'overpaymentcheckandanswer';\n }\n\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n\n goToPaymentFailuePage(payment: any) {\n this.viewStatus = 'payment-failure';\n this.selectedPaymentsStatus = payment;\n }\n goBackToPaymentView(event: any) {\n event.preventDefault();\n this.viewStatus = 'paymentview';\n }\n}\n","import { Injectable } from '@angular/core';\nimport {HttpClient, HttpHeaders} from '@angular/common/http';\nimport { Meta } from '@angular/platform-browser';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {catchError} from 'rxjs/operators';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { IPatchRefundAction } from '../../interfaces/IPatchRefundAction';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { IssueRefundRequest } from '../../interfaces/IssueRefundRequest';\nimport { IResubmitRefundRequest } from '../../interfaces/IResubmitRefundRequest';\nimport { IRefundStatusHistory } from '../../interfaces/IRefundStatusHistory';\nimport { IPutNotificationRequest } from '../../interfaces/IPutNotificationRequest';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class RefundsService {\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService,\n private meta: Meta\n ) { }\n\n getRefundReasons(): Observable<IRefundReasons[]> {\n return this.http.get<IRefundReasons[]>(`${this.paymentLibService.REFUNDS_API_ROOT}/reasons`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getRefundRejectReasons(): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/rejection-reasons`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getRefundActions(refundReference: string): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/${refundReference}/actions`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\npatchRefundActions(body:IPatchRefundAction, refundReference: string, reviewerAction: string): Observable<any> {\n // const opts = this.addHeaders({});\n return this.https.patch(`${this.paymentLibService.REFUNDS_API_ROOT}/${refundReference}/action/${reviewerAction}`, body)\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundList(refundstatus?: string, selfexclusive?:boolean): Observable<IRefundList[]> {\n return this.http.get<IRefundList[]>(`${this.paymentLibService.REFUNDS_API_ROOT}?status=${refundstatus}&excludeCurrentUser=${selfexclusive}`, \n {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundStatusHistory(reference?: string) {\n return this.http.get<IRefundStatusHistory>(`${this.paymentLibService.REFUNDS_API_ROOT}/${reference}/status-history`, \n {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundStatusList(ccdCaseNumber:string): Observable<IRefundList[]> {\n return this.http.get<IRefundList[]>(`${this.paymentLibService.REFUNDS_API_ROOT}?ccdCaseNumber=${ccdCaseNumber}`, {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetUserDetails(): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/get-user-details`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n \npostIssueRefund(body: IssueRefundRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.REFUNDS_API_ROOT}/refund`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\nputResendOrEdit(body: IPutNotificationRequest, refundRef:string, notificationType:string): Observable<any> {\n return this.https.put(`${this.paymentLibService.REFUNDS_API_ROOT}/resend/notification/${refundRef}?notificationType=${notificationType}`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\npatchResubmitRefund(body: IResubmitRefundRequest, refund_reference: string): Observable<any> {\n // const opts = this.addHeaders({});\n return this.https.patch(`${this.paymentLibService.REFUNDS_API_ROOT}/resubmit/${refund_reference}`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\naddHeaders(options: any): any {\n const csrfToken = this.meta.getTag('name=csrf-token');\n const headers = {};\n if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n if (csrfToken.content === null) {\n if( document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')) !== undefined ) {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')).split('=')[1]; \n } else {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith(' XSRF-TOKEN')).split('=')[1];\n }\n } else {\n headers['CSRF-Token'] = csrfToken.content;\n }\n options.headers = new HttpHeaders(headers);\n options.responseType = 'text';\n return options;\n}\n}\n","import {Component, OnInit, Input} from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport {RefundsService} from '../../services/refunds/refunds.service';\nimport { IRefundAction } from '../../interfaces/IRefundAction';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { IRefundRejectReason } from '../../interfaces/IRefundRejectReason';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { ActivatedRoute,Router } from '@angular/router';\n\n@Component({\n selector: 'ccpay-process-refund',\n templateUrl: './process-refund.component.html',\n styleUrls: ['./process-refund.component.css']\n})\nexport class ProcessRefundComponent implements OnInit {\n @Input() refundReference: string;\n @Input() refundlistsource: IRefundList;\n\n processRefundForm: FormGroup;\n\n errorMessage = this.getErrorMessage(false, '', '', '');\n sendmeback: string = null;\n viewStatus: string;\n refundActionList: IRefundAction[] = []; \n refundRejectReasonList: IRefundRejectReason[] = []; \n isSendMeBackClicked: boolean = false;\n isRejectClicked: boolean = false;\n isOtherClicked: boolean = false;\n isSuccesspageEnable: boolean = false;\n\n refundActionsHasError: boolean = false;\n refundRejectReasonHasError: boolean = false;\n isReasonFieldEmpty: boolean = false;\n isReasonFieldInvalid: boolean = false;\n reasonFieldMinHasError: boolean = false;\n reasonFieldMaxHasError: boolean = false;\n isReasonEmpty: boolean = false;\n isReasonInvalid: boolean = false;\n successMsg: string = null;\n navigationpage: string;\n ccdCaseNumber: string;\n isFromRefundListPage: boolean;\n cpoDetails:any = null;\n isCPODown: boolean;\n isConfirmButtondisabled: boolean = true;\n constructor(private RefundsService: RefundsService,\n private paymentViewService: PaymentViewService,\n private formBuilder: FormBuilder,\n private OrderslistService: OrderslistService,\n private paymentLibComponent: PaymentLibComponent,\n private router: Router,\n private activeRoute: ActivatedRoute) {\n }\n\n ngOnInit() {\n this.viewStatus = 'RefundProcess';\n this.RefundsService.getRefundActions(this.refundReference).subscribe(\n refundActionList => {\n this.refundActionList = <any>refundActionList;\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err, err);\n }\n );\n this.processRefundForm = this.formBuilder.group({\n refundActionField: new FormControl('', Validators.compose([\n Validators.required\n ])),\n refundRejectReasonField: new FormControl('', Validators.compose([\n Validators.required\n ])),\n sendMeBackField: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$'),\n\n ])),\n enterReasonField: new FormControl('', Validators.compose([\n Validators.required,\n Validators.maxLength(30),\n Validators.pattern('^([a-zA-Z0-9.\\\\s]*)$'),\n ])),\n });\n this.ccdCaseNumber = this.refundlistsource.ccd_case_number;\n\n if((typeof this.paymentLibComponent.TAKEPAYMENT === 'string' && this.paymentLibComponent.TAKEPAYMENT === 'false') || (typeof this.paymentLibComponent.TAKEPAYMENT === 'boolean' && !this.paymentLibComponent.TAKEPAYMENT) ) {\n this.isFromRefundListPage = true;\n }\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).content[0];\n\n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.isCPODown = true;\n }\n );\n }\n \n checkRefundActions(code: string) {\n this.refundActionsHasError = false;\n this.isReasonFieldEmpty = false;\n this.isReasonEmpty = false;\n this.isReasonInvalid = false;\n this.refundRejectReasonHasError = false;\n if(code === 'Return to caseworker') {\n this.isConfirmButtondisabled = true;\n this.isSendMeBackClicked = true;\n this.isRejectClicked = false;\n this.isOtherClicked = false;\n\n } else if (code === 'Approve') {\n this.isSendMeBackClicked = false;\n this.isConfirmButtondisabled = false;\n this.isRejectClicked = false;\n this.isOtherClicked = false;\n\n } else if (code === 'Reject') {\n this.isRejectClicked = true;\n this.isSendMeBackClicked = false;\n this.isOtherClicked = false;\n this.RefundsService.getRefundRejectReasons().subscribe(\n refundRejectReasonList => {\n this.refundRejectReasonList = <any>refundRejectReasonList;\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err, err);\n }\n );\n } else if (code === 'RE005') {\n this.isOtherClicked = true;\n } else if (code !== 'RE005') {\n this.isOtherClicked = false;\n }\n }\n processRefundSubmit() {\n let processRefundRequest;\n let status;\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n const controls = this.processRefundForm.controls;\n const processFormError = controls.sendMeBackField.errors;\n\n if (this.processRefundForm.dirty && controls.refundActionField.valid \n && (controls.refundActionField.value == 'Approve'\n || (controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.valid && controls.refundRejectReasonField.value != 'RE005')\n || (controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.value == 'RE005' && controls.enterReasonField.valid)\n || (controls.refundActionField.value == 'Return to caseworker' && controls.sendMeBackField.valid))) {\n if (controls.refundActionField.value === 'Approve'){\n status = 'APPROVE';\n processRefundRequest = {\n code:'',\n reason: ''\n };\n } else if (controls.refundActionField.value === 'Reject') {\n status = 'REJECT';\n\n processRefundRequest = {\n code: controls.refundRejectReasonField.value ? controls.refundRejectReasonField.value : '',\n reason: controls.refundRejectReasonField.value == 'RE005' ? controls.enterReasonField.value : ''\n };\n } else if (controls.refundActionField.value === 'Return to caseworker') {\n status = 'SENDBACK';\n\n processRefundRequest = {\n code: '',\n reason: controls.sendMeBackField.value\n };\n }\n this.RefundsService.patchRefundActions(processRefundRequest, this.refundReference, status).subscribe(\n response => {\n this.isSuccesspageEnable = true;\n // this.successMsg = JSON.parse(response)['data'];\n this.successMsg = response.replace(/['\"]+/g, '');\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err, err);\n }\n );\n } else {\n if(controls.refundActionField.value == \"\") {\n this.resetForm([true, false, false, false, false, false, false, false], 'action');\n }\n if(controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.value == \"\") {\n this.resetForm([false, true, false, false, false, false, false, false], 'rejectReason');\n }\n if(controls.refundActionField.value == 'Return to caseworker') {\n if(controls.sendMeBackField.value == '' ) {\n this.resetForm([false, false, true, false, false, false, false, false], 'addAreason');\n }\n if(controls.sendMeBackField.value != '' && controls.sendMeBackField.invalid ) {\n this.resetForm([false, false, false, true, false, false, false, false], 'addAreason');\n }\n if(processFormError && processFormError.minlength && processFormError.minlength.actualLength < 3 ) {\n this.resetForm([false, false, false, false, true, false, false, false], 'addAreason');\n }\n if(processFormError && processFormError.maxlength && processFormError.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, false, false, true, false, false], 'addAreason');\n }\n }\n if(controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.value == 'RE005') {\n if(controls.enterReasonField.value === \"\") {\n this.resetForm([false, false, false, false, false, false, true, false], 'enterReason');\n }\n if(controls.enterReasonField.value!== \"\" && controls.enterReasonField.invalid) {\n this.resetForm([false, false, false, false, false, false, false, true], 'enterReason');\n }\n }\n }\n\n }\n getErrorMessage(isErrorExist, status, errorMsg, err) {\n let bodyTxt = 'Please try again later';\n if (status !== 500) {\n if (errorMsg !== undefined) {\n bodyTxt = errorMsg;\n } else {\n bodyTxt = err;\n }\n \n }\n return {\n title: 'Something went wrong',\n body: bodyTxt,\n showError: isErrorExist\n };\n }\n loadRefundListPage() {\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n if (this.navigationpage === 'casetransactions') {\n // window.location.href='/refund-list?takePayment=false&refundlist=true';\n // // this.OrderslistService.setnavigationPage('casetransactions');\n // // this.OrderslistService.setisFromServiceRequestPage(false);\n // // this.paymentLibComponent.VIEW ='case-transactions';\n // // this.paymentLibComponent.viewName = 'case-transactions';\n // // this.paymentLibComponent.ISBSENABLE = true;\n // // this.paymentLibComponent.isRefundStatusView = false;\n this.paymentLibComponent.viewName = 'refundstatuslist';\n this.paymentLibComponent.isRefundStatusView = true;\n } else {\n this.paymentLibComponent.viewName = 'refundstatuslist';\n this.paymentLibComponent.isRefundStatusView = true;\n }\n }\n loadRefundsHomePage() {\n if(typeof this.paymentLibComponent.TAKEPAYMENT === 'string' && this.paymentLibComponent.TAKEPAYMENT === 'false') {\n //window.location.href='/refund-list?takePayment=false&refundlist=true';\n this.paymentLibComponent.viewName = 'refund-list';\n }\n else {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.VIEW ='case-transactions';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n }\n }\n redirecttoRefundListPage() {\n if((typeof this.paymentLibComponent.TAKEPAYMENT === 'string' && this.paymentLibComponent.TAKEPAYMENT === 'false') || (typeof this.paymentLibComponent.TAKEPAYMENT === 'boolean' && !this.paymentLibComponent.TAKEPAYMENT) ) {\n // window.location.href='/refund-list?takePayment=false&refundlist=true';\n this.paymentLibComponent.viewName = 'refund-list';\n }\n else {\n this.loadRefundListPage();\n }\n }\n loadCaseTransactionPage() {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n }\n\n resetForm(vals, field) {\n if(field==='action' || field==='all') {\n this.refundActionsHasError = vals[0];\n }\n if(field==='rejectReason' || field==='all') {\n this.refundRejectReasonHasError = vals[1];\n }\n if(field==='addAreason' || field==='all') {\n this.isReasonFieldEmpty = vals[2];\n this.isReasonFieldInvalid = vals[3];\n this.reasonFieldMinHasError = vals[4];\n this.reasonFieldMaxHasError = vals[5];\n }\n if(field==='enterReason' || field==='all') {\n this.isReasonEmpty = vals[6];\n this.isReasonInvalid = vals[7];\n }\n }\n\n goToCaseReview() {\n const isPayBubble = this.paymentLibComponent.isFromPayBubble;\n if(isPayBubble) {\n this.loadCaseTransactionPage();\n } else {\n this.router.navigate([`/cases/case-details/${this.ccdCaseNumber}`], {relativeTo: this.activeRoute});\n }\n }\n}\n","import {Component, OnInit, Input} from '@angular/core';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { IRefundList } from '../../interfaces/IRefundList';\n\n@Component({\n selector: 'ccpay-refund-list',\n templateUrl: './refund-list.component.html',\n styleUrls: ['./refund-list.component.css']\n})\nexport class RefundListComponent implements OnInit {\n @Input('USERID') USERID: string;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: any[];\n @Input('LOGGEDINUSEREMAIL') LOGGEDINUSEREMAIL:string;\n\n constructor(private refundService: RefundsService) {\n }\n\n tableApprovalHeader: string;\n tableRejectedHeader: string;\n submittedRefundList: IRefundList[] = [];\n rejectedRefundList: IRefundList[] = [];\n // approvalStatus = 'Sent for approval';\n // rejectStatus = 'Update required';\n approvalStatus = 'Sent for approval';\n rejectStatus = 'Update required';\n errorMessage = null;\n isApproveTableVisible:boolean;\n isRejectTableVisible:boolean;\n dropdownvalue: string;\n isAuthorized: boolean = true;\n userLst\n ngOnInit() {\n \n this.userLst = this.LOGGEDINUSERROLES;\n\n \n if(this.LOGGEDINUSERROLES.some(i =>i.includes('payments-refund-approver'))){\n this.isAuthorized = true;\n } else {\n this.isApproveTableVisible = false;\n this.isAuthorized = false;\n }\n\n \n this.tableApprovalHeader = 'Refunds to be approved';\n this.tableRejectedHeader = 'Refunds returned to caseworker';\n\n if(this.isAuthorized) {\n this.refundService.getRefundList(this.approvalStatus,true).subscribe(\n refundList => {\n this.submittedRefundList = refundList['refund_list'];\n this.isApproveTableVisible = true;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n }\n\n this.refundService.getRefundList(this.rejectStatus,false).subscribe(\n refundList => {\n this.rejectedRefundList = refundList['refund_list'];\n this.isRejectTableVisible = true;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n\n }\n \n}","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {Observable} from 'rxjs/internal/Observable';\n\nimport {ICardDetails} from '../../interfaces/ICardDetails';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { catchError } from 'rxjs/operators';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class CardDetailsService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getCardDetails(paymentReference: string): Observable<ICardDetails> {\n this.logger.info('Card-detail-service getCardDetails for: ', paymentReference);\n\n return this.http.get<ICardDetails>(`${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}/details`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit } from '@angular/core';\nimport { CardDetailsService } from '../../services/card-details/card-details.service';\nimport {ICardDetails} from '../../interfaces/ICardDetails';\nimport { PaymentLibComponent } from '../../payment-lib.component';\n\n@Component({\n selector: 'ccpay-card-details',\n templateUrl: './card-details.component.html',\n styleUrls: ['./card-details.component.css']\n})\nexport class CardDetailsComponent implements OnInit {\n pageTitle: string = 'Card details';\n cardDetails: ICardDetails;\n paymentReference: string;\n errorMessage: string;\n\n constructor(private cardDetailsService: CardDetailsService,\n private paymentLibComponent: PaymentLibComponent) { }\n\n ngOnInit() {\n this.cardDetailsService.getCardDetails(this.paymentLibComponent.paymentReference).subscribe(\n cardDetails => this.cardDetails = cardDetails,\n (error: any) => this.errorMessage = <any>error\n );\n }\n\n get getPaymentReference(): string {\n return this.paymentReference;\n }\n\n}\n","import { Component } from '@angular/core';\n\n@Component({\n template: `\n <h1>This is not the page you were looking for!</h1>\n `\n})\nexport class PageNotFoundComponent { }\n","import { Injectable } from '@angular/core';\nimport { PaymentLibService } from '../../payment-lib.service';\nimport { HttpClient } from '@angular/common/http';\nimport { IStatusHistories } from '../../interfaces/IStatusHistories';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { catchError } from 'rxjs/operators';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class StatusHistoryService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getPaymentStatusesByReference(paymentReference: string, paymentMethod: string): Observable<IStatusHistories> {\n this.logger.info('Status-history-service getPaymentStatusesByReference for: ', paymentReference);\n\n return this.http.get<IStatusHistories>(paymentMethod === 'card' || paymentMethod === 'cash' || paymentMethod === 'cheque' || paymentMethod === 'postal order' ?\n `${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}/statuses` :\n `${this.paymentLibService.API_ROOT}/credit-account-payments/${paymentReference}/statuses`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { IStatusHistories } from '../../interfaces/IStatusHistories';\nimport { StatusHistoryService } from '../../services/status-history/status-history.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\n\n@Component({\n selector: 'ccpay-payment-statuses',\n templateUrl: './status-history.component.html',\n styleUrls: ['./status-history.component.css']\n})\nexport class StatusHistoryComponent implements OnInit {\n @Input() isTakePayment: boolean;\n pageTitle: string = 'Payment status history';\n statuses: IStatusHistories;\n errorMessage: string;\n\n constructor(private statusHistoryService: StatusHistoryService,\n private paymentLibComponent: PaymentLibComponent) { }\n\n ngOnInit() {\n this.statusHistoryService.getPaymentStatusesByReference(this.paymentLibComponent.paymentReference, this.paymentLibComponent.paymentMethod).subscribe(\n statuses => this.statuses = statuses,\n (error: any) => this.errorMessage = <any>error.replace(/\"/g,\"\")\n );\n \n }\n\n}\n","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {catchError} from 'rxjs/operators';\nimport { IRefundsNotifications } from '../../interfaces/IRefundsNotifications';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class NotificationService {\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService\n ) { }\n\n getRefundNotification(reference: string): Observable<IRefundsNotifications> {\n return this.http.get<IRefundsNotifications>(`${this.paymentLibService.NOTIFICATION_API_ROOT}/notifications/${reference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getAddressByPostcode(postcode: string): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.NOTIFICATION_API_ROOT}/search/places/v1/postcode?postcode=${postcode}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit, Output, EventEmitter, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { NotificationService } from '../../services/notification/notification.service';\n\n@Component({\n selector: 'ccpay-contact-details',\n templateUrl: './contact-details.component.html',\n styleUrls: ['./contact-details.component.css']\n})\nexport class ContactDetailsComponent implements OnInit {\n @Input('isEditOperation') isEditOperation: boolean;\n @Input('isEditOperationInRefundList') isEditOperationInRefundList: boolean;\n @Input('addressObj') addressObj: any;\n @Output() assignContactDetails: EventEmitter<any> = new EventEmitter();\n @Output() assignContactDetailsInFefundsList: EventEmitter<any> = new EventEmitter();\n @Output() redirectToIssueRefund: EventEmitter<any> = new EventEmitter();\n pageTitle: string = 'Payment status history';\n errorMessage: string;\n isEmailSAddressClicked: boolean = true;\n isShowPickAddress: boolean = false;\n isPostcodeClicked: boolean = false;\n isManualAddressClicked: boolean = false;\n emailAddressForm: FormGroup;\n postCodeForm: FormGroup;\n manualAddressForm: FormGroup;\n addressPostcodeList:any[] = [];\n postcodeAddress:any;\n isAddressBoxEmpty: boolean = false;\n\n isEmailEmpty: boolean = false;\n emailHasError: boolean = false;\n isPostcodeEmpty: boolean = false;\n postcodeHasError: boolean = false;\n isaddressLine1Empty: boolean = false;\n addressLine1HasError: boolean = false;\n addressLine2HasError: boolean = false;\n isTownOrCityEmpty: boolean = false;\n townOrCityHasError: boolean = false;\n isCountyEmpty: boolean = false;\n countyHasError: boolean = false;\n isMPostcodeEmpty: boolean = false;\n mpostcodeHasError: boolean = false;\n isCountryEmpty: boolean = false;\n\n constructor(private formBuilder: FormBuilder,\n private notificationService: NotificationService,\n private paymentLibComponent: PaymentLibComponent) { }\n\n ngOnInit() {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,false,false,false], 'all');\n\n this.emailAddressForm = this.formBuilder.group({\n email: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[a-z0-9._%+-]+@[a-z0-9-]+\\\\.[a-z]{2,4}$')\n ]))\n });\n this.postCodeForm = this.formBuilder.group({\n postcode: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([A-Za-z]{1,2}[0-9]{1,2}[A-Za-z]{0,1} ?[0-9][A-Za-z]{2})')\n ]))\n });\n this.manualAddressForm = this.formBuilder.group({\n addressl1: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[a-zA-Z0-9\\\\s,\\'-]*$')\n ])),\n addressl2: new FormControl('', Validators.compose([\n Validators.pattern('^[a-zA-Z0-9\\\\s,\\'-]*$')\n ])),\n townorcity: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[a-zA-Z0-9\\\\s,\\'-]*$')\n ])),\n county: new FormControl('', Validators.compose([\n Validators.pattern('^[a-zA-Z0-9\\\\s,\\'-]*$')\n ])),\n mpostcode: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([A-Za-z]{1,2}[0-9]{1,2}[A-Za-z]{0,1} ?[0-9][A-Za-z]{2})')\n ])),\n country: new FormControl('', Validators.compose([\n Validators.required\n ]))\n });\n if(this.addressObj !== undefined && this.addressObj !== '') {\n this.setEditDetails();\n }\n if(this.isEditOperationInRefundList === undefined) {\n this.isEditOperationInRefundList = false;\n }\n }\n setEditDetails() {\n if(this.addressObj.notification_type === 'EMAIL') {\n this.isEmailSAddressClicked = true;\n this.isPostcodeClicked = false;\n this.isManualAddressClicked = false;\n this.emailAddressForm.setValue({ email: this.addressObj.contact_details.email });\n } else if(this.addressObj.notification_type === 'LETTER') {\n this.isEmailSAddressClicked = false;\n this.isPostcodeClicked = true;\n this.isManualAddressClicked = true;\n this.manualAddressForm.patchValue({ \n addressl1: this.addressObj.contact_details.address_line,\n townorcity: this.addressObj.contact_details.city,\n county: this.addressObj.contact_details.county,\n country: this.addressObj.contact_details.country,\n mpostcode: this.addressObj.contact_details.postal_code\n });\n }\n }\n\n selectContactOption(type, isLinkedClied) {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,false,false,false,false], 'all');\n if( type === 'Email' && isLinkedClied === 'false'){\n this.isEmailSAddressClicked = true;\n this.isPostcodeClicked = false;\n this.isManualAddressClicked = false;\n } else if(type === 'Postcode' && isLinkedClied === 'false') {\n this.isEmailSAddressClicked = false;\n this.isPostcodeClicked = true;\n this.isManualAddressClicked = false;\n } else if(type === 'Postcode' && isLinkedClied === 'true') {\n this.isEmailSAddressClicked = false;\n this.isPostcodeClicked = true;\n this.isManualAddressClicked = true;\n\n }\n }\n\n finalFormSubmit() {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,false,false,false,false], 'all');\n if( this.isEmailSAddressClicked ){\n const emailField = this.emailAddressForm.controls.email;\n if (this.emailAddressForm.valid) {\n if(!this.isEditOperationInRefundList) {\n this.assignContactDetails.emit( {\n email: emailField.value,\n notification_type: 'EMAIL'\n } );\n } else {\n this.assignContactDetailsInFefundsList.emit({\n email: emailField.value,\n notification_type: 'EMAIL'\n } );\n }\n } else {\n if( emailField.value == '' ) {\n this.resetForm([true,false,false,false,false,false,false,false,false,false,false,false,false,false], 'email');\n }\n if(emailField.value != '' && emailField.invalid ) {\n this.resetForm([false,true,false,false,false,false,false,false,false,false,false,false,false,false], 'email');\n }\n }\n } else if( this.isPostcodeClicked && !this.isManualAddressClicked ) {\n this.postcodeValidation('FS');\n } else if(this.isPostcodeClicked && this.isManualAddressClicked) {\n const fieldCtrls = this.manualAddressForm.controls;\n if (this.manualAddressForm.valid) {\n if(!this.isEditOperationInRefundList) {\n this.assignContactDetails.emit({\n address_line: fieldCtrls.addressl1.value+' '+fieldCtrls.addressl2.value,\n city: fieldCtrls.townorcity.value,\n county: fieldCtrls.county.value,\n postal_code: fieldCtrls.mpostcode.value,\n country: fieldCtrls.country.value,\n notification_type: 'LETTER'\n });\n } else {\n this.assignContactDetailsInFefundsList.emit({\n address_line: fieldCtrls.addressl1.value+' '+fieldCtrls.addressl2.value,\n city: fieldCtrls.townorcity.value,\n county: fieldCtrls.county.value,\n postal_code: fieldCtrls.mpostcode.value,\n country: fieldCtrls.country.value,\n notification_type: 'LETTER'\n });\n }\n } else {\n if( fieldCtrls.addressl1.value == '' ) {\n this.resetForm([false,false,false,false,true,false,false,false,false,false,false,false,false,false], 'address1');\n }\n if(fieldCtrls.addressl1.value != '' && fieldCtrls.addressl1.invalid ) {\n this.resetForm([false,false,false,false,false,true,false,false,false,false,false,false,false,false], 'address1');\n }\n if(fieldCtrls.addressl2.value != '' && fieldCtrls.addressl2.invalid ) {\n this.resetForm([false,false,false,false,false,false,true,false,false,false,false,false,false,false], 'address2');\n }\n if( fieldCtrls.townorcity.value == '' ) {\n this.resetForm([false,false,false,false,false,false,false,true,false,false,false,false,false,false], 'town');\n }\n if(fieldCtrls.townorcity.value != '' && fieldCtrls.townorcity.invalid ) {\n this.resetForm([false,false,false,false,false,false,false,false,true,false,false,false,false,false], 'town');\n }\n if( fieldCtrls.county.value == '' ) {\n this.resetForm([false,false,false,false,false,false,false,false,false,true,false,false,false,false], 'county');\n }\n if(fieldCtrls.county.value != '' && fieldCtrls.county.invalid ) {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,true,false,false,false], 'county');\n }\n if( fieldCtrls.mpostcode.value == '' ) {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,true,false,false], 'mpostcode');\n }\n if(fieldCtrls.mpostcode.value != '' && fieldCtrls.mpostcode.invalid ) {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,false,true,false], 'mpostcode');\n }\n if( fieldCtrls.country.value == '' ) {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,false,false,true], 'country');\n }\n }\n\n }\n\n }\n\n postcodeValidation(str) {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,false,false,false,false], 'all');\n const postcodeField = this.postCodeForm.controls.postcode;\n if (this.postCodeForm.valid) {\n if(str === 'FA') {\n this.notificationService.getAddressByPostcode(postcodeField.value).subscribe(\n refundsNotification => {\n this.addressPostcodeList = refundsNotification['data']['results'];\n this.isShowPickAddress = refundsNotification['data']['header'].totalresults > 0;\n if(!this.isShowPickAddress) {\n this.resetForm([false,false,false,true,false,false,false,false,false,false,false,false,false], 'postcode');\n }\n }\n ),\n (error: any) => {\n this.isShowPickAddress = false;\n this.errorMessage = error.replace(/\"/g,\"\");\n }; \n } else if (str === 'FS') {\n if(this.postcodeAddress !== undefined && this.postcodeAddress) {\n this.isAddressBoxEmpty = false;\n let addressLine=\"\";\n let addressArray = this.postcodeAddress.ADDRESS.split(\",\");\n for( let i=0; i<addressArray.length-2; i++ ) {\n addressLine +=addressArray[i]; \n }\n const addressObject = {\n address_line: addressLine,\n city: this.postcodeAddress.POST_TOWN,\n county: this.postcodeAddress.LOCAL_CUSTODIAN_CODE_DESCRIPTION,\n postal_code: this.postcodeAddress.POSTCODE,\n country: 'United Kingdom',\n notification_type: 'LETTER'\n };\n if(!this.isEditOperationInRefundList) {\n this.assignContactDetails.emit(addressObject);\n } else {\n this.assignContactDetailsInFefundsList.emit(addressObject);\n }\n } else {\n this.isAddressBoxEmpty = true;\n }\n }\n } else {\n if( postcodeField.value == '' ) {\n this.resetForm([false,false,true,false,false,false,false,false,false,false,false,false,false], 'postcode');\n }\n if(postcodeField.value != '' && postcodeField.invalid ) {\n this.resetForm([false,false,false,true,false,false,false,false,false,false,false,false,false], 'postcode');\n }\n }\n }\n redirection(event:any) {\n this.redirectToIssueRefund.emit(event);\n }\n resetForm(val, field) {\n if(field==='email' || field==='all') {\n this.isEmailEmpty = val[0];\n this.emailHasError = val[1];\n }\n if(field==='postcode' || field==='all') {\n this.isPostcodeEmpty = val[2];\n this.postcodeHasError = val[3];\n }\n if(field==='address1' || field==='all') {\n this.isaddressLine1Empty = val[4];\n this.addressLine1HasError = val[5];\n }\n if(field==='address2' || field==='all') {\n this.addressLine2HasError = val[6];\n }\n if(field==='town' || field==='all') {\n this.isTownOrCityEmpty = val[7];\n this.townOrCityHasError = val[8];\n }\n if(field==='county' || field==='all') {\n this.isCountyEmpty = val[9];\n this.countyHasError = val[10];\n }\n if(field==='mpostcode' || field==='all') {\n this.isMPostcodeEmpty = val[11];\n this.mpostcodeHasError = val[12];\n }\n if(field==='country' || field==='all') {\n this.isCountryEmpty = val[13];\n }\n \n }\n}\n","import { Component, Input, OnInit } from '@angular/core';\nimport { IPayment } from '../../interfaces/IPayment';\n\n@Component({\n selector: 'ccpay-pba-details',\n templateUrl: './pba-details.component.html',\n styleUrls: ['./pba-details.component.css']\n})\nexport class PbaDetailsComponent implements OnInit {\n @Input() payment: IPayment;\n\n constructor() { }\n\n ngOnInit() {\n }\n\n}\n","import { Injectable } from '@angular/core';\nimport { Logger } from './logger.service';\n\nexport let isDebugMode = false;\n\nconst noop = (): any => undefined;\n\n@Injectable({\n providedIn: 'root'\n})\nexport class ConsoleLoggerService implements Logger {\n\n get info() {\n if (isDebugMode) {\n return console.info.bind(console);\n } else {\n return noop;\n }\n }\n\n get warn() {\n if (isDebugMode) {\n return console.warn.bind(console);\n } else {\n return noop;\n }\n }\n\n get error() {\n if (isDebugMode) {\n return console.error.bind(console);\n } else {\n return noop;\n }\n }\n\n invokeConsoleMethod(type: string, args?: any): void {\n const logFn: Function = (console)[type] || console.log || noop;\n logFn.apply(console, [args]);\n }\n}\n","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {LoggerService} from '../shared/logger/logger.service';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport {catchError} from 'rxjs/operators';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class CaseTransactionsService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService\n ) { }\n\n getPaymentGroups(ccdCaseNumber: string): Observable<IPaymentGroup[]> {\n this.logger.info('Case-transactions-service getPaymentGroups for: ', ccdCaseNumber);\n\n return this.http.get<IPaymentGroup[]>(`${this.paymentLibService.API_ROOT}/cases/${ccdCaseNumber}/paymentgroups`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {catchError} from 'rxjs/operators';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class BulkScaningPaymentService {\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService\n ) { }\n\n getBSPaymentsByCCD(ccdCaseNumber: string): Observable<IBSPayments> {\n return this.http.get<IBSPayments>(`${this.paymentLibService.BULKSCAN_API_ROOT}/cases/${ccdCaseNumber}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getBSPaymentsByDCN(dcn: string): Observable<IBSPayments> {\n return this.http.get<IBSPayments>(`${this.paymentLibService.BULKSCAN_API_ROOT}/cases?document_control_number=${dcn}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSAllocatePayment(body: AllocatePaymentRequest, paymentRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentRef}/bulk-scan-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSPaymentStrategic(body: AllocatePaymentRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/bulk-scan-payments-strategic`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSWoPGStrategic(body: AllocatePaymentRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/bulk-scan-payments-strategic`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n patchBSChangeStatus(dcnNumber: string, status: string): Observable<any> {\n return this.https.patch(`${this.paymentLibService.API_ROOT}/bulk-scan-payments/${dcnNumber}/status/${status}`, status).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n calculateOutStandingAmount(paymentGroup: IPaymentGroup): number {\n let feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00;\n\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n });\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n } \n return (feesTotal - remissionsTotal) - paymentsTotal;\n }\n\n removeUnwantedString(input: string, replaceText: string) {\n const pattern = /[\\_]/gi;\n return input.replace(pattern, replaceText);\n }\n\n downloadSelectedReport(reportName: string, startDate: string, endDate:string): Observable<any> {\n return this.https.get(`${this.paymentLibService.BULKSCAN_API_ROOT}/report/data?date_from=${startDate}&date_to=${endDate}&report_type=${reportName}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { CaseTransactionsService } from '../../services/case-transactions/case-transactions.service';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IPaymentView } from '../../interfaces/IPaymentView';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { Router } from '@angular/router';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-case-transactions',\n templateUrl: './case-transactions.component.html',\n styleUrls: ['./case-transactions.component.css']\n})\nexport class CaseTransactionsComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input() isTakePayment: boolean;\n @Input() isFromServiceRequestPage: boolean;\n takePayment: boolean;\n ccdCaseNumber: string;\n excReference: string;\n paymentGroups: any[] = [];\n payments: IPayment[] = [];\n nonPayments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n fees: IFee[] = [];\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalNonOffPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n paymentRef: string;\n isTurnOff: boolean;\n isRefundRemission: boolean = true;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = true;\n isExceptionRecord: boolean = false;\n isUnprocessedRecordSelected: boolean = false;\n exceptionRecordReference: string;\n isAnyFeeGroupAvilable: boolean = true;\n isHistoricGroupAvailable: boolean = false;\n isBulkScanEnable;\n isRemissionsMatch: boolean;\n viewStatus = 'main';\n isRemoveBtnDisabled: boolean = false;\n feeId: IFee;\n clAmountDue: number = 0;\n overPaymentAmount: number = 0;\n unprocessedRecordCount: number;\n isFeeRecordsExist: boolean = false;\n isGrpOutstandingAmtPositive: boolean = false;\n totalRefundAmount: Number;\n caseType: String;\n // lsCcdNumber: any = ls.get<any>('ccdNumber');\n payment: IPayment;\n paymentGroup: IPaymentGroup;\n paymentView: IPaymentView;\n\n //Order changes\n orderDetail: any[] = [];\n\n isAddRemissionEnable: boolean = false;\n orderRemissionDetails: any[] = [];\n orderLevelFees: IOrderReferenceFee[] = [];\n ispaymentGroupApisuccess: boolean = false;\n cpoDetails: any = null;\n orderRef: string;\n orderStatus: string;\n orderParty: string;\n orderCreated: Date;\n orderCCDEvent: string;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n orderFeesTotal: number = 0.00;\n orderRemissionTotal: number = 0.00;\n orderTotalPayments: number = 0.00;\n orderPendingPayments: number = 0.00;\n isCPODown: boolean;\n test: boolean;\n isPBA: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n isAddRemissionBtnEnabled: boolean = false;\n isRefundRemissionBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n isEligible4PBAPayment = ['pui-finance-manager', 'pui-user-manager', 'pui-organisation-manager', 'pui-case-manager'];\n currentDate = new Date();\n //isFromServiceRequestPage: boolean;\n navigationpage: string;\n remissionFeeAmt: number;\n constructor(private router: Router,\n private paymentViewService: PaymentViewService,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private caseTransactionsService: CaseTransactionsService,\n private paymentLibComponent: PaymentLibComponent,\n private OrderslistService: OrderslistService\n ) { }\n\n ngOnInit() {\n this.navigationpage = '';\n if(this.OrderslistService.getpaymentPageView() !== null) {\n this.OrderslistService.getpaymentPageView().subscribe((data) => this.paymentView = data);\n }\n if((this.LOGGEDINUSERROLES === undefined || this.LOGGEDINUSERROLES.length === 0 )&&this.OrderslistService.getUserRolesList() !== null) {\n this.OrderslistService.getUserRolesList().subscribe((data) => this.LOGGEDINUSERROLES = data);\n }\n if(this.OrderslistService.getnavigationPageValue() !== null) {\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n }\n \n if (this.paymentView !== undefined && this.paymentView !== null && this.paymentView.payment_group_reference !== undefined && this.navigationpage === 'paymentdetailspage') {\n this.goToPayementView(this.paymentView.payment_group_reference, this.paymentView.reference, this.paymentView.method);\n }\n this.isGrpOutstandingAmtPositive = false;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.caseType = this.paymentLibComponent.CASETYPE;\n if (this.paymentLibComponent.CCD_CASE_NUMBER === '') {\n this.ccdCaseNumber = this.paymentLibComponent.EXC_REFERENCE;\n }\n this.excReference = this.paymentLibComponent.EXC_REFERENCE;\n this.takePayment = this.paymentLibComponent.TAKEPAYMENT;\n \n const serviceRequest = this.paymentLibComponent.SERVICEREQUEST;\n if ( serviceRequest !== undefined && serviceRequest.toString() === 'true' ) {\n this.serviceRequestValue = 'true';\n } else {\n this.serviceRequestValue = 'false';\n this.paymentLibComponent.isFromServiceRequestPage = false;\n }\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n if (!this.isTurnOff) {\n // if (this.lsCcdNumber !== this.ccdCaseNumber) {\n // this.router.navigateByUrl(`/ccd-search?takePayment=true`);\n // }\n\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.isAnyFeeGroupAvilable =true;\n this.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts();\n this.calculateOrderFeesAmounts();\n this.calculateRefundAmount();\n if (this.isFromServiceRequestPage) {\n this.OrderslistService.getSelectedOrderRefId().subscribe((data) => this.orderRef = data);\n this.goToOrderViewDetailSection(this.orderRef);\n } else {\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).content[0];\n\n },\n (error: any) => {\n this.errorMessage = <any>error ? error.replace(/\"/g,\"\") : \"\";\n this.isCPODown = true;\n }\n );\n\n }\n\n\n },\n (error: any) => {\n this.errorMessage = <any>error ? error.replace(/\"/g,\"\") : \"\";\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n } else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.isAnyFeeGroupAvilable =true;\n this.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts();\n this.calculateOrderFeesAmounts();\n this.totalRefundAmount = this.calculateRefundAmount();\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).content[0];\n\n },\n (error: any) => {\n this.errorMessage = <any>error ? error.replace(/\"/g,\"\") : \"\";\n this.setDefaults();\n this.isCPODown = true;\n }\n );\n\n },\n (error: any) => {\n this.errorMessage = <any>error ? error.replace(/\"/g,\"\") : \"\";\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n }\n\n if( this.paymentGroups !== undefined) {\n this.checkForExceptionRecord();\n }\n\n if(this.OrderslistService.getisFromServiceRequestPages() !== null) {\n this.OrderslistService.getisFromServiceRequestPages().subscribe((data) => this.isFromServiceRequestPage = data);\n }\n\n }\n\n setDefaults(): void {\n this.totalPayments = 0.00;\n this.totalRemissions = 0.00;\n this.totalNonOffPayments = 0.00;\n this.totalFees = 0.00;\n }\n\n getAllocationStatus(payments: any) {\n\n let paymentAllocation = payments.payment_allocation,\n isAllocationStatusExist = paymentAllocation.length > 0;\n return isAllocationStatusExist ? paymentAllocation[0].allocation_status : '-';\n //return \"-\";\n\n }\n\n checkForExceptionRecord(): void {\n\n if (this.paymentGroups.length === 0 && (this.selectedOption.toLocaleLowerCase() === 'ccdorexception' || this.selectedOption.toLocaleLowerCase() === 'rc')) {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n recordData => {\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length > 0 && recordData['data'].ccd_reference > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length > 0 && recordData['data'].ccd_reference === undefined) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n }\n\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length === undefined && recordData['data'].ccd_reference > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n });\n }\n\n if (this.paymentGroups.length === 0 && this.selectedOption.toLocaleLowerCase() === 'dcn') {\n if (this.paymentLibComponent.CCD_CASE_NUMBER.length > 0 && this.paymentLibComponent.EXC_REFERENCE.length > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n } else if (this.paymentLibComponent.CCD_CASE_NUMBER.length === 0 && this.paymentLibComponent.EXC_REFERENCE.length > 0) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n } else {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n }\n if (this.paymentGroups.length > 0)\n this.paymentGroups.forEach(paymentGroup => {\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.case_reference !== undefined && payment.ccd_case_number === undefined) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n } else {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n\n });\n }\n });\n }\n\n calculateOrderFeesAmounts(): void {\n let feesTotal = 0.00;\n this.paymentGroups.forEach(paymentGroup => {\n this.resetOrderVariables();\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.orderFeesTotal = this.orderFeesTotal + fee.calculated_amount\n this.overPaymentAmount = this.overPaymentAmount + fee.over_payment\n }\n )\n }\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n this.orderRemissionTotal = this.orderRemissionTotal + remission.hwf_amount;\n });\n }\n\n if (paymentGroup.payments) {\n const isFeeOverPaymentExist = this.overPaymentAmount === 0;\n paymentGroup.payments.forEach(payment => {\n if(isFeeOverPaymentExist) {\n this.overPaymentAmount = this.overPaymentAmount + payment.over_payment\n }\n if (payment.status.toUpperCase() === 'SUCCESS') {\n this.orderTotalPayments = this.orderTotalPayments + payment.amount;\n }\n });\n }\n\n // this.orderPendingPayments = (this.orderFeesTotal - this.orderRemissionTotal) - this.orderTotalPayments;\n if (paymentGroup.service_request_status === 'Paid') {\n this.orderStatus = paymentGroup.service_request_status;\n this.orderAddBtnEnable = false;\n } else if (paymentGroup.service_request_status === 'Partially paid' || paymentGroup.service_request_status === 'Not paid') {\n this.orderStatus = paymentGroup.service_request_status;\n this.orderAddBtnEnable = true;\n }\n\n //this.orderLevelFees.push({orderRefId:paymentGroup['payment_group_reference'],orderTotalFees: this.orderFeesTotal,orderStatus: this.orderStatus,orderParty:'Santosh', orderCCDEvent:'Case Creation',orderCreated: new Date(), orderAddBtnEnable: this.orderAddBtnEnable}); this.cpoDetails['createdTimestamp']\n if (this.cpoDetails !== null) {\n this.orderLevelFees.push({ orderRefId: paymentGroup['payment_group_reference'], orderTotalFees: this.orderFeesTotal, orderStatus: this.orderStatus, orderParty: this.cpoDetails['responsibleParty'], orderCCDEvent: this.cpoDetails['action'], orderCreated: paymentGroup['date_created'], orderAddBtnEnable: this.orderAddBtnEnable });\n\n } else {\n this.orderLevelFees.push({ orderRefId: paymentGroup['payment_group_reference'], orderTotalFees: this.orderFeesTotal, orderStatus: this.orderStatus, orderParty: '', orderCCDEvent: '', orderCreated: paymentGroup['date_created'], orderAddBtnEnable: this.orderAddBtnEnable });\n }\n\n if (this.orderStatus !== 'Paid') {\n this.OrderslistService.setOrdersList(this.orderLevelFees);\n }\n });\n };\n\n resetOrderVariables(): void {\n this.orderFeesTotal = 0.00;\n this.orderTotalPayments = 0.00;\n this.orderRemissionTotal = 0.00;\n this.orderPendingPayments = 0.00;\n this.isAddFeeBtnEnabled = true;\n\n };\n\n goToOrderViewDetailSection(orderReferenceObj: any) {\n if (this.isFromServiceRequestPage) {\n this.OrderslistService.setOrderRefId(orderReferenceObj);\n this.orderRef = orderReferenceObj;\n } else {\n this.OrderslistService.setOrderRefId(orderReferenceObj.orderRefId);\n this.orderRef = orderReferenceObj.orderRefId;\n }\n\n this.orderFeesTotal = 0.00;\n this.orderRemissionTotal = 0.00;\n this.orderTotalPayments = 0.00;\n this.orderPendingPayments = 0.00;\n\n this.orderDetail = this.paymentGroups.filter(x => x.payment_group_reference === this.orderRef);\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.fees) {\n orderDetail.fees.forEach(fee => {\n this.orderFeesTotal = this.orderFeesTotal + fee.calculated_amount;\n });\n }\n if (orderDetail.remissions) {\n orderDetail.remissions.forEach(remission => {\n this.orderRemissionTotal = this.orderRemissionTotal + remission.hwf_amount;\n });\n if (orderDetail.payments) {\n this.payment = orderDetail.payments[0];\n orderDetail.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n this.orderTotalPayments = this.orderTotalPayments + payment.amount;\n }\n });\n }\n }\n this.orderStatus = orderDetail.service_request_status;\n });\n //this.orderPendingPayments = (this.orderFeesTotal - this.orderRemissionTotal) - this.orderTotalPayments;\n // this.orderRef = orderReferenceObj.orderRefId;\n // if (this.orderPendingPayments <= 0.00) {\n // this.orderStatus = 'Paid';\n // } else if (this.orderFeesTotal > 0 && (this.orderTotalPayments > 0 || this.orderRemissionTotal > 0) && (this.orderTotalPayments < this.orderPendingPayments)) {\n // this.orderStatus = 'Partially paid'\n // } else {\n // this.orderStatus = 'Not paid'\n // }\n\n\n if (this.cpoDetails !== null) {\n this.orderParty = this.cpoDetails['responsibleParty'];\n this.orderCreated = this.cpoDetails['createdTimestamp'];\n this.orderCCDEvent = this.cpoDetails['action'];\n } else {\n this.orderParty = '';\n this.orderCCDEvent = '';\n this.orderCreated = orderReferenceObj.orderCreated;\n }\n this.viewStatus = 'order-full-view';\n }\n\n redirectToOrderFeeSearchPage(event: any, orderef: any) {\n if(orderef.orderAddBtnEnable) {\n event.preventDefault();\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = orderef.orderRefId;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n }\n\n\n\n\n calculateAmounts(): void {\n let feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00,\n nonOffLinePayment = 0.00;\n\n this.paymentGroups.forEach(paymentGroup => {\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n if (fee.date_created) {\n let a = fee.amount_due === undefined;\n let b = fee.amount_due <= 0;\n this.clAmountDue = a ? this.clAmountDue + fee.net_amount : b ? this.clAmountDue + 0 : this.clAmountDue + fee.amount_due;\n }\n fee['payment_group_reference'] = paymentGroup['payment_group_reference'];\n this.fees.push(fee);\n } else {\n feesTotal = feesTotal + fee.calculated_amount;\n this.fees.push(fee);\n }\n\n });\n }\n if (this.isTurnOff) {\n this.totalFees = feesTotal;\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n let allocationLen = payment.payment_allocation;\n\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n if (allocationLen.length === 0 || allocationLen.length > 0 && allocationLen[0].allocation_status === 'Allocated') {\n nonOffLinePayment = nonOffLinePayment + payment.amount;\n }\n if (allocationLen.length > 0) {\n this.nonPayments.push(payment);\n }\n }\n if (allocationLen.length === 0) {\n this.payments.push(payment);\n }\n payment.paymentGroupReference = paymentGroup.payment_group_reference\n this.allPayments.push(payment);\n } else {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n this.payments.push(payment);\n }\n payment.paymentGroupReference = paymentGroup.payment_group_reference\n this.allPayments.push(payment);\n }\n });\n }\n this.totalPayments = paymentsTotal;\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n this.totalNonOffPayments = nonOffLinePayment;\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remisison => {\n remissionsTotal = remissionsTotal + remisison.hwf_amount;\n this.remissions.push(remisison);\n });\n }\n this.totalRemissions = remissionsTotal;\n });\n\n }\n\n calculateRefundAmount() {\n if (!this.isTurnOff) {\n let isNewPaymentGroup = false;\n\n this.paymentGroups.forEach((paymentGroup, index) => {\n let grpOutstandingAmount = 0.00,\n feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00,\n fees = [];\n\n if (paymentGroup.fees) {\n // this.isFeeRecordsExist = true;\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n\n this.isRemissionsMatch = false;\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(rem => {\n if (rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n // if(!fees.find(k => k.code=fee.code))\n // {\n fees.push(fee);\n //}\n }\n });\n }\n if (!this.isRemissionsMatch) {\n fees.push(fee);\n }\n\n if (fee.date_created) {\n isNewPaymentGroup = true;\n } else {\n this.isHistoricGroupAvailable = true;\n this.paymentGroups[index]['old'] = true;\n }\n });\n this.paymentGroups[index].fees = fees;\n }\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n }\n grpOutstandingAmount = (feesTotal - remissionsTotal) - paymentsTotal;\n if (grpOutstandingAmount > 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = true;\n this.isFeeRecordsExist = true;\n this.paymentRef = paymentGroup.payment_group_reference;\n }\n if (paymentGroup.fees && paymentGroup.fees.length > 0 && grpOutstandingAmount <= 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = false;\n }\n });\n if ((!isNewPaymentGroup && this.isHistoricGroupAvailable) || (!isNewPaymentGroup && !this.isHistoricGroupAvailable)) {\n this.isAnyFeeGroupAvilable = false;\n }\n } else {\n let totalRefundAmount = 0,\n isFeeAmountZero = false;\n this.paymentGroups.forEach(paymentGroup => {\n let grpOutstandingAmount = 0.00,\n feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00;\n if (paymentGroup.fees) {\n this.isFeeRecordsExist = true;\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n if (fee.calculated_amount === 0) {\n isFeeAmountZero = true\n }\n });\n\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n }\n grpOutstandingAmount = (feesTotal - remissionsTotal) - paymentsTotal;\n if (grpOutstandingAmount < 0) {\n if (totalRefundAmount === 0) {\n totalRefundAmount = grpOutstandingAmount;\n } else {\n totalRefundAmount = (totalRefundAmount + grpOutstandingAmount);\n }\n }\n else if (grpOutstandingAmount > 0 || (grpOutstandingAmount === 0 && isFeeAmountZero)) {\n this.isGrpOutstandingAmtPositive = true;\n }\n });\n return totalRefundAmount * -1;\n }\n }\n\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n }\n\n redirectToFeeSearchPage(event: any) {\n event.preventDefault();\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url += `&caseType=${this.caseType}`\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}${url}`);\n }\n\n addRemission(fee: IFee) {\n if(this.chkForAddRemission(fee.code)) {\n this.feeId = fee;\n this.viewStatus = 'addremission';\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error? error.replace(/\"/g,\"\") : \"\"\n );\n }\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n this.paymentViewService.getApportionPaymentDetails(payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n this.paymentGroup.payments = paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj.reference === payment.reference);\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n this.viewStatus = 'addrefundforremission';\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n\n redirectToremissionPage(event: any) {\n event.preventDefault();\n this.paymentLibComponent.viewName = 'remission'\n }\n goToServiceRequestPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = false;\n this.paymentLibComponent.SERVICEREQUEST = 'true';\n this.paymentLibComponent.isFromServiceRequestPage = true;\n window.location.reload();\n }\n redirectToReportsPage(event: any) {\n event.preventDefault();\n this.router.navigateByUrl(`/reports?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}`);\n }\n\n loadFeeSummaryPage(paymentGroup: IPaymentGroup) {\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.payment_group_reference;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n\n goToPaymentViewComponent(paymentGroup: any) {\n this.paymentLibComponent.paymentMethod = paymentGroup.paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentGroup.paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n\n goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent({ paymentGroupReference, paymentReference, paymentMethod });\n }\n\n selectedUnprocessedFeeEvent(unprocessedRecordId: string) {\n if (unprocessedRecordId) {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = false;\n }\n this.isUnprocessedRecordSelected = true;\n } else {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = true;\n }\n this.isUnprocessedRecordSelected = false;\n }\n }\n\n getUnprocessedFeeCount(unProcessedRecordCount: number) {\n this.unprocessedRecordCount = unProcessedRecordCount;\n }\n\n calculateAmountDue(fee: IFee) {\n\n if (fee.date_created) {\n return fee.amount_due !== undefined ? fee.amount_due : fee.net_amount;\n } else {\n return \"0.00\";\n }\n }\n\n confirmRemoveFee(fee: IFee) {\n this.isRemoveBtnDisabled = false;\n this.feeId = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n cancelRemoval() {\n this.viewStatus = 'main';\n }\n\n removeFee(fee: any) {\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n window.location.reload();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n\n issueRefund(payment: IPayment) {\n if (payment !== null && payment !== undefined) {\n if(this.chkIssueRefundBtnEnable(payment)) {\n this.viewStatus = 'issuerefund';\n this.payment = payment;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.isRefundRemission = true;\n }\n }\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund()) {\n if (this.orderDetail[0]['remissions'].length > 0) {\n for (const remission of this.orderDetail[0]['remissions']) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n }\n return true;\n } else {\n return false;\n }\n }\n\n chkForPBAPayment(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isPBA = true;\n }\n });\n }\n });\n if (this.isPBA) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (payment !== null && payment !== undefined) {\n return payment.issue_refund && payment.refund_enable\n } else {\n return false;\n }\n // if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n // payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n // this.isIssueRefunfBtnEnable = true;\n // }\n // if (this.isIssueRefunfBtnEnable) {\n // return true;\n // } else {\n // return false;\n // };\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n check4AllowedRoles2AccessPBApayment = (): boolean => {\n return this.isEligible4PBAPayment.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n if (payment !== null && payment !== undefined) {\n let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\n }\n }\n\n loadPBAAccountPage(orderRef: IPayment) {\n this.paymentLibComponent.pbaPayOrderRef = orderRef;\n this.paymentLibComponent.viewName = 'pba-payment';\n }\n}\n","export class PaymentToPayhubRequest {\n currency = 'GBP';\n description = 'PayBubble payment';\n channel = 'telephony';\n provider = 'pci pal';\n case_type: string;\n\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.case_type= caseType;\n }\n}\n","export class PayhubAntennaRequest {\n currency = 'GBP';\n case_type: string;\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.case_type= caseType;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IFee } from '../../interfaces/IFee';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { PayhubAntennaRequest } from '../../interfaces/PayhubAntennaRequest';\nimport { SafeHtml } from '@angular/platform-browser';\nimport {Router} from '@angular/router';\nimport {Location} from '@angular/common';\nimport { OrderslistService } from '../../services/orderslist.service';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-fee-summary',\n templateUrl: './fee-summary.component.html',\n styleUrls: ['./fee-summary.component.scss']\n})\n\nexport class FeeSummaryComponent implements OnInit {\n @Input() paymentGroupRef: string;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: string;\n @Input() caseType: string;\n\n\n bsPaymentDcnNumber: string;\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n viewStatus = 'main';\n currentFee: IFee;\n totalFee: number;\n payhubHtml: SafeHtml;\n service: string = \"\";\n platForm: string = \"\";\n upPaymentErrorMessage: string;\n selectedOption:string;\n isBackButtonEnable: boolean = true;\n outStandingAmount: number;\n isFeeAmountZero: boolean = false;\n totalAfterRemission: number = 0;\n isConfirmationBtnDisabled: boolean = false;\n isRemoveBtnDisabled: boolean = false;\n isPaymentExist: boolean = false;\n isRemissionsExist: Boolean = false;\n isRemissionsMatch = false;\n isStrategicFixEnable: boolean;\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private location: Location,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private OrderslistService: OrderslistService\n ) {}\n\n ngOnInit() {\n this.viewStatus = 'main';\n this.caseType = this.paymentLibComponent.CASETYPE;\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.setCaseType(this.paymentLibComponent.CASETYPE);\n\n this.platForm = 'Antenna';\n\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n if (this.bsPaymentDcnNumber) {\n this.getUnassignedPaymentlist();\n }\n this.getPaymentGroup();\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.paymentLibComponent.DCN_NUMBER).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error';\n }\n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error';\n }\n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n }\n\n }\n\n getRemissionByFeeCode(feeCode: string): IRemission {\n if (this.paymentGroup && this.paymentGroup.remissions && this.paymentGroup.remissions.length > 0) {\n for (const remission of this.paymentGroup.remissions) {\n if (remission.fee_code === feeCode) {\n return remission;\n }\n }\n }\n return null;\n }\n\n addRemission(fee: IFee) {\n this.currentFee = fee;\n this.viewStatus = 'add_remission';\n }\n\n getPaymentGroup() {\n let fees = [];\n this.paymentViewService.getPaymentGroupDetails(this.paymentGroupRef).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n this.isPaymentExist = paymentGroup.payments ? paymentGroup.payments.length > 0 : false;\n this.isRemissionsExist = paymentGroup.remissions ? paymentGroup.remissions.length > 0 : false;\n\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.totalAfterRemission = this.totalAfterRemission + fee.net_amount;\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true;\n }\n if(paymentGroup.remissions) {\n this.isRemissionsMatch = false;\n paymentGroup.remissions.forEach(rem => {\n if(rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n\n if(!this.isRemissionsMatch) {\n fees.push(fee);\n }\n } else {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees;\n }\n\n this.outStandingAmount = this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n\n confirmRemoveFee(fee: IFee){\n this.isRemoveBtnDisabled = false;\n this.currentFee = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n removeFee(fee: any){\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n if (this.paymentGroup.fees && this.paymentGroup.fees.length > 1){\n this.totalAfterRemission = 0;\n this.getPaymentGroup();\n this.viewStatus = 'main';\n return;\n }\n this.loadCaseTransactionPage();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n loadCaseTransactionPage() {\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n\n let partUrl = `selectedOption=${this.paymentLibComponent.SELECTED_OPTION}`;\n partUrl +=this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n\n let url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=true&${partUrl}`;\n this.router.navigateByUrl(url);\n }\n cancelRemission() {\n this.viewStatus = 'main';\n }\n redirectToFeeSearchPage(event: any, page?: string) {\n event.preventDefault();\n let partUrl =this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n\n if(this.viewStatus === 'feeRemovalConfirmation' || this.viewStatus === 'add_remission') {\n this.viewStatus = 'main';\n return;\n }\n let url = `/fee-search?ccdCaseNumber=${this.ccdCaseNumber}&selectedOption=${this.paymentLibComponent.SELECTED_OPTION}&paymentGroupRef=${this.paymentGroupRef}${partUrl}`;\n this.router.navigateByUrl(url);\n }\n takePayment() {\n this.isConfirmationBtnDisabled = true;\n const requestBody = new PaymentToPayhubRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType),\n antennaReqBody = new PayhubAntennaRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType);\n\n if(this.platForm === 'Antenna') {\n\n this.paymentViewService.postPaymentAntennaToPayHub(antennaReqBody, this.paymentGroupRef).subscribe(\n response => {\n this.isBackButtonEnable=false;\n window.location.href = '/makePaymentByTelephoneyProvider';\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.router.navigateByUrl('/pci-pal-failure');\n }\n );\n }\n\n }\n\n goToAllocatePage(outStandingAmount: number, isFeeAmountZero: Boolean) {\n if (outStandingAmount > 0 || (outStandingAmount === 0 && isFeeAmountZero)) {\n this.paymentLibComponent.paymentGroupReference = this.paymentGroupRef;\n this.paymentLibComponent.viewName = 'allocate-payments';\n } else {\n this.loadCaseTransactionPage();\n }\n }\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\n\n\n\n@Component({\n selector: 'ccpay-error-banner',\n templateUrl: './error-banner.component.html',\n styleUrls: ['./error-banner.component.scss']\n})\n\nexport class ErrorBannerComponent implements OnInit {\n @Input('errorMessage') errorMessage;\n\n constructor(\n ) {}\n\n ngOnInit() {\n\n }\n}\n","\nexport class UnidentifiedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n unidentified_reason: string;\n\n constructor(payment_group_reference: string, payment_reference : string, unidentified_reason: any) {\n this.payment_allocation_status = {\n description: '',\n name: \"Unidentified\"\n };\n this.payment_group_reference = payment_group_reference ;\n this.payment_reference= payment_reference;\n this.unidentified_reason= unidentified_reason;\n\n }\n\n\n\n}\n","import { IBSPayments } from \"./IBSPayments\";\n\nexport class AllocatePaymentRequest {\n amount: Number;\n banked_date: String;\n ccd_case_number: String;\n exception_record: string;\n currency: String;\n document_control_number: String;\n external_provider: String;\n giro_slip_no: String;\n payer_name: String;\n payment_channel: Object;\n payment_status: Object;\n payment_method: String;\n case_type: String;\n payment_allocation_dto?: {\n allocation_reason: String,\n allocation_status: String,\n explanation: String,\n payment_allocation_status: Object,\n payment_group_reference: String,\n payment_reference: String,\n reason: String,\n receiving_office: String,\n unidentified_reason: String,\n user_id: String,\n user_name: String,\n case_type: String\n }\n\n constructor(ccd_case_number : string, unAllocatedPayment: IBSPayments, caseType: string, exceptionRecord: string, allocatedRequest?: any) {\n this.amount = unAllocatedPayment.amount;\n this.banked_date = unAllocatedPayment.date_banked;\n this.ccd_case_number = ccd_case_number;\n this.exception_record = exceptionRecord;\n this.currency= unAllocatedPayment.currency;\n this.document_control_number = unAllocatedPayment.dcn_reference;\n this.external_provider = 'exela';\n this.giro_slip_no = unAllocatedPayment.bgc_reference;\n this.payer_name = unAllocatedPayment.payer_name;\n this.payment_channel = {\n description: '',\n name: 'bulk scan'\n };\n this.payment_status ={\n description: 'bulk scan payment completed',\n name: 'success'\n }\n this.payment_method = unAllocatedPayment.payment_method;\n this.case_type= caseType;\n if(allocatedRequest) {\n this.payment_allocation_dto = allocatedRequest;\n }\n\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\n\n@Component({\n selector: 'app-mark-unidentified-payment',\n templateUrl: './mark-unidentified-payment.component.html',\n styleUrls: ['./mark-unidentified-payment.component.scss']\n})\nexport class MarkUnidentifiedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnidentifiedForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n isInvesticationDetailEmpty: boolean = false;\n investicationDetailHasError: boolean = false;\n investicationDetailMinHasError: boolean = false;\n investicationDetailMaxHasError: boolean = false;\n errorMessage = this.getErrorMessage(false);\n unassignedRecord:IBSPayments;\n siteID: string = null;\n investigationComment: string;\n isConfirmButtondisabled:Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n isStrategicFixEnable: boolean = true;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.markPaymentUnidentifiedForm = this.formBuilder.group({\n investicationDetail: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ]))\n });\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.getErrorMessage(false);\n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n saveAndContinue() {\n this.resetForm([false, false, false, false]);\n const investicationField = this.markPaymentUnidentifiedForm.controls.investicationDetail;\n const formerror = investicationField.errors;\n if (this.markPaymentUnidentifiedForm.dirty && this.markPaymentUnidentifiedForm.valid) {\n this.investigationComment = this.markPaymentUnidentifiedForm.controls.investicationDetail.value;\n this.viewStatus = 'unidentifiedContinueConfirm';\n }else {\n if(investicationField.value == '' ) {\n this.resetForm([true, false, false, false]);\n }\n if(investicationField.value != '' && investicationField.invalid ) {\n this.resetForm([false, true, false, false]);\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false, false, true, false]);\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, true]);\n }\n }\n }\n resetForm(val) {\n this.isInvesticationDetailEmpty = val[0];\n this.investicationDetailHasError = val[1];\n this.investicationDetailMinHasError = val[2];\n this.investicationDetailMaxHasError = val[3];\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const reason = this.markPaymentUnidentifiedForm.get('investicationDetail').value;\n\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Unidentified',\n payment_allocation_status: {\n description: '',\n name: 'Unidentified'\n },\n unidentified_reason: reason,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnidentifiedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, reason);\n if (response2.success) {\n this.paymentViewService.postBSUnidentifiedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n cancelMarkUnidentifiedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.markPaymentUnidentifiedForm.get('investicationDetail').value!==\"\"){\n this.viewStatus = 'unidentifiedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.viewStatus = 'mainForm';\n }\n }\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","\nexport class UnsolicitedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n receiving_office: string;\n receiving_email_address: string;\n sending_email_address: string;\n unidentified_reason: string;\n constructor(payment_group_reference: string, payment_reference : string, reason: string,responsible_office: string, responsible_person:string,email_id: string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Transferred\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.unidentified_reason= reason;\n this.receiving_office= responsible_office;\n this.receiving_email_address= email_id;\n this.sending_email_address= responsible_person;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\n\n\n@Component({\n selector: 'app-mark-unsolicited-payment',\n templateUrl: './mark-unsolicited-payment.component.html',\n styleUrls: ['./mark-unsolicited-payment.component.scss']\n})\nexport class MarkUnsolicitedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnsolicitedForm: FormGroup;\n viewStatus: string;\n reasonHasError: boolean = false;\n isReasonEmpty: boolean = false;\n reasonMinHasError: boolean = false;\n reasonMaxHasError: boolean = false;\n responsibleOfficeHasError: boolean = false;\n isResponsibleOfficeEmpty: boolean = false;\n errorMessage = this.getErrorMessage(false);\n ccdCaseNumber: string;\n bspaymentdcn: string;\n unassignedRecord: IBSPayments;\n siteID: string = null;\n reason: string;\n responsiblePerson: string;\n responsibleOffice: string;\n emailId: string;\n isConfirmButtondisabled: Boolean = false;\n isContinueButtondisabled: Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n selectedSiteId: string;\n selectedSiteName: string;\n isStrategicFixEnable: boolean = true;\n siteIDList;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.resetForm([false,false,false,false,false,false], 'all');\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.paymentViewService.getSiteID().subscribe(\n siteids => {\n this.isContinueButtondisabled = false;\n this.errorMessage = this.getErrorMessage(false);\n this.siteIDList = JSON.parse(siteids);\n },\n err => {\n window.scrollTo(0, 0);\n this.isContinueButtondisabled = true;\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n \n this.markPaymentUnsolicitedForm = this.formBuilder.group({\n reason: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n responsibleOffice: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s\\\\n,\\\\.-:]*)$')\n ])),\n responsiblePerson: new FormControl(''),\n emailId: new FormControl('')\n });\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const controls = this.markPaymentUnsolicitedForm.controls;\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Transferred',\n payment_allocation_status: {\n description: '',\n name: 'Transferred'\n },\n unidentified_reason: controls.reason.value,\n receiving_office: this.selectedSiteId,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n // controls.responsibleOffice.setValue('P219');\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const response1 = JSON.parse(res1),\n requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnsolicitedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, controls.reason.value, this.selectedSiteId, controls.responsiblePerson.value, controls.emailId.value);\n if (response2.success) {\n this.paymentViewService.postBSUnsolicitedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n saveAndContinue() {\n this.resetForm([false,false,false,false,false,false], 'all');\n const formerror = this.markPaymentUnsolicitedForm.controls.reason.errors;\n const reasonField = this.markPaymentUnsolicitedForm.controls.reason;\n //const officeIdField = this.selectedSiteId;\n const officeIdField = this.markPaymentUnsolicitedForm.controls.responsibleOffice;\n if (this.markPaymentUnsolicitedForm.dirty && this.markPaymentUnsolicitedForm.valid) {\n const controls = this.markPaymentUnsolicitedForm.controls;\n this.emailId = controls.emailId.value;\n this.responsibleOffice = officeIdField.value;\n this.responsiblePerson = controls.responsiblePerson.value;\n this.reason = controls.reason.value;\n this.viewStatus = 'unsolicitedContinueConfirm';\n }else {\n if( reasonField.value == '' ) {\n this.resetForm([true,false,false,false,false,false], 'reason');\n }\n if(reasonField.value != '' && this.markPaymentUnsolicitedForm.controls.reason.invalid ) {\n this.resetForm([false,true,false,false,false,false], 'reason');\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false,false,true,false,false,false], 'reason');\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false,false,false,true,false,false], 'reason');\n }\n if(officeIdField.value == '') {\n this.resetForm([false,false,false,false,true,false], 'responsibleOffice');\n }\n if(officeIdField.value != '' && officeIdField.invalid) {\n this.resetForm([false,false,false,false,false,true],'responsibleOffice');\n }\n }\n }\n resetForm(val, field) {\n if(field==='reason' || field==='all') {\n this.isReasonEmpty = val[0];\n this.reasonHasError = val[1];\n this.reasonMinHasError = val[2];\n this.reasonMaxHasError = val[3];\n }\n if(field==='responsibleOffice' || field==='all') {\n this.isResponsibleOfficeEmpty = val[4];\n this.responsibleOfficeHasError = val[5];\n }\n }\n\ncancelMarkUnsolicitedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.checkingFormValue()){\n this.viewStatus = 'unsolicitedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.markPaymentUnsolicitedForm.controls.responsibleOffice.setValue('');\n this.viewStatus = 'mainForm';\n }\n }\n checkingFormValue(){\n const formFields = this.markPaymentUnsolicitedForm.value;\n let valueExists = false;\n\n for (var field in formFields) {\n if (formFields.hasOwnProperty(field) && formFields[field] !==\"\") {\n valueExists = true;\n break;\n }\n }\n return valueExists;\n }\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n \n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n\n getErrorMessage(isErrorExist) {\n return {\n title: \"Something went wrong.\",\n body: \"Please try again later.\",\n showError: isErrorExist\n };\n }\n\n selectchange(args){ \n this.selectedSiteId = args.target.value; \n this.selectedSiteName = args.target.options[args.target.selectedIndex].text; \n } \n\n}\n","import { Component, OnInit, Output,Input, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport {Router} from '@angular/router';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-app-unprocessed-payments',\n templateUrl: './unprocessed-payments.component.html',\n styleUrls: ['./unprocessed-payments.component.scss']\n})\nexport class UnprocessedPaymentsComponent implements OnInit {\n\n @Input('FEE_RECORDS_EXISTS') FEE_RECORDS_EXISTS: boolean;\n @Input('PAYMENTREF') PAYMENTREF: string;\n @Input('ISTURNOFF') ISTURNOFF: boolean;\n @Input('IS_BUTTON_ENABLE') IS_BUTTON_ENABLE: boolean;\n @Input('IS_OS_AMT_AVAILABLE') IS_OS_AMT_AVAILABLE: boolean;\n @Input('ISSFENABLE') ISSFENABLE: boolean;\n @Input('PAYMENTSLENGTH') PAYMENTSLENGTH:Number;\n @Input('LEVEL')LEVEL:Number;\n\n @Output() selectedUnprocessedFeeEvent: EventEmitter<string> = new EventEmitter();\n @Output() getUnprocessedFeeCount: EventEmitter<string> = new EventEmitter();\n\n viewStatus = 'main';\n unassignedRecordList: IBSPayments;\n upPaymentErrorMessage: string = null;\n ccdCaseNumber: string;\n recordId: string = null;\n isRecordExist: boolean = false;\n dcnNumber: string = null;\n selectedOption: string;\n isUnprocessedRecordSelected: boolean = true;\n isAllocateToExistingFeebtnEnabled: boolean = false;\n isMarkAsUnidentifiedbtnEnabled: boolean = false;\n isAllocatedToNewFeebtnEnabled: boolean = false;\n isExceptionCase: boolean = false;\n serviceId: string = null;\n isBulkScanEnable;\n isTurnOff: boolean = true;\n isStFixEnable;\n unassignedRecordSelectedList: IBSPayments;\n unassignedRecordListLength: number = 0;\n showContent: boolean;\n\n constructor(private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private OrderslistService: OrderslistService\n ) { }\n\n ngOnInit() {\n // Todo ...\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isStFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.getFeeExists().subscribe( (data) => this.FEE_RECORDS_EXISTS = data);\n this.getUnassignedPaymentlist();\n\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.dcnNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n }\n\n }\n\n setValuesForUnassignedRecord(unassignedPayments) {\n\n this.unassignedRecordList = unassignedPayments.payments;\n if(this.unassignedRecordList){\n this.unassignedRecordListLength = unassignedPayments.payments.length\n }\n this.serviceId = unassignedPayments.responsible_service_id;\n if (unassignedPayments['ccd_reference'] === undefined) {\n this.isExceptionCase = true;\n }\n // this.isRecordExist = this.unassignedRecordList.length === 0;\n this.getUnprocessedFeeCount.emit(<any>this.unassignedRecordList.length);\n this.unprocessedPaymentSelectEvent(this.unassignedRecordList);\n }\n\n formatUnassignedRecordId(ID: Number) {\n return `unassignrecord-${ID}`;\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n\n redirectToFeeSearchPage(event: any, dcn_reference:any) {\n event.preventDefault();\n this.recordId = dcn_reference;\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}&dcn=${this.recordId}${url}`);\n }\n\n loadUnsolicitedPage(viewName: string, dcn_reference:any) {\n this.recordId = dcn_reference;\n this.paymentLibComponent.bspaymentdcn = this.recordId;\n this.paymentLibComponent.viewName = viewName;\n }\n\n unprocessedPaymentSelectEvent(selectedRecordReference: any) {\n this.isUnprocessedRecordSelected = true;\n this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit(selectedRecordReference);\n }\n\n resetButtons() {\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n }\n\n goToAllocatePage(dcn_reference:any) {\n this.paymentLibComponent.bspaymentdcn = dcn_reference;\n this.paymentLibComponent.unProcessedPaymentServiceId = this.serviceId\n this.paymentLibComponent.isTurnOff = this.ISTURNOFF;\n this.paymentLibComponent.ISSFENABLE = this.isStFixEnable;\n\n if(this.ISTURNOFF) {\n this.paymentLibComponent.paymentGroupReference = this.PAYMENTREF;\n this.paymentLibComponent.viewName = 'fee-summary';\n }else {\n this.paymentLibComponent.paymentGroupReference = null;\n this.paymentLibComponent.viewName = 'allocate-payments';\n }\n\n }\n\n validateButtons() {\n if ( this.isUnprocessedRecordSelected && this.isExceptionCase) {\n this.isMarkAsUnidentifiedbtnEnabled = true;\n } else if ( this.isUnprocessedRecordSelected && !this.isExceptionCase && !this.FEE_RECORDS_EXISTS) {\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = true;\n } else if( this.isUnprocessedRecordSelected && !this.isExceptionCase && this.FEE_RECORDS_EXISTS ) {\n if(!this.ISTURNOFF) {\n this.isAllocateToExistingFeebtnEnabled = true;\n this.isAllocatedToNewFeebtnEnabled = false;\n } else {\n this.isAllocateToExistingFeebtnEnabled = this.IS_OS_AMT_AVAILABLE;\n this.isAllocatedToNewFeebtnEnabled = true;\n }\n }\n }\n\n unprocessedPaymentUnSelectEvent(event: any) {\n event.preventDefault();\n this.recordId = null;\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n //this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit('');\n }\n\n showDetailRow(event: any,obj: any, i: any) {\n event.preventDefault();\n\n this.unassignedRecordSelectedList = obj;\n\n }\n}\n","import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport {IPayment} from '../../interfaces/IPayment';\nimport {Router} from '@angular/router';\n\n@Component({\n selector: 'ccpay-app-processed-payments',\n templateUrl: './processed-payments.component.html',\n styleUrls: ['./processed-payments.component.scss']\n})\nexport class ProcessedPaymentsComponent implements OnInit {\n\n @Input('NONPAYMENTS') NONPAYMENTS: IPayment[];\n @Output() goToPaymentViewComponent: EventEmitter<any> = new EventEmitter();\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService\n ) { }\n ngOnInit() {\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n redirectToPaymentViewPage(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent.emit({paymentGroupReference, paymentReference, paymentMethod});\n }\n}\n","\nexport class IAllocationPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n reason: string;\n explanation: string;\n user_name: string;\n constructor(payment_group_reference: string, payment_reference : string, reason? : string, explanation? : string, userName? : string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Allocated\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.reason = reason ? reason : null;\n this.explanation = explanation ? explanation : null;\n this.user_name = userName ? userName : null;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {CaseTransactionsService} from '../../services/case-transactions/case-transactions.service'; \nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport {IBSPayments} from '../../interfaces/IBSPayments';\nimport {AllocatePaymentRequest} from '../../interfaces/AllocatePaymentRequest';\nimport {IAllocationPaymentsRequest} from '../../interfaces/IAllocationPaymentsRequest';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n\n\n@Component({\n selector: 'app-allocate-payments',\n templateUrl: './allocate-payments.component.html',\n styleUrls: ['./allocate-payments.component.scss']\n})\nexport class AllocatePaymentsComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() caseType: string;\n\n overUnderPaymentForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n recordId:string;\n feedbackUrlLabel:string;\n unAllocatedPayment: IBSPayments = {\n amount: 0\n };\n siteID: string = null;\n errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n paymentGroup: IPaymentGroup;\n paymentGroups: IPaymentGroup[] = [];\t\n remainingAmount: number;\n isRemainingAmountGtZero: boolean;\n isMoreDetailsBoxHide: boolean = true;\n isRemainingAmountLtZero: boolean;\n afterFeeAllocateOutstanding: number;\n amountForAllocation: number;\n isConfirmButtondisabled: boolean = false;\n isContinueButtondisabled: boolean = true;\n otherPaymentExplanation: string = null;\n selectedOption: string = null;\n isFeeAmountZero: boolean = false;\t\n\n paymentReasonHasError: boolean = false;\n paymentExplanationHasError: boolean = false;\n isPaymentDetailsEmpty: boolean = false;\n isPaymentDetailsInvalid: boolean = false;\n paymentDetailsMinHasError: boolean = false;\n paymentDetailsMaxHasError: boolean = false;\n isUserNameEmpty: boolean = false;\n isUserNameInvalid: boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n paymentReason: string = null;\n paymentExplanation: string = null;\n userName: string = null;\n paymentSectionLabel: any;\n paymentRef: string = null;\n isStrategicFixEnable: boolean = true;\n orderLevelFees: IOrderReferenceFee[] = [];\n cookieUserName: string[] = [];\n enCookieUserName: any;\n userNameField: string = null;\n\n reasonList: { [key: string]: { [key: string]: string } }= {\n overPayment: {\n hwfReward: 'Help with Fees (HWF) awarded. Please include the HWF reference number in the explanatory note',\n wrongFee: 'Incorrect payment received',\n notIssueCase: 'Unable to issue case',\n otherDeduction: 'Other'\n },\n shortFall: {\n helpWithFee: 'Help with Fees (HWF) application declined',\n wrongFee: 'Incorrect payment received',\n other: 'Other'\n }\n }\n explanationList = {\n overPayment: {\n referRefund: 'Details in case notes. Refund due',\n noRefund: 'Details in case notes. No refund due',\n noCase: 'No case created. Refund due',\n other: 'Other'\n },\n shortFall: {\n holdCase: 'I have put a stop on the case and contacted the applicant requesting the balance of payment',\n heldCase: 'I have put a stop on the case. The applicant needs to be contacted to request the balance of payment',\n other: 'Other'\n }\n }\n\n refund = {\n reason: {\n duplicate: 'Duplicate payment',\n humanerror: 'Human error',\n caseWithdrawn: 'Case withdrawn',\n other: 'Other'\n }\n }\n\n\n constructor(\n private errorHandlerService: ErrorHandlerService,\n private caseTransactionsService: CaseTransactionsService,\n private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n if (this.paymentLibComponent.paymentGroupReference !== null) {\n this.viewStatus = 'allocatePaymentConfirmation';\n }\n \n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.paymentRef = this.paymentLibComponent.paymentGroupReference;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.isTurnOff = this.paymentLibComponent.isTurnOff;\n this.overUnderPaymentForm = this.formBuilder.group({\n moreDetails: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n userName: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s]*)$')\n ])),\n });\n this.OrderslistService.getOrdersList().subscribe( (data) =>\n this.orderLevelFees = data.filter(data => data.orderStatus !== 'Paid'));\n this.OrderslistService.getCaseType().subscribe( (data) => this.caseType = data);\n this.getUnassignedPayment();\n }\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n }\n\n getPaymentGroupDetails(){\n\n if(!this.isTurnOff){\n this.paymentViewService.getPaymentGroupDetails(this.paymentRef).subscribe(\n paymentGroup => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.paymentGroup = paymentGroup;\n this.saveAndContinue();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.paymentGroups = paymentGroups['payment_groups'].filter(paymentGroup => {\n paymentGroup.fees.forEach(fee => {\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true\n }\n });\n let fstCon = this.getGroupOutstandingAmount(<IPaymentGroup>paymentGroup),\n scndCn = fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero) && paymentGroup.payment_group_reference === this.paymentRef;\n return this.paymentRef ? scndCn : fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero);\n });\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }\n\n }\n\n selectedPaymentGroup(paymentGroup: IPaymentGroup) {\t\n this.isContinueButtondisabled = false;\t\n this.paymentGroup = paymentGroup;\t\n }\t\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n\n gotoSummaryPage(event: any) { \n event.preventDefault();\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n\n cancelAllocatePayment(event: any){\n event.preventDefault();\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n if(!this.isTurnOff){\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n } else {\n this.viewStatus = 'mainForm';\t\n }\n }\n confirmAllocatePayement(){\n this.enCookieUserName = document.cookie.split(\";\").find(row => row.includes(\"user-info\")).split(\"=\")[1].split(\";\");\n this.cookieUserName = JSON.parse(decodeURIComponent(this.enCookieUserName));\n \n const fullName = this.cookieUserName['forename'] + ' ' + this.cookieUserName['surname'];\n\n const paymentDetailsField = this.overUnderPaymentForm.controls.moreDetails,\n paymentFormError = this.overUnderPaymentForm.controls.moreDetails.errors,\n userNameField = fullName,\n isEmptyCondtion = this.paymentReason && this.paymentExplanation,\n isOtherOptionSelected = this.paymentExplanation === 'Other';\n\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n if ( (!this.isRemainingAmountGtZero && !this.isRemainingAmountLtZero) || isEmptyCondtion && (!isOtherOptionSelected && userNameField.length > 0 || isOtherOptionSelected && userNameField.length > 0 && paymentDetailsField.valid)) {\n this.isConfirmButtondisabled = true;\n this.otherPaymentExplanation = this.paymentExplanation === 'Other' ? paymentDetailsField.value : this.paymentExplanation;\n this.userName = userNameField;\n this.finalServiceCall();\n }else {\n if(!this.paymentReason) {\n this.resetForm([true, false, false, false, false, false, false, false], 'reason');\n }\n if(!this.paymentExplanation) {\n this.resetForm([false, true, false, false, false, false, false, false], 'explanation');\n }\n if(this.paymentExplanation && isOtherOptionSelected) {\n if(paymentDetailsField.value == '' ) {\n this.resetForm([false, false, true, false, false, false, false, false], 'other');\n }\n if(paymentDetailsField.value != '' && paymentDetailsField.invalid ) {\n this.resetForm([false, false, false, true, false, false, false, false], 'other');\n }\n if(paymentFormError && paymentFormError.minlength && paymentFormError.minlength.actualLength < 3 ) {\n this.resetForm([false, false, false, false, true, false, false, false], 'other');\n }\n if(paymentFormError && paymentFormError.maxlength && paymentFormError.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, false, false, true, false, false], 'other');\n }\n }\n if(userNameField.length === 0) {\n this.resetForm([false, false, false, false, false, false, true, false], 'username');\n }\n }\n }\n resetForm(vals, field) {\n if(field==='reason' || field==='all') {\n this.paymentReasonHasError = vals[0];\n }\n if(field==='explanation' || field==='all') {\n this.paymentExplanationHasError = vals[1];\n }\n if(field==='other' || field==='all') {\n this.isPaymentDetailsEmpty = vals[2];\n this.isPaymentDetailsInvalid = vals[3];\n this.paymentDetailsMinHasError = vals[4];\n this.paymentDetailsMaxHasError = vals[5];\n }\n if(field==='username' || field==='all') {\n this.isUserNameEmpty = vals[6];\n this.isUserNameInvalid = vals[7];\n }\n }\n finalServiceCall() {\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n reason: this.paymentReason,\n allocation_status:'Allocated',\n explanation: this.otherPaymentExplanation,\n payment_allocation_status: {\n description: '',\n name: 'Allocated'\n },\n payment_group_reference: this.paymentGroup.payment_group_reference,\n case_type: this.caseType,\n user_name: this.userName\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unAllocatedPayment, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSPaymentStrategic(postStrategicBody , this.paymentGroup.payment_group_reference).subscribe(\n res => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n });\n\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response1 = JSON.parse(res1);\n if (response1.success) {\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unAllocatedPayment, this.siteID, this.exceptionReference);\n this.bulkScaningPaymentService.postBSAllocatePayment(requestBody, this.paymentGroup.payment_group_reference).subscribe(\n res2 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response2 = JSON.parse(res2);\n const reqBody = new IAllocationPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, this.paymentReason, this.otherPaymentExplanation, this.userName);\n if (response2.success) {\n this.paymentViewService.postBSAllocationPayments(reqBody).subscribe(\n \n res3 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n ); \n }\n }\n\n saveAndContinue(){\n if(this.paymentGroup) {\n this.isMoreDetailsBoxHide = true;\n this.overUnderPaymentForm.get('moreDetails').reset();\n this.overUnderPaymentForm.get('moreDetails').setValue('');\n this.overUnderPaymentForm.get('userName').reset();\n this.overUnderPaymentForm.get('userName').setValue('');\n this.paymentReason = '';\n this.paymentExplanation = '';\n let GroupOutstandingAmount = this.getGroupOutstandingAmount(this.paymentGroup);\n const remainingToBeAssigned = this.unAllocatedPayment.amount - GroupOutstandingAmount;\n this.isRemainingAmountGtZero = remainingToBeAssigned > 0;\n this.isRemainingAmountLtZero = remainingToBeAssigned < 0;\n this.paymentSectionLabel = this.isRemainingAmountGtZero ? { \n title: 'There is an Over payment of',\n reason: 'Provide a reason. This will be used in the Refund process.',\n }: this.isRemainingAmountLtZero ? { \n title: 'There is an Under payment of',\n reason: 'Provide a reason',\n }: { \n title:'Amount left to be allocated',\n reason:'',\n };\n this.feedbackUrlLabel = this.isRemainingAmountGtZero ? 'CONFIRMALLOCATION_SURPLUS' : this.isRemainingAmountLtZero ? 'CONFIRMALLOCATION_SHORTFALL' : 'CONFIRMALLOCATION';\n this.remainingAmount = this.isRemainingAmountGtZero ? remainingToBeAssigned : this.isRemainingAmountLtZero ? remainingToBeAssigned * -1 : 0;\n this.afterFeeAllocateOutstanding = remainingToBeAssigned >= 0 ? 0 : (remainingToBeAssigned * -1);\n this.amountForAllocation = GroupOutstandingAmount >= this.unAllocatedPayment.amount ? this.unAllocatedPayment.amount : GroupOutstandingAmount;\n if(this.isTurnOff){\n this.viewStatus = 'allocatePaymentConfirmation';\t\n }\n }\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.unAllocatedPayment = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n this.getPaymentGroupDetails();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }\n selectRadioButton(key, type) {\n this.isMoreDetailsBoxHide = true;\n if( type === 'explanation' && key === 'other' ){\n this.isPaymentDetailsEmpty = false;\n this.isPaymentDetailsInvalid = false;\n this.paymentDetailsMinHasError = false;\n this.paymentDetailsMaxHasError = false;\n this.isMoreDetailsBoxHide = false;\n }\n }\n OrderListSelectEvent(orderef: any){\n this.isContinueButtondisabled = false;\n this.recordId= orderef;\n }\n\n redirectToOrderFeeSearchPage() {\n // this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = this.recordId;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n}\n}\n","import { IFee } from './IFee';\n\nexport class AddRemissionRequest {\n beneficiary_name: string;\n ccd_case_number: string;\n fee: IFee;\n hwf_amount: number;\n hwf_reference: string;\n payment_group_reference: string;\n case_type: string;\n\n constructor(ccd_case_number: string, fee: IFee, hwf_amount: number, hwf_reference: string, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.fee = fee;\n this.hwf_amount = hwf_amount;\n this.hwf_reference = hwf_reference;\n this.case_type = caseType;\n }\n}\n","export class AddRetroRemissionRequest {\n hwf_amount: number;\n hwf_reference: string;\n\n constructor(hwf_amount: number, hwf_reference: string) {\n this.hwf_amount = hwf_amount;\n this.hwf_reference = hwf_reference;\n }\n}\n","import { IRefundContactDetails } from './IRefundContactDetails';\n\nexport class PostIssueRefundRetroRemission {\n remissionReference: string;\n contact_details: IRefundContactDetails;\n\n constructor(remissionReference : string, contactDeatils: any) {\n this.remissionReference= remissionReference;\n this.contact_details = contactDeatils;\n } \n}","import { Component, OnInit, Input, Output, EventEmitter} from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl, RequiredValidator, FormArray } from '@angular/forms';\nimport { IFee } from '../../interfaces/IFee';\nimport {Router} from '@angular/router';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\n\nimport { IPayment } from '../../interfaces/IPayment';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';\nimport { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\nimport { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';\nimport {ChangeDetectorRef} from '@angular/core';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\nconst resolvedPromise = Promise.resolve(null);\n\n@Component({\n selector: 'ccpay-add-remission',\n templateUrl: './add-remission.component.html',\n styleUrls: ['./add-remission.component.scss']\n})\nexport class AddRemissionComponent implements OnInit {\n @Input() fee: IFee;\n @Input() fees: any [];\n @Input() payment: IPayment;\n @Input() remission: IRemission;\n @Input() ccdCaseNumber: string;\n @Input() caseType: string;\n @Input() viewCompStatus: string;\n @Input() paymentGroupRef: string;\n @Input() isTurnOff: boolean;\n @Input() isRefundRemission: boolean;\n @Input() isStrategicFixEnable: boolean;\n @Input() paidAmount: any;\n @Input() isFromRefundListPage: boolean;\n @Input() isFromPaymentDetailPage: boolean;\n @Input() isFromServiceRequestPage: boolean;\n @Input('isFullyRefund') isFullyRefund: boolean;\n @Input() feeamount: number;\n @Input() refundPaymentReference: string;\n @Input() isFromRefundStatusPage: boolean;\n @Input() changeRefundReason: string;\n @Input(\"isServiceRequest\") isServiceRequest: string;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input('orderDetail') orderDetail: any[];\n @Input('orderRef') orderRef: string;\n @Input('orderStatus') orderStatus: string;\n @Input('orderParty') orderParty: string;\n @Input('orderCreated') orderCreated: Date;\n @Input('orderCCDEvent') orderCCDEvent: string;\n @Input('takepayment') takePayment: boolean;\n @Input('orderFeesTotal') orderFeesTotal: number;\n @Input('orderTotalPayments') orderTotalPayments: number;\n @Input('orderRemissionTotal') orderRemissionTotal: number;\n @Output() cancelRemission: EventEmitter<void> = new EventEmitter();\n //@Output() refundListReason: EventEmitter<any> = new EventEmitter({reason:string, code:string});\n @Output() refundListReason = new EventEmitter<{reason: string, code: string}>();\n @Output() refundListAmount: EventEmitter<string> = new EventEmitter();\n @Output() refundFees: EventEmitter<IFee[]> = new EventEmitter<IFee[]>();\n refund = {\n reason: {\n duplicate: 'Duplicate payment',\n humanerror: 'Human error',\n caseWithdrawn: 'Case withdrawn',\n other: 'Other'\n }\n }\n contactDetailsObj: IRefundContactDetails;\n notification: any;\n remissionForm: FormGroup;\n hasErrors = false;\n viewStatus = 'main';\n errorMessage = null;\n option: string = null;\n isConfirmationBtnDisabled: boolean = false;\n bsPaymentDcnNumber: string;\n selectedValue = 'yes';\n amount: any;\n retroRemission: boolean = false;\n remissionReference: string = '';\n refundReference: string;\n refundAmount: string;\n paymentExplanationHasError: boolean = false;\n refundReason:string;\n selectedRefundReason: string;\n displayRefundReason: string;\n refundCode:string;\n remessionPayment:IPayment;\n isRemissionCodeEmpty: boolean = false;\n remissionCodeHasError: boolean = false;\n isAmountEmpty: boolean = false;\n isReasonEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n refundHasError:boolean = false;\n isPaymentSuccess: boolean = false;\n isRemissionApplied: boolean = false;\n remissionamt:number;\n elementId:any;\n // refundReasons: any[] = [];\n commonRefundReasons: any[] = [];\n showReasonText: boolean;\n isRefundReasonsSelected: boolean;\n default: string;\n reasonLength: number;\n refundReasons:IRefundReasons[];\n pattern1: string;\n pattern2: string;\n sendOrderDetail: any[];\n sendOrderRef: string;\n paymentReference : string;\n class='';\n errorMsg = new Array();\n totalRefundAmount: number;\n quantityUpdated: number;\n fullRefund: boolean;\n allowedRefundAmount: number;\n isRemissionsMatch: boolean;\n paymentFees: IFee[];\n paymentGroup: IPaymentGroup;\n isStatusAllocated: boolean;\n isFromCheckAnsPage: boolean;\n refundAmtForFeeVolumes: number;\n \n component: { account_number: string; amount: number; case_reference: string; ccd_case_number: string; channel: string; currency: string; customer_reference: string; date_created: string; date_updated: string; description: string; method: string; organisation_name: string; payment_allocation: any[]; reference: string; service_name: string; site_id: string; status: string; };\n\n constructor(private formBuilder: FormBuilder,\n private router: Router,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private refundService: RefundsService,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.errorMessage = '';\n this.errorMsg = [];\n this.default = 'Select a different reason';\n this.pattern1 = '^([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})$';\n this.pattern2 = '^([A-Za-z]{2}[0-9]{2})-([0-9]{6})$';\n if(this.viewCompStatus !== '' && this.viewCompStatus !== undefined){\n this.viewStatus = '';\n }\n if(this.remission) {\n }\n if(this.fee) {\n this.amount = (this.fee.volume * this.fee.calculated_amount);\n }\n \n if (this.payment){\n this.paymentReference = this.payment.reference;\n this.remessionPayment = this.payment;\n if(this.payment.status === 'Success') {\n this.isPaymentSuccess = true;\n }\n }\n this.option = this.paymentLibComponent.SELECTED_OPTION;\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.remissionForm = this.formBuilder.group({\n remissionCode: new FormControl('',\n Validators.compose([\n Validators.required,\n Validators.pattern(`(${this.pattern1})|(${this.pattern2})`)\n ])\n ),\n amount: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[0-9]+(\\.[0-9]{1,2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n refundDDReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl(),\n feeAmount: new FormControl(),\n feesList: this.formBuilder.array([])\n });\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundDDReason'].setValue('Select a different reason', {onlySelf: true});\n if(this.refundPaymentReference !== undefined && this.refundPaymentReference.length >0) {\n this.paymentReference = this.refundPaymentReference\n } else {\n this.paymentReference = this.payment.reference;\n }\n \n\n if(this.isFromServiceRequestPage) {\n this.paymentViewService.getApportionPaymentDetails(this.paymentReference).subscribe(\n paymentGroup => {\n let fees = [];\n paymentGroup.fees.forEach(fee => {\n this.isRemissionsMatch = false;\n \n paymentGroup.remissions.forEach(rem => {\n if (rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n if (!this.isRemissionsMatch) {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees\n this.paymentFees =fees;\n this.fees = fees;\n this.paymentGroup = paymentGroup;\n \n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n this.refundFeesList();\n },\n (error: any) => this.errorMessage = error\n );\n }\n\n \n if (this.fees && this.viewCompStatus === 'issuerefund') {\n this.refundFeesList();\n }\n\n if(this.viewCompStatus === ''){\n this.viewStatus = 'main';\n }\n \n if(this.viewCompStatus === 'issuerefundpage1'){\n this.refundService.getRefundReasons().subscribe(\n refundReasons => {\n this.refundReasons = refundReasons.filter((data) => data.recently_used === false);\n this.refundReasons = this.refundReasons.filter((data) => data.name !== 'Retrospective remission' && data.name !== 'Overpayment');\n this.cd.detectChanges();\n this.commonRefundReasons = refundReasons.filter((data) => data.recently_used === true);\n this.commonRefundReasons.sort((a, b) => a.toString().localeCompare(b));\n this.cd.detectChanges();\n } );\n this.refundReason = this.changeRefundReason;\n }\n\n if(this.viewCompStatus === 'processretroremissonpage' && this.isFromRefundListPage){\n this.viewStatus = 'processretroremissonpage';\n }\n if(this.orderDetail !== undefined){\n this.paymentViewService.getApportionPaymentDetails(this.orderDetail[0].payments[0].reference).subscribe(\n paymentGroup => {\n this.fees = paymentGroup.fees;\n this.paymentReference = paymentGroup.payments[0].reference;\n },\n (error: any) => this.errorMessage = error\n );\n }\n\n }\n goToPaymentViewComponent() {\n this.paymentLibComponent.paymentMethod = this.payment.method;\n this.paymentLibComponent.paymentGroupReference = this.paymentGroupRef;\n this.paymentLibComponent.paymentReference = this.paymentReference;\n //this.PaymentViewComponent.viewCompStatus = 'overpayment';\n this.paymentLibComponent.viewName = 'payment-view';\n }\n refundFeesList() {\n const creds = this.remissionForm.controls.feesList as FormArray;\n // if(creds.controls.length > 0) {\n for(var i=0;i<this.fees.length;i++) {\n creds.push(this.formBuilder.group({\n id: this.fees[i].id,\n code: this.fees[i].code,\n volume: this.fees[i].volume,\n calculated_amount: this.fees[i].calculated_amount,\n apportion_amount: this.fees[i].apportion_amount,\n ccd_case_number: this.fees[i].ccd_case_number,\n description: this.fees[i].description,\n net_amount: this.fees[i].net_amount,\n version: this.fees[i].version,\n refund_amount : [''],\n selected:[''] ,\n updated_volume: this.fees[i].volume\n }));\n }\n this.cd.detectChanges();\n //}\n }\n\n get feesList()\n {\n const dd =this.remissionForm.get('feesList') as FormArray ;\n return this.remissionForm.get('feesList') as FormArray;\n }\n\n noneSelected(){\n if(this.isFullyRefund) {\n return false;\n } else {\n if(!this.feesList.controls.some(item => item.get('selected').value === true)) {\n this.errorMsg = [];\n [].forEach.call(document.querySelectorAll('input'), function (el) {\n el.classList.remove('inline-error-class');\n });\n }\n return !this.feesList.controls.some(item => item.get('selected').value === true);\n }\n }\n \n check_en (i,v1: any, AppAmt,Volume) {\n const ele = document.getElementById(v1) as HTMLInputElement;\n const formArray = this.remissionForm.controls.feesList as FormArray;\n \n if(ele.checked){\n formArray.at(i).get('refund_amount').setValue(AppAmt);\n formArray.at(i).get('volume').setValue(Volume);\n formArray.at(i).get('selected').setValue(true);\n formArray.at(i).get('updated_volume').setValue(Volume);\n (<HTMLInputElement>document.getElementById('feeAmount_'+v1)).value = AppAmt;\n document.getElementById('feeAmount_'+v1).removeAttribute(\"disabled\"); \n if(Volume === 1) {\n (<HTMLInputElement>document.getElementById('VolumeUpdated_'+v1)).value = Volume;\n } else {\n (<HTMLInputElement>document.getElementById('feeVolumeUpdated_'+v1)).value = Volume;\n }\n \n if (document.getElementById('feeVolumeUpdated_'+v1) !== null) {\n document.getElementById('feeAmount_'+v1).removeAttribute(\"disabled\"); \n document.getElementById('feeVolumeUpdated_'+v1).removeAttribute(\"disabled\"); \n } \n this.cd.detectChanges(); \n } else {\n this.errorMsg = []; \n document.getElementById('feeAmount_'+v1).setAttribute(\"disabled\", \"true\"); \n this.remissionForm.value.feesList[i][\"refund_amount\"] = ''; \n this.remissionForm.value.feesList[i][\"volume\"] = ''; \n this.remissionForm.value.feesList[i][\"selected\"] = false; \n (<HTMLInputElement>document.getElementById('feeAmount_'+v1)).value = '';\n if(Volume>1) {\n this.remissionForm.value.feesList[i][\"volume\"] = ''; \n (<HTMLInputElement>document.getElementById('feeVolumeUpdated_'+v1)).value = '';\n }\n \n if (document.getElementById('feeVolumeUpdated_'+v1) !== null) {\n document.getElementById('feeVolumeUpdated_'+v1).removeAttribute(\"disabled\"); \n }\n this.cd.detectChanges();\n } \n }\n\n\n addRemission() {\n this.resetRemissionForm([false, false, false, false, false, false], 'All');\n const remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount > remissionctrls.amount.value;\n this.remissionForm.controls['refundReason'].setErrors(null);\n this.remissionForm.controls['refundDDReason'].setErrors(null);\n if (this.remissionForm.dirty && this.remissionForm.valid && isRemissionLessThanFee) {\n this.viewStatus = 'confirmation';\n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false, false], 'amount');\n }\n if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true, false], 'amount');\n }\n }\n }\n\n confirmRemission() {\n this.isConfirmationBtnDisabled = true;\n const newNetAmount = this.remissionForm.controls.amount.value,\n remissionAmount = this.fee.net_amount - newNetAmount,\n requestBody = new AddRemissionRequest\n (this.ccdCaseNumber, this.fee, remissionAmount, this.remissionForm.controls.remissionCode.value, this.caseType);\n this.paymentViewService.postPaymentGroupWithRemissions(decodeURIComponent(this.paymentGroupRef).trim(), this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response).success) {\n let LDUrl = this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable'\n LDUrl += `&caseType=${this.caseType}`\n if (this.paymentLibComponent.bspaymentdcn) {\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(`/payment-history/${this.ccdCaseNumber}?view=fee-summary&selectedOption=${this.option}&paymentGroupRef=${this.paymentGroupRef}&dcn=${this.paymentLibComponent.bspaymentdcn}${LDUrl}`);\n }else {\n this.gotoCasetransationPage();\n }\n\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n }\n );\n }\n\n resetRemissionForm(val, field){\n if (field==='All'){\n this.isRemissionCodeEmpty = val[0];\n this.remissionCodeHasError = val[1];\n this.isAmountEmpty = val[2];\n this.amountHasError = val[3];\n this.isRemissionLessThanFeeError = val[4];\n this.isReasonEmpty = val[5];\n } else if(field==='remissionCode' || field==='All') {\n this.isRemissionCodeEmpty = val[0];\n this.remissionCodeHasError = val[1];\n } else if (field==='amount' || field==='All'){\n this.isAmountEmpty = val[2];\n this.amountHasError = val[3];\n this.isRemissionLessThanFeeError = val[4];\n } else if (field==='reason' || field==='All'){\n this.isReasonEmpty = val[5];\n }\n }\n\n // Add retro remission changes\n addRemissionCode() {\n this.errorMessage = false;\n // this.isFromCheckAnsPage = true;\n this.errorMsg = [];\n this.viewStatus = '';\n this.isRefundRemission = false;\n this.resetRemissionForm([false, false, false, false, false, false], 'All');\n const remissionctrls=this.remissionForm.controls\n // isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value;\n this.remissionForm.controls['refundReason'].setErrors(null);\n this.remissionForm.controls['refundDDReason'].setErrors(null);\n this.remissionForm.controls['amount'].setErrors(null);\n if (this.remissionForm.dirty && this.remissionForm.valid ) {\n if (!this.isFromCheckAnsPage) {\n this.viewCompStatus = '';\n this.viewStatus = \"processretroremissonpage\";\n } else {\n this.viewCompStatus = '';\n this.viewStatus = 'checkretroremissionpage';\n }\n \n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false], 'amount');\n }\n if(remissionctrls['reason'].value == '') {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n }\n if(remissionctrls.amount.valid){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n }\n\n }\n }\n\n\n gotoAddRetroRemissionCodePage() {\n this.errorMessage = false;\n this.isFromCheckAnsPage = false;\n this.errorMsg = [];\n if(this.isRefundRemission) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListAmount.emit();\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n }\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n }\n this.viewStatus = '';\n this.selectedValue = 'yes';\n this.viewCompStatus = \"addremission\";\n this.isRefundRemission = true;\n this.errorMessage = '';\n this.errorMsg = [];\n if(this.isFromPaymentDetailPage) {\n this.paymentLibComponent.viewName = 'payment-view';\n }\n }\n\n gotoCheckRetroRemissionPage(payment: IPayment) {\n this.paymentLibComponent.iscancelClicked = false;\n this.errorMessage = '';\n this.resetRemissionForm([false, false, false, false, false], 'All');\n if( !this.isRefundRemission) {\n var remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value;\n if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' || remissionctrls['amount'].value < 0) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, false, false, true, false], 'amount');\n } else if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n }\n }\n } else {\n var remissionctrls=this.remissionForm.controls;\n //if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' || remissionctrls['amount'].value < 0 ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n this.refundListAmount.emit(remissionctrls['amount'].value);\n }\n //}\n\n }\n }\n gotoAmountRetroRemission() {\n this.isFromCheckAnsPage = false;\n this.viewStatus = 'processretroremissonpage';\n this.viewCompStatus = '';\n // this.isRefundRemission = true;\n this.errorMessage = '';\n }\n gotoProcessRetroRemissionPage() {\n this.isFromCheckAnsPage = true;\n this.viewStatus = '';\n this.viewCompStatus = 'addremission';\n this.isRefundRemission = true;\n this.errorMessage = '';\n this.errorMsg = [];\n }\n\n gotoProcessRetroRemission(note?: IRefundContactDetails) {\n if(note) {\n this.notification = { contact_details: note, notification_type: note.notification_type };\n }\n this.isFromCheckAnsPage = true;\n this.viewStatus = 'remissionAddressPage';\n this.viewCompStatus = '';\n this.isRefundRemission = true;\n this.errorMessage = '';\n }\n\n confirmRetroRemission() {\n if(!this.isConfirmationBtnDisabled) {\n this.retroRemission = true;\n this.remissionamt = this.remissionForm.controls.amount.value;\n const requestBody = new AddRetroRemissionRequest(this.remissionamt,this.remissionForm.controls.remissionCode.value )\n this.paymentViewService.postPaymentGroupWithRetroRemissions(decodeURIComponent(this.paymentGroupRef).trim(), this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.isRemissionApplied = true;\n this.viewCompStatus = '';\n this.viewStatus = 'retroremissionconfirmationpage';\n this.remissionReference =JSON.parse(response).remission_reference;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n }\n );\n }\n }\n\n processRefund() {\n this.errorMessage = '';\n this.errorMsg = [];\n this.isConfirmationBtnDisabled = true;\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n if (this.remissionReference === undefined || this.remissionReference === '') {\n this.remissionReference = this.remission.remission_reference;\n }\n const requestBody = new PostIssueRefundRetroRemission(this.remissionReference, this.contactDetailsObj);\n this.paymentViewService.postRefundRetroRemission(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n })\n }\n\n // Issue Refund changes\n\n gotoIssueRefundConfirmation(payment: IPayment) {\n \n this.paymentLibComponent.iscancelClicked = false;\n if(this.paymentLibComponent.REFUNDLIST === \"true\") {\n this.isFromRefundListPage = true;\n }\n\n this.totalRefundAmount = this.remissionForm.value.feesList.reduce((a, c) => a + c.refund_amount * c.selected, 0);\n\n\n this.errorMessage = '';\n this.errorMsg = [];\n this.refundReason = this.remissionForm.controls['refundReason'].value === null ? this.remissionForm.controls['refundDDReason'].value : this.remissionForm.controls['refundReason'].value;\n if(!this.refundReason || this.refundReason === 'Select a different reason') {\n this.refundHasError = true;\n } else if(this.selectedRefundReason.includes('Other') && (this.remissionForm.controls['reason'].value == '' || this.remissionForm.controls['reason'].value == null)) {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n } else if (this.selectedRefundReason.includes('Other') && this.remissionForm.controls['reason'].value !== '') {\n this.refundHasError = false;\n this.refundReason += '-' + this.remissionForm.controls['reason'].value;\n this.displayRefundReason = this.selectedRefundReason + '-' + this.remissionForm.controls['reason'].value;\n if ( this.isFromRefundListPage ) {\n this.refundListReason.emit({reason: this.displayRefundReason, code: this.refundReason});\n } else {\n if(this.isFromCheckAnsPage) {\n this.totalRefundAmount = this.remissionForm.value.feesList.reduce((a, c) => a + c.refund_amount * c.selected, 0);\n this.isFromCheckAnsPage = false;\n this.viewStatus = 'checkissuerefundpage';\n this.viewCompStatus = '';\n return;\n }\n this.viewCompStatus = '';\n this.viewStatus = 'contactDetailsPage';\n }\n\n } else {\n this.displayRefundReason = this.selectedRefundReason;\n if(this.isFromCheckAnsPage) {\n this.totalRefundAmount = this.remissionForm.value.feesList.reduce((a, c) => a + c.refund_amount * c.selected, 0);\n this.isFromCheckAnsPage = false;\n this.viewStatus = 'checkissuerefundpage';\n this.viewCompStatus = '';\n return;\n }\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n } else {\n this.viewCompStatus = '';\n this.viewStatus = 'contactDetailsPage';\n }\n\n }\n }\n\n gotoIssueRefundPage() {\n this.errorMessage = '';\n this.viewCompStatus = 'issuerefund';\n this.viewStatus = '';\n this.isRefundRemission = true;\n this.errorMessage = false;\n this.errorMsg = [];\n this.refundHasError = false;\n this.isReasonEmpty = false;\n }\n\n gotoIssuePage(isFullyRefund: any){\nif(isFullyRefund) {\n this.viewCompStatus = 'issuerefundpage1';\n this.getRefundReasons();\n} else {\n [].forEach.call(document.querySelectorAll('input'), function (el) {\n el.classList.remove('inline-error-class');\n });\n\n\t var checkboxs = document.getElementsByTagName('input');\n\t this.errorMessage = '';\n this.totalRefundAmount = 0;\n this.errorMsg = []; \n\t\t\tfor (var j=0;j<checkboxs.length;j++)\n\t\t\t{\n\t\t\t\tif(checkboxs[j].checked)\n\t\t\t\t{\n\t\t\t\t\tthis.fullRefund = false;\n\t\t\t\t\tlet quantity: number = +(<HTMLInputElement>document.getElementById('feeVolume_'+checkboxs[j].value)).value;\n let amountToRefund: number = +(<HTMLInputElement>document.getElementById('feeAmount_'+checkboxs[j].value)).value;\n\t\t\t\t\tlet apportionAmount: number = +(<HTMLInputElement>document.getElementById('feeApportionAmount_'+checkboxs[j].value)).value;\n\t\t\t\t\tlet calculatedAmount: number = +(<HTMLInputElement>document.getElementById('calculatedAmount_'+checkboxs[j].value)).value; \n \n if( amountToRefund === apportionAmount) {\n this.fullRefund = true;\n }\n\n if(amountToRefund === 0){\n this.elementId = 'feeAmount_'+checkboxs[j].value;\n this.errorMsg.push('You need to enter a refund amount');\n this.getErrorClass(this.elementId);\n\t\t\t\t\t}\n\n \n\n if (quantity === 1)\n {\n if(amountToRefund > 0 && amountToRefund > apportionAmount){\n this.elementId = 'feeAmount_'+checkboxs[j].value;\n this.errorMsg.push('The amount you want to refund is more than the amount paid');\n this.getErrorClass(this.elementId);\n }\n } \n\n\t\t\t\t\tif(quantity > 1) {\n\n\t\t\t\t\t\tthis.quantityUpdated = +(<HTMLInputElement>document.getElementById('feeVolumeUpdated_'+checkboxs[j].value)).value;\n\n if(this.quantityUpdated === 0){\n this.elementId = 'feeVolumeUpdated_'+checkboxs[j].value;\n this.errorMsg.push('You need to enter quantity')\n this.getErrorClass(this.elementId);\n }\n\n if (this.fullRefund && quantity !== this.quantityUpdated) {\n this.elementId = 'feeVolumeUpdated_'+checkboxs[j].value;\n this.errorMsg.push('The quantity you want to refund should be maximun available quantity');\n this.getErrorClass(this.elementId);\n }\n\n if (!this.fullRefund && this.quantityUpdated > 0 && amountToRefund > 0) {\n this.refundAmtForFeeVolumes = +(<HTMLInputElement>document.getElementById('feeVOl_'+checkboxs[j].value)).innerText;\n this.allowedRefundAmount = this.quantityUpdated * this.refundAmtForFeeVolumes;\n if( this.allowedRefundAmount !== amountToRefund) \n {\n this.elementId = 'feeAmount_'+checkboxs[j].value;\n this.errorMsg.push('The Amount to Refund should be equal to the product of Fee Amount and quantity');\n this.getErrorClass(this.elementId);\n }\n }\n\n if(!this.fullRefund && amountToRefund > apportionAmount)\n {\n this.elementId = 'feeAmount_'+checkboxs[j].value;\n this.errorMsg.push('The amount you want to refund is more than the amount paid');\n this.getErrorClass(this.elementId);\n }\n\t\n if( !this.fullRefund && this.quantityUpdated >0 && this.quantityUpdated > quantity){\n this.elementId = 'feeVolumeUpdated_'+checkboxs[j].value;\n this.errorMsg.push('The quantity you want to refund is more than the available quantity');\n this.getErrorClass(this.elementId);\n }\n }\n //this.remissionForm.value.feesList.find(id=>id=checkboxs[j].value)['refund_amount'] = apportionAmount;\n\t\t\t\t}\n\t\t\t}\n\n if(this.errorMsg.length === 0) {\n if (this.isFromCheckAnsPage) {\n this.isFromCheckAnsPage = false;\n this.totalRefundAmount = this.remissionForm.value.feesList.reduce((a, c) => a + c.refund_amount * c.selected, 0);\n this.fees = this.remissionForm.value.feesList.filter(value => value.selected===true);\n this.viewStatus = 'checkissuerefundpage'\n this.viewCompStatus = '';\n return;\n } else if (this.isFromRefundStatusPage){\n var remissionctrls=this.remissionForm.controls;\n this.totalRefundAmount = this.remissionForm.value.feesList.reduce((a, c) => a + c.refund_amount * c.selected, 0);\n this.refundListAmount.emit(this.totalRefundAmount.toString());\n this.fees = this.remissionForm.value.feesList.filter(value => value.selected===true);\n this.refundFees.emit(this.fees);\n return;\n }\n this.viewCompStatus = 'issuerefundpage1';\n this.getRefundReasons();\n }\n }\n }\n\n calAmtToRefund(value,amount,volume, i: any) {\n const volumeFee = amount/volume;\n const amtToRefund = value * volumeFee;\n const formArray = this.remissionForm.controls.feesList as FormArray;\n formArray.at(i).get('refund_amount').setValue(amtToRefund);\n // formArray.at(i).get('volume').setValue(value);\n // (<HTMLInputElement>document.getElementById('feeAmount_'+i)).value = +amtToRefund;\n // const formControl = this.remissionForm.controls.feesList['volume'].at(i);\n // formControl.setValue(value);\n\n }\n gotoContactDetailsPage(note?: IRefundContactDetails) {\n if (note) {\n this.notification = { contact_details: note, notification_type: note.notification_type };\n }\n this.errorMessage = '';\n this.viewCompStatus = '';\n this.viewStatus = 'contactDetailsPage';\n this.isRefundRemission = true;\n this.errorMessage = false;\n }\n \n getRefundReasons(){\n if(this.viewCompStatus === 'issuerefundpage1'){\n this.refundService.getRefundReasons().subscribe(\n refundReasons => { \n this.refundReasons = refundReasons.filter((data) => data.recently_used === false);\n this.refundReasons = this.refundReasons.filter((data) => data.name !== 'Retrospective remission');\n this.cd.detectChanges();\n this.commonRefundReasons = refundReasons.filter((data) => data.recently_used === true);\n this.commonRefundReasons.sort((a, b) => a.toString().localeCompare(b));\n this.cd.detectChanges();\n } );\n }\n}\n getErrorClass(elementId) {\n if(this.errorMsg.length > 0) {\n const ele = document.getElementById(elementId);\n ele.classList.add('inline-error-class');\n }\n \n }\n\n changeIssueRefundReason() {\n this.isFromCheckAnsPage = true;\n this.errorMessage = '';\n this.errorMsg = [];\n this.refundHasError = false;\n this.isReasonEmpty = false;\n this.viewCompStatus = 'issuerefundpage1';\n this.viewStatus = '';\n this.isRefundRemission = true;\n }\n\n confirmIssueRefund(isFullyRefund: any) {\n this.isConfirmationBtnDisabled = true;\n this.errorMessage = '';\n this.errorMsg = [];\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n if(isFullyRefund) {\n this.totalRefundAmount = this.payment.amount;\n }\n if(!isFullyRefund) {\n this.fees = this.remissionForm.value.feesList.filter(value => value.selected===true);\n }\n this.fees = this.fees.map(obj => ({ id: obj.id, \n code: obj.code,\n version:obj.version, \n apportion_amount: obj.apportion_amount,\n calculated_amount: obj.calculated_amount,\n updated_volume: obj.updated_volume ? obj.updated_volume : obj.volume,\n refund_amount:obj.refund_amount ? obj.refund_amount : this.totalRefundAmount }));\n \n \n const requestBody = new PostRefundRetroRemission(this.contactDetailsObj, this.fees,this.payment.reference, this.refundReason, \n this.totalRefundAmount, 'op');\n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference =JSON.parse(response).refund_reference;\n if(JSON.parse(response).refund_amount) {\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n })\n }\n\n gotoRefundReasonPage () {\n this.viewStatus = '';\n this.viewCompStatus = 'issuerefundpage1';\n \n }\n\n// Retro Refund\n\n // confirmRetroRefund() {\n // this.isConfirmationBtnDisabled = true;\n // this.errorMessage = '';\n // this.errorMsg = [];\n // if( this.isRefundRemission) {\n // this.retroRemission = true;\n // }\n\n // const requestBody = new PostRefundRetroRemission(this.payment.reference,'RR004-Retrospective remission', this.contactDetailsObj);\n // this.paymentViewService.postRefundsReason(requestBody).subscribe(\n // response => {\n // if (JSON.parse(response)) {\n // this.viewCompStatus = '';\n // this.viewStatus = 'retrorefundconfirmationpage';\n // this.refundReference =JSON.parse(response).refund_reference;\n // if(JSON.parse(response).refund_amount) {\n // this.refundAmount = JSON.parse(response).refund_amount;\n // }\n // }\n // },\n // (error: any) => {\n // this.errorMessage = error;\n // this.isConfirmationBtnDisabled = false;\n // });\n // }\n\n selectRadioButton(key, value) {\n localStorage.setItem(\"myradio\", key);\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundDDReason'].setValue('Select a different reason', {onlySelf: true});\n remissionctrls['reason'].reset();\n this.isRefundReasonsSelected = true;\n this.errorMessage = false;\n this.errorMsg = [];\n this.isReasonEmpty = false;\n this.showReasonText = false;\n this.refundHasError = false;\n this.selectedRefundReason = key;\n if(this.selectedRefundReason.includes('Other')) {\n this.showReasonText = true;\n this.refundHasError = false;\n this.refundReason = key;\n }\n }\n\n selectchange(args) {\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundReason'].reset();\n remissionctrls['reason'].reset();\n this.isRefundReasonsSelected = false;\n this.showReasonText = false;\n this.refundHasError = false;\n this.selectedRefundReason = args.target.options[args.target.options.selectedIndex].id;\n this.reasonLength = (29-this.selectedRefundReason.split('- ')[1].length);\n\n if(this.selectedRefundReason.includes('Other')) {\n this.showReasonText = true;\n this.refundHasError = false;\n this.refundReason = args.target.options[args.target.options.selectedIndex].id;\n }\n\n\n }\n getContactDetails(obj:IRefundContactDetails, type) {\n this.contactDetailsObj = obj;\n this.viewCompStatus = '';\n this.viewStatus = type;\n }\n\n gotoPartialFeeRefundScreen() {\n\n if (this.isFromRefundStatusPage){\n var remissionctrls=this.remissionForm.controls;\n this.refundListReason.emit({reason: this.displayRefundReason, code: this.refundReason});\n return;\n }\n this.refundHasError = false;\n this.viewCompStatus = 'issuerefund';\n this.viewStatus = '';\n }\n\n \n\n gotoServiceRequestPage(event: any) {\n this.errorMessage ='';\n this.errorMsg = [];\n this.isFromCheckAnsPage = false;\n event.preventDefault();\n\n if (this.isFromRefundStatusPage){\n var remissionctrls=this.remissionForm.controls;\n this.totalRefundAmount = this.remissionForm.value.feesList.reduce((a, c) => a + c.refund_amount * c.selected, 0);\n this.refundListAmount.emit(this.totalRefundAmount.toString());\n return;\n }\n if (this.isFromServiceRequestPage && !this.isFromPaymentDetailPage) {\n this.viewStatus = 'order-full-view';\n this.viewCompStatus = '';\n } else if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n } else {\n this.paymentLibComponent.paymentMethod = this.payment.method;\n this.paymentLibComponent.paymentGroupReference = this.paymentLibComponent.paymentGroupReference\n this.paymentLibComponent.paymentReference = this.payment.reference;\n this.paymentLibComponent.viewName = 'payment-view';\n this.OrderslistService.setOrderRef(this.orderRef);\n this.OrderslistService.setorderCCDEvent(this.orderCCDEvent);\n this.OrderslistService.setorderCreated(this.orderCreated);\n this.OrderslistService.setorderDetail(this.orderDetail);\n this.OrderslistService.setorderParty(this.orderParty);\n this.OrderslistService.setorderTotalPayments(this.orderTotalPayments);\n this.OrderslistService.setorderRemissionTotal(this.orderRemissionTotal);\n this.OrderslistService.setorderFeesTotal(this.orderFeesTotal);\n this.viewStatus = 'payment-view';\n this.sendOrderDetail = this.orderDetail;\n this.sendOrderRef = this.orderRef;\n if(this.LOGGEDINUSERROLES === undefined) {\n this.OrderslistService.getUserRolesList().subscribe((data) => this.LOGGEDINUSERROLES = data);\n }\n this.viewCompStatus = '';\n }\n\n }\n gotoAddressPage(note?: IRefundContactDetails) {\n if (note) {\n this.notification = { contact_details: note, notification_type: note.notification_type };\n }\n this.errorMessage = '';\n this.viewCompStatus = 'addrefundforremission';\n this.viewStatus = '';\n this.isRefundRemission = true;\n this.errorMessage = false;\n }\n gotoRemissionSuccess(event: Event) {\n event.preventDefault();\n this.errorMessage = '';\n this.viewCompStatus = '';\n this.viewStatus = 'retroremissionconfirmationpage';\n this.isRefundRemission = true;\n this.errorMessage = false;\n }\n\n gotoCasetransationPage() {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.errorMessage = '';\n this.errorMsg = [];\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.VIEW = 'case-transactions';\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.resetOrderData();\n let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n\n gotoCasetransationPageCancelBtnClicked(event: Event) {\n event.preventDefault();\n this.errorMsg = [];\n if( this.paymentLibComponent.isFromServiceRequestPage !== undefined && !this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.VIEW ='case-transactions';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.VIEW ='case-transactions';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n this.resetOrderData(); let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n } else { \n\n if (this.paymentLibComponent.REFUNDLIST) {\n this.paymentLibComponent.viewName = 'refund-list';\n return;\n }\n if (this.paymentLibComponent.TAKEPAYMENT === undefined && this.paymentLibComponent.SERVICEREQUEST === undefined) {\n this.paymentLibComponent.SERVICEREQUEST = 'false';\n }\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.OrderslistService.setpaymentPageView({method: '',payment_group_reference: '', reference:''});\n this.OrderslistService.setnavigationPage('casetransactions');\n this.errorMessage = '';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.paymentLibComponent.ISBSENABLE = true;\n let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n if(this.isFromPaymentDetailPage) {\n partUrl += this.paymentLibComponent.isFromPaymentDetailPage\n }\n\n if(!this.paymentLibComponent.SERVICEREQUEST) {\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n } else {\n const url =`/payment-history/${this.ccdCaseNumber}?selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n }\n\n }\n\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n\n changeRefundAmount() { \n this.isFromCheckAnsPage = true;\n this.viewCompStatus = 'issuerefund';\n this.viewStatus = '';\n }\n\n getFormattedCurrency(currency:number){\n if(currency.toString().includes(\".\")){\n return currency\n }\n return currency.toString().concat(\".00\");\n }\n\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'ccdHyphens'\n})\nexport class CcdHyphensPipe implements PipeTransform {\n constructor() {}\n transform(value: any, args?: any): any {\n const pattern = /^([0-9]{4})+([0-9]{4})+([0-9]{4})+([0-9]{4})$/;\n if ( value.match(pattern)) {\n return value.replace(pattern,'$1-$2-$3-$4') \n }\n return value;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'capitalize'\n})\nexport class CapitalizePipe implements PipeTransform {\n constructor() { }\n transform(s: any, args?: any): any {\n return s && s[0].toUpperCase() + s.slice(1) || \"\";\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'keyValue'\n})\nexport class keyValuePipe implements PipeTransform {\n constructor() {}\n transform(input: any): any {\n let keys = [];\n for (let key in input) {\n if (input.hasOwnProperty(key)) {\n keys.push({ key: key, value: input[key]});\n }\n }\n return keys;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\nimport { DomSanitizer, SafeHtml } from '@angular/platform-browser';\n\n@Pipe({ name: 'sanitizeHtml' })\nexport class SanitizeHtmlPipe implements PipeTransform {\n constructor(private sanitizer: DomSanitizer) {}\n transform(value: any): SafeHtml {\n return this.sanitizer.bypassSecurityTrustHtml(value);\n }\n}\n","import { Injectable } from '@angular/core';\nimport * as FileSaver from 'file-saver';\nimport * as XLSX from 'xlsx';\nimport * as XLSXStyle from 'xlsx-style';\n\n\nconst EXCEL_TYPE = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8';\nconst EXCEL_EXTENSION = '.xlsx';\n\n@Injectable()\nexport class XlFileService {\n\n constructor() { }\n\n public exportAsExcelFile(json: any[], excelFileName: string): void {\n let worksheet: XLSX.WorkSheet; \n let workbook: XLSX.WorkBook; \n\n if(excelFileName.match('Data_Loss')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['loss_resp','payment_asset_dcn','env_ref','env_item','resp_service_id','resp_service_name','date_banked','bgc_batch','payment_method','amount']});\n worksheet = this.setDataLossReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Unprocessed')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','exception_ref','ccd_ref','date_banked','bgc_batch','payment_asset_dcn','env_ref','env_item','payment_method','amount']});\n worksheet = this.setUnprocessedReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Processed_Unallocated')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','allocation_status','receiving_office','allocation_reason','ccd_exception_reference','ccd_case_reference','payment_asset_dcn','env_ref','env_item','date_banked','bgc_batch','payment_method','amount']});\n worksheet = this.setProcessedUnallocatedReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else {\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','surplus_shortfall','balance','payment_amount','ccd_case_reference', 'ccd_exception_reference', 'processed_date', 'reason', 'explanation', 'user_name']});\n worksheet = this.setShortFallReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n }\n workbook = { Sheets: { 'data': worksheet }, SheetNames: ['data'] };\n const excelBuffer: any = XLSX.write(workbook, { bookType: 'xlsx', type: 'array' });\n this.saveAsExcelFile(excelBuffer, excelFileName);\n }\n\n\nprivate autoFitColumns (worksheet: XLSX.WorkSheet,json:any) : XLSX.WorkSheet {\n let objectMaxLength = []; \n let ColWidth = [];\n let obj = <any>Object;\n for (let i = 0; i < json.length; i++) {\n let value = obj.values(json[i]);\n let key = obj.keys(json[i]);\n for (let j = 0; j < value.length; j++) {\n if(value[j] === null){\n value[j] = '';\n }\n objectMaxLength[j] =\n key[j].length >= value[j].length\n ? key[j].length+2\n : value[j].length+1;\n if( value[j].length === undefined){\n objectMaxLength[j] = key[j].length+2;\n }\n ColWidth.push({'width': +objectMaxLength[j]});\n }\n }\n worksheet['!cols'] = ColWidth;\n return worksheet;\n}\n\n\nprivate setDataLossReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Loss_Resp\";\n worksheet.B1.v = \"Payment_Asset_DCN\";\n worksheet.C1.v = \"Envelope_Ref\";\n worksheet.D1.v = \"Envelope_Item\";\n worksheet.E1.v = \"Resp_Service ID\";\n worksheet.F1.v = \"Resp_Service Name\";\n worksheet.G1.v = \"Date_Banked\";\n worksheet.H1.v = \"BGC_Batch\";\n worksheet.I1.v = \"Payment_Method\";\n worksheet.J1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setUnprocessedReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Exception_Ref\";\n worksheet.D1.v = \"CCD_Ref\";\n worksheet.E1.v = \"Date_Banked\";\n worksheet.F1.v = \"BGC_Batch\";\n worksheet.G1.v = \"Payment_Asset_DCN\";\n worksheet.H1.v = \"Envelope_Ref\";\n worksheet.I1.v = \"Envelope_Item\";\n worksheet.J1.v = \"Payment_Method\";\n worksheet.K1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setProcessedUnallocatedReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Allocation_Status\";\n worksheet.D1.v = \"Receiving_Office\";\n worksheet.E1.v = \"Allocation_Reason\";\n worksheet.F1.v = \"CCD_Exception_Ref\";\n worksheet.G1.v = \"CCD_Case_Ref\";\n worksheet.H1.v = \"Payment_Asset_DCN\";\n worksheet.I1.v = \"Envelope_Ref\";\n worksheet.J1.v = \"Envelope_Item\";\n worksheet.K1.v = \"Date_Banked\";\n worksheet.L1.v = \"BGC_Batch\";\n worksheet.M1.v = \"Payment_Method\";\n worksheet.N1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setShortFallReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Over Payment_Under Payment\";\n worksheet.D1.v = \"Balance\";\n worksheet.E1.v = \"Payment_Amount\";\n worksheet.F1.v = \"CCD_Case_Ref\";\n worksheet.G1.v = \"Exception_Ref\";\n worksheet.H1.v = \"Processed_Date\";\n worksheet.I1.v = \"Reason\";\n worksheet.J1.v = \"Explanation\";\n worksheet.K1.v = \"Updated Name\";\n return worksheet;\n}\n\nprivate saveAsExcelFile(buffer: any, fileName: string): void {\n const data: Blob = new Blob([buffer], {\n type: EXCEL_TYPE\n });\n FileSaver.saveAs(data, fileName + EXCEL_EXTENSION);\n }\n}\n","import { Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormGroup, FormControl } from '@angular/forms';\nimport { formatDate } from \"@angular/common\";\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {XlFileService} from '../../services/xl-file/xl-file.service';\n\n@Component({\n selector: 'ccpay-reports',\n templateUrl: './reports.component.html',\n styleUrls: ['./reports.component.scss']\n})\nexport class ReportsComponent implements OnInit {\n reportsForm: FormGroup;\n startDate: string;\n endDate: string;\n ccdCaseNumber: string;\n isDownLoadButtondisabled:Boolean = false;\n isStartDateLesthanEndDate: Boolean = false;\n isDateRangeBetnWeek: Boolean = false;\n errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n paymentGroups: IPaymentGroup[] = [];\n\n constructor(\n private xlFileService: XlFileService,\n private errorHandlerService: ErrorHandlerService,\n private formBuilder: FormBuilder,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private paymentViewService: PaymentViewService) { }\n \n\n ngOnInit() {\n this.fromValidation();\n\n }\n\n getToday(): string {\n return new Date().toISOString().split('T')[0];\n }\n\n getSelectedFromDate(): void {\n this.validateDates(this.reportsForm.get('selectedreport').value);\n }\n\n validateDates(reportName){\n const selectedStartDate = this.tranformDate(this.reportsForm.get('startDate').value),\n selectedEndDate = this.tranformDate(this.reportsForm.get('endDate').value);\n const isDateRangeMoreThanWeek = (<any>new Date(selectedStartDate) - <any>new Date(selectedEndDate))/(1000 * 3600 * -24) > 7;\n if(new Date(selectedStartDate) > new Date(selectedEndDate) && selectedEndDate !== ''){\n this.reportsForm.get('startDate').setValue('');\n this.isDateRangeBetnWeek = false;\n this.isStartDateLesthanEndDate = true;\n } else if(reportName && reportName ==='SURPLUS_AND_SHORTFALL' && isDateRangeMoreThanWeek ) {\n this.isDateRangeBetnWeek = true;\n this.isStartDateLesthanEndDate = false;\n } else {\n this.isDateRangeBetnWeek = false;\n this.isStartDateLesthanEndDate = false;\n }\n\n }\n\n fromValidation() {\n this.reportsForm = this.formBuilder.group({\n selectedreport: new FormControl('') ,\n startDate: new FormControl(''),\n endDate: new FormControl('') \n });\n}\n\ndownloadReport(){\n this.isDownLoadButtondisabled = true;\n const dataLossRptDefault = [{loss_resp:'',payment_asset_dcn:'',env_ref:'',env_item:'',resp_service_id:'',resp_service_name:'',date_banked:'',bgc_batch:'',payment_method:'',amount:''}],\n unProcessedRptDefault = [{resp_service_id:'',resp_service_name:'',exception_ref:'',ccd_ref:'',date_banked:'',bgc_batch:'',payment_asset_dcn:'',env_ref:'',env_item:'',payment_method:'',amount:''}],\n processedUnallocated =[{resp_service_id:'',resp_service_name:'',allocation_status:'',receiving_office:'',allocation_reason:'',ccd_exception_ref:'',ccd_case_ref:'',payment_asset_dcn:'',env_ref:'',env_item:'',date_banked:'',bgc_batch:'',payment_method:'',amount:'',updated_by:''}],\n shortFallsRptDefault = [{resp_service_id:'',resp_service_name:'',surplus_shortfall:'',balance:'',payment_amount:'',ccd_case_reference:'',ccd_exception_reference:'',processed_date:'', reason:'', explanation:'', user_name:''}],\n selectedReportName = this.reportsForm.get('selectedreport').value,\n selectedStartDate = this.tranformDate(this.reportsForm.get('startDate').value),\n selectedEndDate = this.tranformDate(this.reportsForm.get('endDate').value);\n\n if(selectedReportName === 'PROCESSED_UNALLOCATED' || selectedReportName === 'SURPLUS_AND_SHORTFALL' ){\n this.paymentViewService.downloadSelectedReport(selectedReportName,selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n const result = JSON.parse(response);\n let res= {data: this.applyDateFormat(result)};\n if(res['data'].length === 0 && selectedReportName === 'PROCESSED_UNALLOCATED' ){\n res.data= processedUnallocated;\n } else if(res['data'].length === 0 && selectedReportName === 'SURPLUS_AND_SHORTFALL' ) {\n res.data= shortFallsRptDefault;\n } \n if(result['data'].length > 0) {\n for( var i=0; i< res['data'].length; i++) {\n if(res['data'][i][\"payment_asset_dcn\"] !== undefined) {\n res['data'][i]['env_ref'] = res['data'][i][\"payment_asset_dcn\"].substr(0,13);\n res['data'][i]['env_item'] = res['data'][i][\"payment_asset_dcn\"].substr(13,21);\n }\n if(res['data'][i][\"amount\"] !== undefined) {\n res['data'][i]['amount'] = this.convertToFloatValue(res['data'][i]['amount']);\n }\n if(res['data'][i][\"balance\"] !== undefined) {\n res['data'][i]['balance'] = this.convertToFloatValue(res['data'][i][\"balance\"]);\n }\n let Op = res['data'][i][\"surplus_shortfall\"];\n if(Op !== undefined) {\n res['data'][i]['surplus_shortfall'] = Op ==\"Surplus\" ? \"Over payment\":\"Under payment\";\n }\n if(res['data'][i][\"payment_amount\"] !== undefined) {\n res['data'][i]['payment_amount'] = this.convertToFloatValue(res['data'][i]['payment_amount']);\n }\n }\n } \n this.isDownLoadButtondisabled = false;\n this.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate));\n },\n (error: any) => {\n this.isDownLoadButtondisabled = false;\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n })\n\n // }else if(selectedReportName === 'PAYMENT_FAILURE_EVENT') {\n\n // this.paymentViewService.downloadFailureReport(selectedStartDate,selectedEndDate).subscribe(\n // response => {\n\n // },\n // (error: any) => {\n\n // })\n\n // } \n } else {\n this.bulkScaningPaymentService.downloadSelectedReport(selectedReportName,selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n const result = JSON.parse(response);\n let res = {data: this.applyDateFormat(result)};\n if(res['data'].length === 0 && selectedReportName === 'DATA_LOSS' ){\n res.data= dataLossRptDefault;\n } else if(res['data'].length === 0 && selectedReportName === 'UNPROCESSED'){\n res.data = unProcessedRptDefault;\n }\n if(result['data'].length > 0) {\n for( var i=0; i< res['data'].length; i++) {\n if(res['data'][i][\"amount\"] !== undefined) {\n res['data'][i]['amount'] = this.convertToFloatValue(res['data'][i]['amount']);\n }\n if(res['data'][i][\"payment_asset_dcn\"] !== undefined) {\n res['data'][i]['env_ref'] = res['data'][i][\"payment_asset_dcn\"].substr(0,13);\n res['data'][i]['env_item'] = res['data'][i][\"payment_asset_dcn\"].substr(13,21);\n }\n }\n }\n this.isDownLoadButtondisabled = false;\n this.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate ));\n },\n (error: any) => {\n this.isDownLoadButtondisabled = false;\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n })\n }\n }\n\n getFileName(selectedOption: string, startDate: string, endDate: string ) {\n const loc = 'en-US',\n stDt = formatDate(startDate, 'ddMMyy', loc),\n enDt = formatDate(endDate, 'ddMMyy', loc),\n now = new Date(),\n currentDate = formatDate(now, 'ddMMyy', loc),\n timestamp = `${currentDate}_${this.getTwodigit(now.getHours())}${this.getTwodigit(now.getMinutes())}${this.getTwodigit(now.getSeconds())}`,\n selectedOptionTxt = this.getCamelCaseString(selectedOption);\n \n return selectedOptionTxt+'_'+stDt+'_To_'+enDt+'_Run_'+ timestamp;\n } \n tranformDate(strDate: string) {\n let result = '';\n if (strDate) {\n let parts = strDate.split('-');\n result = `${parts[1]}/${parts[2]}/${parts[0]}`;\n }\n return result;\n }\n getTwodigit(input: number){\n return (\"0\" + input).slice(-2);\n }\n getCamelCaseString(selectedOption) {\n let result;\n switch(selectedOption) { \n case 'UNPROCESSED': { \n result = 'Unprocessed';\n break; \n } \n case 'DATA_LOSS': { \n result = 'Data_Loss';\n break; \n } \n case 'PROCESSED_UNALLOCATED': { \n result = 'Processed_Unallocated';\n break; \n } \n case 'SURPLUS_AND_SHORTFALL': { \n result = 'Over Payment_Under Payment';\n break; \n } \n case 'PAYMENT_FAILURE_EVENT': { \n result = 'Payment failure event';\n break; \n }\n default: { \n result = selectedOption;\n break; \n } \n } \n return result;\n }\n applyDateFormat(res) {\n const fmt = 'dd/MM/yyyy',\n loc = 'en-US';\n return res['data'].map(value => {\n if (value['date_banked']) {\n value['date_banked'] = formatDate(value['date_banked'], fmt, loc);\n }\n return value;\n });\n }\n \n convertToFloatValue(amt) {\n return amt ? Number.parseFloat(amt).toFixed(2): '0.00';\n }\n}\n","import {Component, ViewChild, Input, ChangeDetectorRef} from '@angular/core';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport { MatTableDataSource} from '@angular/material/table';\nimport {MatSort } from '@angular/material/sort';\nimport {Sort } from '@angular/material/sort';\nimport {MatPaginator } from '@angular/material/paginator';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { THIS_EXPR } from '@angular/compiler/src/output/output_ast';\nimport { ActivatedRoute,Router } from '@angular/router';\n@Component({\n selector: 'ccpay-table',\n templateUrl: './table.component.html',\n styleUrls: ['./table.component.css']\n})\nexport class TableComponent {\n @Input('DATASOURCE') DATASOURCE: any[];\n @Input('STATUS') STATUS: string;\n @Input('errorMessage') errorMessage: string;\n isApprovalFlow: boolean;\n // displayedColumns = ['ccdCaseNumber', 'refundReference', 'reason', 'createBy', 'updateDate', 'Action'];\n displayedColumns = ['ccd_case_number', 'refund_reference', 'user_full_name','date_created', 'date_updated', 'Action'];\n \n dataSource: MatTableDataSource<any>;\n userLst;\n serviceLst;\n actualcount: number;\n count: number;\n refundList: IRefundList[];\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n constructor(\n private paymentLibComponent: PaymentLibComponent,\n private cdRef: ChangeDetectorRef,\n private OrderslistService: OrderslistService,\n private router: Router,\n private activeRoute: ActivatedRoute\n ) {}\n ngOnInit() {\n this.errorMessage = this.errorMessage;\n if(this.STATUS.toLowerCase() === 'sent for approval') {\n this.isApprovalFlow = true;\n } else {\n this.isApprovalFlow = false;\n }\n this.refundList = this.DATASOURCE;\n this.dataSource = new MatTableDataSource(this.refundList);\n this.actualcount = this.dataSource.data.length;\n if( this.refundList !== undefined) {\n this.userLst = this.refundList.reduce((r,{user_full_name}) => (r[user_full_name]='', r) , {});\n this.userLst = Object.keys(this.userLst);\n this.userLst.sort((a, b) => a.toString().localeCompare(b));\n this.serviceLst = this.refundList.reduce((r,{service_type}) => (r[service_type]='', r) , {});\n this.serviceLst = Object.keys(this.serviceLst);\n this.serviceLst.sort((a, b) => a.toString().localeCompare(b));\n }\n \n }\n \n /**\n * Set the paginator and sort after the view init since this component will\n * be able to query its view for the initialized paginator and sort.\n */\n ngAfterViewInit() {\n \n this.dataSource.sort = this.sort;\n\n //const sortState: Sort = {active: 'date_updated', direction: 'desc'};\n // this.sort.active = sortState.active;\n // this.sort.direction = sortState.direction;\n // this.sort.sortChange.emit(sortState);\n this.dataSource.paginator = this.paginator;\n this.dataSource.sort = this.sort;\n this.cdRef.detectChanges();\n }\n applyFilter(filterValue: string) {\n filterValue = filterValue.trim(); // Remove whitespace\n filterValue = filterValue.toLowerCase(); // Datasource defaults to lowercase matches\n this.dataSource.filter = filterValue;\n }\n selectchange(args){\n this.dataSource.filter = args.target.value;\n this.actualcount = this.dataSource.data.length;\n this.dataSource.paginator = this.paginator;\n }\n goToRefundProcessComponent(refundReference: string, refundData: IRefundList ) {\n this.paymentLibComponent.refundlistsource = refundData;\n this.paymentLibComponent.refundReference = refundReference;\n this.paymentLibComponent.viewName = 'process-refund';\n }\n goToRefundViewComponent(refundReference: string, refundData: IRefundList ) {\n this.OrderslistService.setRefundView(refundData);\n this.paymentLibComponent.viewName='refundstatuslist';\n this.paymentLibComponent.CCD_CASE_NUMBER = refundData.ccd_case_number;\n this.paymentLibComponent.isRefundStatusView = true;\n this.paymentLibComponent.isCallFromRefundList = true;\n }\n goToCaseReview(ccdCaseNumber: string, refundData: IRefundList ) {\n this.router.navigate([`/cases/case-details/${ccdCaseNumber}`], {relativeTo: this.activeRoute});\n }\n}","import { IRefundContactDetails } from './IRefundContactDetails';\n\nexport class IPutNotificationRequest {\n recipient_email_address?: string;\n recipient_postal_address?: IRefundContactDetails\n \n constructor(contactDetails: any, notificationType: string) {\n if(notificationType === 'EMAIL') {\n this.recipient_email_address = contactDetails;\n } else if(notificationType === 'LETTER') {\n this.recipient_postal_address = contactDetails;\n }\n } \n}","import { IFee } from \"./IFee\";\nimport { IRefundContactDetails } from \"./IRefundContactDetails\";\nexport class IResubmitRefundRequest {\n refund_reason: string;\n amount: number;\n contact_details: IRefundContactDetails;\n refund_fees: IFee[];\n \n constructor(refund_reason : string, amount: number,contact_details:any,refund_fees: any[]) {\n this.refund_reason= refund_reason;\n this.amount = amount;\n this.contact_details = contact_details;\n this.refund_fees = refund_fees;\n } \n }\n ","import { Component, OnInit, Input } from '@angular/core';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { NotificationService } from '../../services/notification/notification.service';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { IRefundsNotifications } from '../../interfaces/IRefundsNotifications';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IPutNotificationRequest } from '../../interfaces/IPutNotificationRequest';\nimport { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';\nimport { IRefundStatus } from '../../interfaces/IRefundStatus';\nimport { IResubmitRefundRequest } from '../../interfaces/IResubmitRefundRequest';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IFee } from '../../interfaces/IFee';\nimport { IRefundFee } from '../../interfaces/IRefundFee';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-refund-status',\n templateUrl: './refund-status.component.html',\n styleUrls: ['./refund-status.component.css']\n})\nexport class RefundStatusComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[] = [];\n @Input('API_ROOT') API_ROOT: string;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: boolean;\n @Input() orderParty: string;\n @Input() isEliginbleToAccess: boolean;\n refundStatusForm: FormGroup;\n selectedRefundReason: string;\n rejectedRefundList: IRefundList[] = [];\n notificationList: any;\n notification:any;\n approvalStatus = 'Sent for approval';\n rejectStatus = 'Update required';\n errorMessage = null;\n viewName: string;\n refundReason: string;\n refundlist: IRefundList;\n bsPaymentDcnNumber: string;\n isCallFromRefundList: boolean;\n refundButtonState: string = '';\n isAmountEmpty: boolean = false;\n isReasonEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n refundHasError: boolean = false;\n refundReasons: any[] = [];\n refundStatusHistories: IRefundStatus[];\n refundNotifications: IRefundStatus[];\n isResendOperationSuccess: boolean = false;\n isEditDetailsClicked: boolean = false;\n isEditAddressDeatilsClicked: boolean = false;\n addressDetails: IRefundContactDetails;\n refundReference: string;\n refundAmount: string;\n refundCode: string;\n isRefundBtnDisabled: boolean = true;\n oldRefundReason: string;\n refundreason: string;\n navigationpage: string;\n isLastUpdatedByCurrentUser: boolean = true;\n isProcessRefund: boolean = false;\n changedAmount: number;\n isRemissionsMatch: boolean;\n payment: IPayment;\n changeRefundReason: string;\n fees: IFee [];\n refundFees: IRefundFee[];\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n\n constructor(private formBuilder: FormBuilder,\n private refundService: RefundsService,\n private notificationService: NotificationService,\n private paymentLibComponent: PaymentLibComponent,\n private OrderslistService: OrderslistService,\n private paymentViewService: PaymentViewService) { }\n\n ngOnInit() {\n\n this.resetRemissionForm([false, false, false, false], 'All');\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.isCallFromRefundList = this.paymentLibComponent.isCallFromRefundList;\n if (this.paymentLibComponent.isRefundStatusView) {\n this.viewName = 'refundview';\n this.OrderslistService.getRefundView().subscribe((data) => this.refundlist = data);\n this.OrderslistService.getCCDCaseNumberforRefund.subscribe((data) => this.ccdCaseNumber = data);\n } else {\n this.viewName = 'refundstatuslist';\n if(this.isEliginbleToAccess) {\n this.refundService.getRefundStatusList(this.ccdCaseNumber).subscribe(\n refundList => {\n this.rejectedRefundList = refundList['refund_list'];\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n } else {\n this.rejectedRefundList = [];\n }\n\n }\n\n\n this.refundStatusForm = this.formBuilder.group({\n amount: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[0-9]+(\\.[0-9]{1,2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl()\n });\n\n if(this.refundlist !== undefined) {\n this.getRefundsNotification();\n this.getRefundsStatusHistoryList();\n\n if (this.LOGGEDINUSERROLES.some(i => i.includes('payments-refund-approver'))) {\n this.isProcessRefund = true;\n this.refundButtonState = this.refundlist.refund_status.name;\n return;\n }\n\n if (this.LOGGEDINUSERROLES.some(i => i.includes('payments-refund'))) {\n this.isProcessRefund = false;\n this.refundButtonState = this.refundlist.refund_status.name;\n }\n }\n\n }\n\n isFromPayBubble = (): boolean => { \n return this.API_ROOT === 'api/payment-history';\n }\n\n getRefundsStatusHistoryList() {\n if(this.refundlist !== undefined) {\n this.refundService.getRefundStatusHistory(this.refundlist.refund_reference).subscribe(\n statusHistoryList => {\n this.refundStatusHistories = statusHistoryList.status_history_dto_list;\n this.isLastUpdatedByCurrentUser = statusHistoryList.last_updated_by_current_user;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n }\n }\n\n getRefundsNotification() {\n this.notificationService.getRefundNotification(this.refundlist.refund_reference).subscribe(\n refundsNotification => {\n this.notificationList = refundsNotification['notifications'];\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n }; \n }\n\n goToRefundView(refundlist: IRefundList, navigationpage: string) {\n this.OrderslistService.setRefundView(refundlist);\n this.OrderslistService.setCCDCaseNumber(this.ccdCaseNumber);\n this.paymentLibComponent.viewName = 'refundstatuslist';\n this.paymentLibComponent.isRefundStatusView = true;\n this.refundlist = refundlist;\n this.OrderslistService.setnavigationPage(navigationpage);\n }\n\n loadCaseTransactionPage() {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n }\n\n loadRefundListPage() {\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n if (this.navigationpage === 'casetransactions') {\n this.loadCaseTransactionPage();\n } else {\n this.paymentLibComponent.viewName = 'refund-list';\n }\n }\n\n gotoReviewDetailsPage(event:any) {\n // event.preventDefault();\n this.errorMessage = false;\n this.paymentLibComponent.isRefundStatusView = true;\n this.ngOnInit();\n }\n\n gotoReviewAndReSubmitPage() {\n this.viewName = 'reviewandsubmitview';\n this.oldRefundReason = this.refundlist.reason;\n this.changedAmount = this.refundlist.amount;\n this.refundreason = this.refundStatusHistories.filter(data => data.status.toLowerCase() === 'update required')[0].notes;\n this.refundService.getRefundReasons().subscribe(\n refundReasons => {\n this.refundReasons = refundReasons;\n });\n }\n gotoRefundReasonPage(refundReason:string) {\n this.isRefundBtnDisabled = false;\n this.paymentLibComponent.REFUNDLIST = \"true\";\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.errorMessage = false;\n this.changeRefundReason = refundReason;\n this.viewName = 'issuerefundpage1';\n }\n\n gotoAmountPage() {\n this.errorMessage = false;\n this.paymentLibComponent.REFUNDLIST = \"true\";\n this.isRefundBtnDisabled = false;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.paymentLibComponent.isFromRefundStatusPage = true;\n if(this.refundlist.reason == 'Retrospective remission') {\n this.viewName = 'processretroremissonpage';\n } else {\n this.viewName = 'issuerefund';\n }\n }\n\n goToReviewAndSubmitView() {\n const remissionctrls = this.refundStatusForm.controls\n if (this.refundStatusForm.dirty) {\n if (remissionctrls['amount'].value == '') {\n this.resetRemissionForm([true, false, false, false], 'amount');\n }\n else if (remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid) {\n this.resetRemissionForm([false, true, false, false], 'amount');\n }\n else if (remissionctrls['reason'].value == '') {\n this.resetRemissionForm([false, false, false, true], 'reason');\n } else {\n this.refundlist.reason = remissionctrls['reason'].value;\n this.viewName = 'reviewandsubmitview';\n }\n }\n\n }\n\n resetRemissionForm(val, field) {\n if (field === 'All') {\n this.isAmountEmpty = val[0];\n this.amountHasError = val[1];\n this.isRemissionLessThanFeeError = val[2];\n this.isReasonEmpty = val[3];\n } else if (field === 'amount' || field === 'All') {\n this.isAmountEmpty = val[0];\n this.amountHasError = val[1];\n this.isRemissionLessThanFeeError = val[2];\n } else if (field === 'reason' || field === 'All') {\n this.isReasonEmpty = val[3];\n }\n }\n\n selectRadioButton(key, value) {\n this.refundHasError = false;\n this.selectedRefundReason = key;\n if (key === 'Other') {\n this.refundHasError = false;\n this.refundReason = key;\n }\n }\n\n getRefundListReason(refundListReason: any) {\n if (this.paymentLibComponent.isFromRefundStatusPage && !this.paymentLibComponent.iscancelClicked) {\n this.refundlist.reason = refundListReason.reason;\n this.refundlist.code = refundListReason.code;\n this.refundCode = refundListReason.code;\n } else {\n this.isRefundBtnDisabled = true;\n }\n this.viewName = 'reviewandsubmitview';\n this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;\n }\n\n getRefundAmount(amount: number) {\n if (this.paymentLibComponent.isFromRefundStatusPage && !this.paymentLibComponent.iscancelClicked) {\n if (amount > 0) {\n this.changedAmount = amount;\n // this.refundlist.amount = amount;\n }\n } else {\n this.isRefundBtnDisabled = true;\n }\n this.viewName = 'reviewandsubmitview';\n this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;\n }\n\n getRefundFees(fees: IFee[])\n {\n this.fees = fees;\n this.refundFees = this.fees.map(obj => ({ fee_id: obj.id, code: obj.code, version:obj.version, volume: obj.volume,refund_amount:obj.refund_amount }));\n }\n\n gotoReviewRefundConfirmationPage() {\n // if (this.oldRefundReason === this.refundlist.reason) {\n // this.refundCode = '';\n // }\n if (this.refundFees === undefined) {\n this.refundFees = this.refundlist['refund_fees'];\n }\n this.refundCode = this.refundlist.code;\n const resubmitRequest = new IResubmitRefundRequest(this.refundCode, this.changedAmount, this.refundlist.contact_details, this.refundFees);\n this.refundService.patchResubmitRefund(resubmitRequest, this.refundlist.refund_reference).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n this.viewName = 'reviewrefundconfirmationpage';\n }\n },\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n }\n );\n }\n\n gotoEditAddressDetails(note: IRefundsNotifications) {\n this.notification = note;\n this.isEditDetailsClicked = true;\n this.viewName = 'refundEditView'\n }\n getContactDetails(obj:IRefundContactDetails) {\n this.addressDetails = obj;\n this.viewName = 'revieweditdetailsconfirmationpage';\n }\n getContactDetailsForRefundList(obj:IRefundContactDetails) {\n this.refundlist.contact_details = obj;\n this.isEditDetailsClicked = false;\n this.isRefundBtnDisabled = false;\n this.viewName = 'reviewandsubmitview';\n }\n gotoEditDetailsPage(note?: any) {\n if(note) {\n this.notification = { contact_details: note, notification_type: note.notification_type };\n }\n this.isEditDetailsClicked = true;\n this.viewName = 'refundEditView'\n }\n submitEditDetail() {\n this.isResendOperationSuccess = false;\n const contactDetails = this.addressDetails.notification_type === 'EMAIL' ? this.addressDetails.email :\n {\n address_line: this.addressDetails.address_line,\n city: this.addressDetails.city,\n county: this.addressDetails.county,\n country: this.addressDetails.country,\n postal_code: this.addressDetails.postal_code,\n };\n const resendRequest = new IPutNotificationRequest(contactDetails, this.addressDetails.notification_type);\n\n this.refundService.putResendOrEdit(resendRequest, this.refundlist.refund_reference, this.addressDetails.notification_type).subscribe(\n (response) => {\n this.isResendOperationSuccess = response;\n },\n (error: any) => {\n this.isResendOperationSuccess = false;\n this.errorMessage = error.replace(/\"/g,\"\");\n }\n );\n }\n putResend(notification: IRefundsNotifications) {\n this.isResendOperationSuccess = false;\n const contactDetails = notification.notification_type === 'EMAIL' ? notification.contact_details.email :\n {\n address_line :notification.contact_details.address_line,\n city: notification.contact_details.city,\n county: notification.contact_details.county,\n country: notification.contact_details.country,\n postal_code: notification.contact_details.postal_code,\n };\n const resendRequest = new IPutNotificationRequest(contactDetails, notification.notification_type);\n\n this.refundService.putResendOrEdit(resendRequest, this.refundlist.refund_reference, notification.notification_type).subscribe(\n (response) => {\n this.isResendOperationSuccess = response;\n },\n (error: any) => {\n this.isResendOperationSuccess = false;\n this.errorMessage = error.replace(/\"/g,\"\");\n }\n );\n\n }\n gotoCasetransationPageCancelBtnClicked(Event: Event) {\n event.preventDefault();\n this.viewName = 'refundstatuslist';\n }\n\n goToRefundProcessComponent(refundReference: string, refundList: IRefundList) {\n this.paymentLibComponent.refundlistsource = refundList;\n this.paymentLibComponent.refundReference = refundReference;\n this.paymentLibComponent.isFromPayBubble = true;\n this.paymentLibComponent.viewName = 'process-refund';\n }\n\n}\n","import { THIS_EXPR } from '@angular/compiler/src/output/output_ast';\nimport { Component, Input, OnInit, Output, EventEmitter, ChangeDetectorRef } from '@angular/core';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IPaymentView } from '../../interfaces/IPaymentView';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { Router } from '@angular/router';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\n\n@Component({\n selector: 'ccpay-service-request',\n templateUrl: './service-request.component.html',\n styleUrls: ['./service-request.component.scss']\n})\nexport class ServiceRequestComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input('viewStatus') viewStatus: string;\n @Input('orderDetail') orderDetail: any[];\n @Input('orderRef') orderRef: string;\n @Input('orderStatus') orderStatus: string;\n @Input('orderParty') orderParty: string;\n @Input('orderCreated') orderCreated: Date;\n @Input('orderCCDEvent') orderCCDEvent: string;\n @Input('orderFeesTotal') orderFeesTotal: number;\n @Input('orderTotalPayments') orderTotalPayments: number;\n @Input('orderRemissionTotal') orderRemissionTotal: number;\n @Input('paymentGroupList') paymentGroupList: IPaymentGroup;\n @Input('takePayment') takePayment: boolean;\n @Input('ccdCaseNumber') ccdCaseNumber: boolean;\n @Input(\"isServiceRequest\") isServiceRequest: string;\n @Output() goToServiceRquestComponent: EventEmitter<any> = new EventEmitter();\n\n viewCompStatus;\n servicerequest: string;\n paymentType: string;\n excReference: string;\n paymentGroups: any[] = [];\n payments: IPayment[] = [];\n nonPayments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n paymentFees: IFee[];\n fees: any;\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalNonOffPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n paymentRef: string;\n isTurnOff: boolean;\n isRefundRemission: boolean = true;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = true;\n isExceptionRecord: boolean = false;\n isUnprocessedRecordSelected: boolean = false;\n exceptionRecordReference: string;\n isAnyFeeGroupAvilable: boolean = true;\n isHistoricGroupAvailable: boolean = false;\n isBulkScanEnable;\n isRemissionsMatch: boolean;\n isRemoveBtnDisabled: boolean = false;\n feeId: IFee;\n clAmountDue: number = 0;\n unprocessedRecordCount: number;\n isFeeRecordsExist: boolean = false;\n isGrpOutstandingAmtPositive: boolean = false;\n totalRefundAmount: Number;\n caseType: String;\n isConfirmationBtnDisabled: boolean;\n refundReference: string;\n refundAmount: string;\n payment: IPayment;\n paymentGroup: IPaymentGroup;\n paymentView: IPaymentView;\n\n isAddRemissionEnable: boolean = false;\n orderRemissionDetails: any[] = [];\n orderLevelFees: IOrderReferenceFee[] = [];\n cpoDetails: any = null;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n isFromPaymentDetailPage: boolean;\n contactDetailsObj: IRefundContactDetails\n notification: any;\n isCPODown: boolean;\n test: boolean;\n isPBA: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n isAddRemissionBtnEnabled: boolean = false;\n isRefundRemissionBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n isFromServiceRequestPage: boolean;\n navigationpage: string;\n remissionFeeAmt: number;\n isContinueBtnDisabled: boolean = true;\n isFullyRefund: boolean;\n\n constructor(\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private OrderslistService: OrderslistService,\n private cd: ChangeDetectorRef,\n private router: Router) { }\n\n ngOnInit() {\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isServiceRequest = 'false';\n if (this.viewStatus === undefined) {\n this.viewStatus = this.paymentLibComponent.viewName;\n }\n if(this.paymentLibComponent.isFromServiceRequestPage && this.paymentLibComponent.isFromPaymentDetailPage) {\n if(this.paymentLibComponent.isFromPaymentDetailPage && this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.getorderRefs().subscribe((data) => this.orderRef = data);\n this.OrderslistService.getorderCCDEvents().subscribe((data) => this.orderCCDEvent = data);\n this.OrderslistService.getorderCreateds().subscribe((data) => this.orderCreated = data);\n this.OrderslistService.getorderDetail().subscribe((data) => this.orderDetail = data);\n this.OrderslistService.getorderPartys().subscribe((data) => this.orderParty = data);\n this.OrderslistService.getorderRemissionTotals().subscribe((data) => this.orderRemissionTotal = data);\n this.OrderslistService.getorderFeesTotals().subscribe((data) => this.orderFeesTotal = data);\n this.OrderslistService.getoorderTotalPaymentss().subscribe((data) => this.orderTotalPayments = data);\n }\n \n \n }\n if(this.paymentLibComponent.isFromServiceRequestPage && this.paymentLibComponent.TAKEPAYMENT) {\n this.isServiceRequest = 'false';\n }\n\n\n }\n goToServiceRequestPage() {\n this.goToServiceRquestComponent.emit();\n }\n\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n this.OrderslistService.setnavigationPage('servicerequestpage');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isTakePayment = this.paymentLibComponent.TAKEPAYMENT;\n if (this.takePayment) {\n this.paymentLibComponent.isTakePayment = this.takePayment;\n }\n //this.paymentLibComponent.SERVICEREQUEST = \"true\";\n this.paymentLibComponent.isFromServiceRequestPage = false;\n if(this.isServiceRequest !== 'false') {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n }\n this.paymentLibComponent.isFromRefundStatusPage = false;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.resetOrderData();\n let partUrl = this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n if(this.isServiceRequest === 'false') {\n partUrl += this.paymentLibComponent.TAKEPAYMENT ? '&takePayment=true' : '&takePayment=false';\n }\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += this.isServiceRequest !== 'false' ? '&servicerequest=true' : '&servicerequest=false';\n partUrl += `&caseType=${this.paymentLibComponent.CASETYPE}`;\n const url = `/payment-history/${this.paymentLibComponent.CCD_CASE_NUMBER}?view=case-transactions&selectedOption=${this.paymentLibComponent.SELECTED_OPTION}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n\n addRemission(fee: IFee) {\n if(this.chkIsAddRemissionBtnEnable(fee)) {\n this.feeId = fee;\n this.viewStatus = 'addremission';\n this.payment = this.orderDetail[0].payments[0];\n this.paymentViewService.getApportionPaymentDetails(this.orderDetail[0].payments[0].reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n \n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n \n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.paymentViewService.getApportionPaymentDetails(payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj.reference === payment.reference);\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n this.viewStatus = 'addrefundforremission';\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n cancelRemoval() {\n this.viewStatus = 'main';\n }\n\n removeFee(fee: any) {\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n window.location.reload();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n issueRefund(payment: IPayment) {\n if (payment !== null && payment !== undefined) {\n if( this.chkIsIssueRefundBtnEnable(payment)) {\n this.paymentViewService.getApportionPaymentDetails(payment.reference).subscribe(\n paymentGroup => {\n paymentGroup.payments = paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(payment.reference));\n if(payment.over_payment > 0) {\n this.viewStatus = '';\n this.payment = payment;\n this.paymentGroupList = paymentGroup;\n this.viewCompStatus = 'overpayment';\n } else {\n this.viewStatus = 'issuerefund';\n this.viewCompStatus = '';\n this.paymentFees = paymentGroup.fees;\n this.payment = payment;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.isRefundRemission = true;\n }\n },\n (error: any) => this.errorMessage = error\n );\n }\n }\n }\n\n goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent({ paymentGroupReference, paymentReference, paymentMethod });\n }\n\n goToPaymentViewComponent(paymentGroup: any) {\n this.paymentLibComponent.paymentMethod = paymentGroup.paymentMethod;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentGroup.paymentReference;\n this.OrderslistService.setOrderRef(this.orderRef);\n this.OrderslistService.setorderCCDEvent(this.orderCCDEvent);\n this.OrderslistService.setorderCreated(this.orderCreated);\n this.OrderslistService.setorderDetail(this.orderDetail);\n this.OrderslistService.setorderParty(this.orderParty);\n this.OrderslistService.setorderTotalPayments(this.orderTotalPayments);\n this.OrderslistService.setorderRemissionTotal(this.orderRemissionTotal);\n this.OrderslistService.setorderFeesTotal(this.orderFeesTotal);\n this.viewStatus = 'payment-view';\n }\n\n chkIsIssueRefundBtnEnable(payment: IPayment): boolean {\n if (payment !== null && payment !== undefined) {\n return payment.issue_refund && payment.refund_enable\n } else {\n return false;\n }\n }\n\n chkIsAddRefundBtnEnable(remission: IRemission): boolean {\n if (remission !== null && remission !== undefined) {\n return remission.add_refund;\n } else {\n return false;\n }\n }\n\n chkIsAddRemissionBtnEnable(fee: IFee): boolean {\n if (fee !== null && fee !== undefined) {\n return fee.add_remission && fee.remission_enable;\n } else {\n return false\n }\n }\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n\n selectPymentOption(paymentType: string) {\n this.paymentType = paymentType;\n this.isContinueBtnDisabled = false;\n }\n goToPaymentViewComp() {\n this.viewCompStatus = '';\n this.viewStatus = 'paymentview';\n }\n continuePayment(paymentgrp: IPaymentGroup) {\n \n if (this.paymentType === 'op') {\n this.isFullyRefund = false\n this.viewStatus = '';\n this.viewCompStatus = 'overPaymentAddressCapture';\n } else if(this.paymentType === 'fp') {\n this.isFullyRefund = true\n this.paymentGroupList = paymentgrp;\n this.viewStatus = 'issuerefund';\n this.viewCompStatus = \"\";\n this.isRefundRemission = true;\n this.paymentLibComponent.isFromPaymentDetailPage = true;\n this.isFromPaymentDetailPage = true;\n this.isFromServiceRequestPage = this.paymentLibComponent.isFromServiceRequestPage;\n }\n }\n getContactDetails(obj:IRefundContactDetails) {\n this.contactDetailsObj = obj;\n this.viewStatus = '';\n this.viewCompStatus = 'overpaymentcheckandanswer';\n }\n gotoPaymentSelectPage(event: Event) {\n event.preventDefault();\n this.viewStatus = '';\n this.viewCompStatus = 'overpayment';\n }\n gotoAddressPage(note?: IRefundContactDetails) {\n if (note) {\n this.notification = { contact_details: note, notification_type: note.notification_type };\n }\n this.errorMessage = '';\n this.viewStatus = '';\n this.viewCompStatus = 'overPaymentAddressCapture';\n }\n processRefund() {\n this.isConfirmationBtnDisabled = true;\n this.errorMessage = '';\n const obj = this.paymentGroupList.fees[0];\n this.fees = [{ id: obj.id, \n code: obj.code,\n version:obj.version, \n apportion_amount: obj.apportion_amount,\n calculated_amount: obj.calculated_amount,\n updated_volume: obj.updated_volume ? obj.updated_volume : obj.volume,\n volume: obj.volume,\n refund_amount: this.getOverPaymentValue() }];\n const requestBody = new PostRefundRetroRemission(this.contactDetailsObj,this.fees, this.paymentGroupList.payments[0].reference, 'RR037', \n this.getOverPaymentValue(), 'op');\n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n })\n }\n\n getOverPaymentValue() {\n let feesOverPayment = 0;\n this.paymentGroupList.fees.forEach(fee => {\n feesOverPayment += fee.over_payment;\n });\n return feesOverPayment > 0 ? feesOverPayment : this.paymentGroupList.payments[0].over_payment;\n\n }\n}","export class IserviceRequestCardPayment {\n amount: string\n currency: string\n language: string\n \n constructor(amount : string) {\n this.amount = amount;\n this.currency = 'GBP';\n this.language = 'string';\n } \n}\n ","export class IserviceRequestPbaPayment {\n account_number: string;\n amount: string\n currency: string\n customer_reference: string\n organisation_name: string\n \n constructor(account_number : string, amount : string, customer_reference: string, orgName: string) {\n this.account_number = account_number;\n this.amount = amount;\n this.currency = 'GBP';\n this.customer_reference = customer_reference;\n this.organisation_name = orgName;\n } \n}\n ","import { Component, OnInit, Input} from '@angular/core';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IserviceRequestCardPayment } from '../../interfaces/IserviceRequestCardPayment';\nimport { IserviceRequestPbaPayment } from '../../interfaces/IserviceRequestPbaPayment';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-pba-payment',\n templateUrl: './pba-payment.component.html',\n styleUrls: ['./pba-payment.component.scss']\n})\nexport class PbaPaymentComponent implements OnInit {\n @Input() pbaPayOrderRef: any;\n viewStatus: string;\n pbaAccountList: string[];\n isPBAAccountHold: boolean = false;\n errorMsg: any;\n isCardPaymentSuccess: boolean = true;\n isInSufficiantFund: boolean = false;\n isPBAAccountNotExist: boolean = false;\n isPBAServerError: boolean = false;\n isGetPBAAccountSucceed: boolean = false;\n selectedPbaAccount: string = '';\n pbaAccountRef: string = '';\n isPbaAccountSelected: boolean = false;\n isCardPaymentSelected: boolean = false;\n isPBADropdownSelected: boolean = false;\n isContinueButtondisabled: boolean = true;\n isPBAAccountPaymentSuccess: boolean = false;\n pbaAccountrPaymentResult: any;\n orgName: string = '';\n\n constructor(private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService) {}\n\n ngOnInit() {\n this.pbaPayOrderRef = this.paymentLibComponent.pbaPayOrderRef;\n this.viewStatus = 'pba-payment';\n this.errorMsg = null;\n this.paymentViewService.getPBAaccountDetails()\n .subscribe(\n result => {\n this.isGetPBAAccountSucceed = true;\n this.orgName = result.organisationEntityResponse.name;\n this.pbaAccountList = result.organisationEntityResponse.paymentAccount;\n },\n error => {\n this.errorMsg = error;\n }\n );\n\n }\n selectpbaaccount(args) {\n if(args.currentTarget.id === 'pbaAccountNumber') {\n this.isPBADropdownSelected = true;\n this.selectedPbaAccount = args.target.value; \n }\n if(args.currentTarget.id === 'pbaAccountRef') {\n this.pbaAccountRef = args.target.value; \n }\n if(this.selectedPbaAccount !== '' && this.pbaAccountRef !== \"\") {\n this.isContinueButtondisabled = false;\n } else {\n this.isContinueButtondisabled = true;\n }\n }\n\n saveAndContinue() {\n\n if(this.isPbaAccountSelected) {\n this.isInSufficiantFund = false;\n this.isPBAAccountNotExist = false;\n this.isPBAServerError = false;\n this.isPBAAccountPaymentSuccess = false;\n if ( this.pbaAccountList.indexOf(this.selectedPbaAccount) !== -1 ) {\n const requestBody = new IserviceRequestPbaPayment(\n this.selectedPbaAccount, this.pbaPayOrderRef.orderTotalFees, this.pbaAccountRef, this.orgName);\n this.paymentViewService.postPBAaccountPayment(this.pbaPayOrderRef.orderRefId, requestBody)\n .subscribe(\n r => {\n try {\n this.pbaAccountrPaymentResult = JSON.parse(r);\n } catch(e) {\n this.pbaAccountrPaymentResult = r;\n }\n this.isPBAAccountPaymentSuccess = true;\n },\n e => {\n if(e.status == '402') {\n this.isInSufficiantFund = true; \n } else if(e.status == '410') {\n this.isPBAAccountNotExist = true;\n } else if(e.status == '412') {\n this.isPBAAccountHold = true;\n } else {\n this.isPBAServerError = true;\n }\n }\n );\n } else {\n this.isPBAServerError = true;\n }\n } else if (this.isCardPaymentSelected) {\n this.cardPayment();\n }\n\n }\n cardPayment() {\n this.isCardPaymentSuccess = true;\n const requestBody = new IserviceRequestCardPayment (\n this.pbaPayOrderRef.orderTotalFees);\n this.paymentViewService.postWays2PayCardPayment(this.pbaPayOrderRef.orderRefId, requestBody)\n .subscribe(\n result => {\n const paymentUrl = JSON.parse(result).next_url;\n window.location.href = paymentUrl;\n },\n error => {\n this.isCardPaymentSuccess = false;\n }\n );\n\n }\n selectPaymentMethod(type: string) {\n if(type === 'PBA') {\n this.isPbaAccountSelected = true;\n this.isCardPaymentSelected = false;\n this.isPBADropdownSelected = false\n this.isContinueButtondisabled = true;\n this.selectedPbaAccount = null;\n } else if (type === 'CARD') {\n this.isPbaAccountSelected = false;\n this.isCardPaymentSelected = true;\n this.isPBADropdownSelected = false\n this.isContinueButtondisabled = false;\n }\n }\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = false;\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n }\n}\n","import { NgModule } from '@angular/core';\nimport { HttpClientModule } from '@angular/common/http';\nimport { CommonModule } from '@angular/common';\n\nimport { PaymentListComponent } from './components/payment-list/payment-list.component';\nimport { PaymentViewComponent } from './components/payment-view/payment-view.component';\nimport { ProcessRefundComponent } from './components/process-refund/process-refund.component';\nimport { RefundListComponent } from './components/refund-list/refund-list.component';\n\nimport { CardDetailsComponent } from './components/card-details/card-details.component';\nimport { PageNotFoundComponent } from './components/page-not-found.component';\nimport { PaymentLibComponent } from './payment-lib.component';\nimport { StatusHistoryComponent } from './components/status-history/status-history.component';\nimport { ContactDetailsComponent } from './components/contact-details/contact-details.component';\nimport { PbaDetailsComponent } from './components/pba-details/pba-details.component';\nimport { LoggerService } from './services/shared/logger/logger.service';\nimport { ConsoleLoggerService } from './services/shared/logger/console-logger.service';\nimport { WebComponentHttpClient } from './services/shared/httpclient/webcomponent.http.client';\nimport { CaseTransactionsComponent } from './components/case-transactions/case-transactions.component';\nimport { FeeSummaryComponent } from './components/fee-summary/fee-summary.component';\nimport { ErrorBannerComponent } from './components/error-banner/error-banner.component';\nimport { MarkUnidentifiedPaymentComponent } from './components/mark-unidentified-payment/mark-unidentified-payment.component';\nimport { MarkUnsolicitedPaymentComponent } from './components/mark-unsolicited-payment/mark-unsolicited-payment.component';\nimport { UnprocessedPaymentsComponent } from './components/unprocessed-payments/unprocessed-payments.component';\nimport { ProcessedPaymentsComponent } from './components/processed-payments/processed-payments.component';\nimport { AllocatePaymentsComponent } from './components/allocate-payments/allocate-payments.component';\nimport { AddRemissionComponent } from './components/add-remission/add-remission.component';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { CcdHyphensPipe } from './pipes/ccd-hyphens.pipe';\nimport { CapitalizePipe } from './pipes/capitalize.pipe';\nimport { keyValuePipe } from './pipes/key-value.pipe';\nimport { SanitizeHtmlPipe } from './pipes/sanitize-html.pipe';\nimport { ReportsComponent } from './components/reports/reports.component';\nimport { XlFileService } from './services/xl-file/xl-file.service';\nimport { TableComponent } from './components/table/table.component';\nimport { MatTableModule } from '@angular/material/table';\nimport { MatPaginatorModule } from '@angular/material/paginator';\nimport { MatSortModule } from '@angular/material/sort';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\n// import { BrowserAnimationsModule } from '@angular/platform-browser/animations';\n// import { NoopAnimationsModule } from '@angular/platform-browser/animations';\nimport { RefundStatusComponent } from './components/refund-status/refund-status.component';\nimport { ServiceRequestComponent } from './components/service-request/service-request.component';\nimport { PbaPaymentComponent } from './components/pba-payment/pba-payment.component';\n\n@NgModule({\n imports: [\n CommonModule,\n HttpClientModule,\n FormsModule,\n ReactiveFormsModule,\n MatTableModule,\n MatPaginatorModule,\n MatSortModule,\n MatFormFieldModule,\n MatInputModule,\n // BrowserAnimationsModule,\n // NoopAnimationsModule\n ],\n declarations: [\n PaymentLibComponent,\n PaymentListComponent,\n PaymentViewComponent,\n PbaPaymentComponent,\n ContactDetailsComponent,\n ProcessRefundComponent,\n RefundListComponent,\n CardDetailsComponent,\n PageNotFoundComponent,\n StatusHistoryComponent,\n MarkUnidentifiedPaymentComponent,\n MarkUnsolicitedPaymentComponent,\n UnprocessedPaymentsComponent,\n ProcessedPaymentsComponent,\n AllocatePaymentsComponent,\n PbaDetailsComponent,\n CaseTransactionsComponent,\n FeeSummaryComponent,\n AddRemissionComponent,\n CcdHyphensPipe,\n CapitalizePipe,\n keyValuePipe,\n SanitizeHtmlPipe,\n ReportsComponent,\n ErrorBannerComponent,\n TableComponent,\n RefundStatusComponent,\n ServiceRequestComponent\n ],\n exports: [PaymentLibComponent],\n providers: [\n { provide: LoggerService, useClass: ConsoleLoggerService },\n XlFileService,\n WebComponentHttpClient\n ]\n})\n\nexport class PaymentLibModule { }\n"],"names":["PaymentLibService","prototype","setApiRootUrl","apiRoot","this","API_ROOT","getApiRootUrl","setBulkScanApiRootUrl","bulkscanapiRoot","BULKSCAN_API_ROOT","getBulkScanApiRootUrl","setRefundndsApiRootUrl","refundsapiRoot","REFUNDS_API_ROOT","getRefundsApiRootUrl","setNoticationApiRootUrl","notificationapiRoot","NOTIFICATION_API_ROOT","getNoticationApiRootUrl","setCardPaymentReturnUrl","cardPaymentReturnUrl","CARDPAYMENTRETURNURL","getCardPaymentReturnUrl","Injectable","args","providedIn","OrderslistService","setOrdersList","orderLevelFees","ordersList","next","Object","assign","getOrdersList","setRefundView","refundList","refundView","getRefundView","setCaseType","caseType","getCaseType","setCCDCaseNumber","ccdCaseNumber","getCCDCaseNumber","setFeeExists","feeExists","getFeeExists","setisFromServiceRequestPage","isFromServiceRequestPage","getisFromServiceRequestPages","setOrderRefId","OrderRefId","getSelectedOrderRefId","setnavigationPage","navigationPage","getnavigationPageValue","setpaymentPageView","paymentpageList","paymentPageView","getpaymentPageView","setUserRolesList","rolesList","getUserRolesList","setorderDetail","orderDetail","getorderDetail","setOrderRef","orderRef","getorderRefs","setorderCCDEvent","orderCCDEvent","getorderCCDEvents","setorderCreated","orderCreated","getorderCreateds","setorderParty","orderParty","getorderPartys","setorderRemissionTotal","orderRemissionTotal","getorderRemissionTotals","setorderFeesTotal","orderFeesTotal","getorderFeesTotals","setorderTotalPayments","orderTotalPayments","getoorderTotalPaymentss","BehaviorSubject","getcaseType","asObservable","getFeeExist","getCCDCaseNumberforRefund","getisFromServiceRequestPage","getOrderRefId","getnavigationPage","getorderRef","getorderCCDEvent","getorderCreated","getorderParty","getorderRemissionTotal","getorderFeesTotal","getorderTotalPayments","PaymentLibComponent","ngAfterContentChecked","cd","detectChanges","ngOnInit","paymentLibService","LOGGEDINUSERROLES","length","PAYMENT_GROUP_REF","paymentGroupReference","DCN_NUMBER","bspaymentdcn","REFUNDLIST","VIEW","viewName","isTakePayment","TAKEPAYMENT","Component","selector","template","ChangeDetectorRef","Input","unProcessedPaymentServiceId","isFromPayBubble","unProcessedPayment","orderPendingPayments","ErrorHandlerService","handleError","err","errorMessage","error","Error","message","status","undefined","JSON","parse","statusCode","messsage","stringify","_throw","getServerErrorMessage","isErrorExist","title","body","showError","LoggerService","invokeConsoleMethod","type","PaymentListService","getPaymentByCcdCaseNumber","paymentMethod","logger","info","http","get","withCredentials","pipe","catchError","errorHandlerService","HttpClient","PaymentListComponent","_this","paymentListService","paymentLibComponent","CCD_CASE_NUMBER","PAYMENT_METHOD","subscribe","payments","loadPaymentViewComponent","paymentReference","__values","o","s","Symbol","iterator","m","i","call","value","done","TypeError","WebComponentHttpClient","post","url","options","opts","addHeaders","put","delete","patch","csrfToken","meta","getTag","headers","forEach","element","document","cookie","split","find","row","startsWith","content","HttpHeaders","responseType","Meta","PaymentViewService","getPaymentDetails","getPaymentGroupDetails","getApportionPaymentDetails","getPBAaccountDetails","postWays2PayCardPayment","serviceRef","rurl","replace","https","postPBAaccountPayment","randomKey","Math","random","toString","join","postBSPayments","postBSUnidentifiedPayments","postBSUnsolicitedPayments","postBSAllocationPayments","postPaymentGroupWithRemissions","feeId","deleteFeeFromPaymentGroup","postPaymentToPayHub","paymentGroupRef","postPaymentAntennaToPayHub","downloadSelectedReport","reportName","startDate","endDate","downloadFailureReport","getBSfeature","getSiteID","getPartyDetails","caseNumber","postRefundsReason","postPaymentGroupWithRetroRemissions","postRefundRetroRemission","getPaymentFailure","PostRefundRetroRemission","contact_details","fees","payment_reference","refund_reason","total_refund_amount","is_over_payment","PaymentViewComponent","selectedOption","SELECTED_OPTION","dcnNumber","isTurnOff","ISTURNOFF","serviceReference","viewStatus","paymentViewService","paymentGroup","paymentAllocation","fee","isRemissionsMatch","remissions","rem","fee_code","code","push","paymentFees","filter","paymentGroupObj","includes","payment_allocation","isStatusAllocated","allocation_status","res","payment_failure_list","reverse","allPaymentsFailure","payment_failure_initiated","payment_failure_closed","e","errorMsg","defineProperty","method","channel","goToPaymentList","getOverPaymentValue","feesOverPayment","over_payment","goToServiceRequestPage","SERVICEREQUEST","window","location","reload","goToCaseTransationPage","event","preventDefault","data","ISBSENABLE","resetOrderData","addRemission","chkIsAddRemissionBtnEnable","reference","payment","isFromPaymentDetailPage","isRefundRemission","checkForFees","processRefund","obj","isConfirmationBtnDisabled","requestBody","id","version","apportion_amount","calculated_amount","updated_volume","volume","refund_amount","contactDetailsObj","response","viewCompStatus","refundReference","refund_reference","refundAmount","gotoAddressPage","note","notification","notification_type","addRefundForRemission","remission","remissionFeeAmt","net_amount","goToPaymentViewComponent","issueRefund","paymentgrp","chkIsIssueRefundBtnEnable","getRemissionByFeeCode","feeCode","remissions_1","tslib_1.__values","remissions_1_1","issue_refund","refund_enable","chkIsAddRefundBtnEnable","add_refund","add_remission","remission_enable","selectPymentOption","paymentType","isContinueBtnDisabled","continuePayment","isFullyRefund","gotoPaymentSelectPage","getContactDetails","goToPaymentFailuePage","selectedPaymentsStatus","goBackToPaymentView","isAddFeeBtnEnabled","isIssueRefunfBtnEnable","allowedRolesToAccessRefund","RefundsService","getRefundReasons","getRefundRejectReasons","getRefundActions","patchRefundActions","reviewerAction","getRefundList","refundstatus","selfexclusive","getRefundStatusHistory","getRefundStatusList","getUserDetails","postIssueRefund","putResendOrEdit","refundRef","notificationType","patchResubmitRefund","ProcessRefundComponent","refundActionList","getErrorMessage","processRefundForm","formBuilder","group","refundActionField","FormControl","Validators","compose","required","refundRejectReasonField","sendMeBackField","minLength","maxLength","pattern","enterReasonField","refundlistsource","ccd_case_number","isFromRefundListPage","cpoDetails","isCPODown","checkRefundActions","refundActionsHasError","isReasonFieldEmpty","isReasonEmpty","isReasonInvalid","refundRejectReasonHasError","isConfirmButtondisabled","isSendMeBackClicked","isRejectClicked","isOtherClicked","refundRejectReasonList","processRefundSubmit","processRefundRequest","controls","resetForm","processFormError","errors","dirty","valid","reason","isSuccesspageEnable","successMsg","invalid","minlength","actualLength","maxlength","bodyTxt","loadRefundListPage","navigationpage","isRefundStatusView","loadRefundsHomePage","redirecttoRefundListPage","loadCaseTransactionPage","vals","field","isReasonFieldInvalid","reasonFieldMinHasError","reasonFieldMaxHasError","goToCaseReview","router","navigate","relativeTo","activeRoute","FormBuilder","Router","ActivatedRoute","sendmeback","RefundListComponent","userLst","some","isAuthorized","isApproveTableVisible","tableApprovalHeader","tableRejectedHeader","refundService","approvalStatus","submittedRefundList","rejectStatus","rejectedRefundList","isRejectTableVisible","CardDetailsService","getCardDetails","CardDetailsComponent","cardDetailsService","cardDetails","pageTitle","PageNotFoundComponent","StatusHistoryService","getPaymentStatusesByReference","StatusHistoryComponent","statusHistoryService","statuses","NotificationService","getRefundNotification","getAddressByPostcode","postcode","ContactDetailsComponent","emailAddressForm","email","postCodeForm","manualAddressForm","addressl1","addressl2","townorcity","county","mpostcode","country","addressObj","setEditDetails","isEditOperationInRefundList","isEmailSAddressClicked","isPostcodeClicked","isManualAddressClicked","setValue","patchValue","address_line","city","postal_code","selectContactOption","isLinkedClied","finalFormSubmit","fieldCtrls","emailField","assignContactDetailsInFefundsList","assignContactDetails","emit","postcodeValidation","str","postcodeField","notificationService","refundsNotification","addressPostcodeList","isShowPickAddress","totalresults","postcodeAddress","isAddressBoxEmpty","addressLine","addressArray","ADDRESS","addressObject","POST_TOWN","LOCAL_CUSTODIAN_CODE_DESCRIPTION","POSTCODE","redirection","redirectToIssueRefund","val","isEmailEmpty","emailHasError","isPostcodeEmpty","postcodeHasError","isaddressLine1Empty","addressLine1HasError","addressLine2HasError","isTownOrCityEmpty","townOrCityHasError","isCountyEmpty","countyHasError","isMPostcodeEmpty","mpostcodeHasError","isCountryEmpty","Output","EventEmitter","PbaDetailsComponent","noop","ConsoleLoggerService","console","log","apply","CaseTransactionsService","getPaymentGroups","BulkScaningPaymentService","getBSPaymentsByCCD","getBSPaymentsByDCN","dcn","postBSAllocatePayment","paymentRef","postBSPaymentStrategic","postBSWoPGStrategic","patchBSChangeStatus","calculateOutStandingAmount","feesTotal","paymentsTotal","remissionsTotal","toUpperCase","amount","hwf_amount","removeUnwantedString","input","replaceText","CaseTransactionsComponent","serviceRequest","paymentView","payment_group_reference","goToPayementView","isGrpOutstandingAmtPositive","CASETYPE","EXC_REFERENCE","excReference","takePayment","serviceRequestValue","isBulkScanEnable","toLocaleLowerCase","isStrategicFixEnable","ISSFENABLE","caseTransactionsService","paymentGroups","isAnyFeeGroupAvilable","calculateAmounts","calculateOrderFeesAmounts","totalRefundAmount","calculateRefundAmount","setDefaults","goToOrderViewDetailSection","checkForExceptionRecord","totalPayments","totalRemissions","totalNonOffPayments","totalFees","getAllocationStatus","bulkScaningPaymentService","recordData","exception_record_reference","ccd_reference","isExceptionRecord","case_reference","isFeeOverPaymentExist_1","resetOrderVariables","overPaymentAmount","service_request_status","orderStatus","orderAddBtnEnable","orderRefId","orderTotalFees","orderReferenceObj","x","redirectToOrderFeeSearchPage","orderef","nonOffLinePayment","a","b","date_created","amount_due","clAmountDue","allocationLen","nonPayments","allPayments","remisison","totalRefundAmount_1","isFeeAmountZero_1","isNewPaymentGroup_1","isFeeRecordsExist","grpOutstandingAmount","index","isHistoricGroupAvailable","getGroupOutstandingAmount","redirectToFeeSearchPage","navigateByUrl","chkForAddRemission","redirectToremissionPage","redirectToReportsPage","loadFeeSummaryPage","selectedUnprocessedFeeEvent","unprocessedRecordId","isUnprocessedRecordSelected","getUnprocessedFeeCount","unProcessedRecordCount","unprocessedRecordCount","calculateAmountDue","confirmRemoveFee","isRemoveBtnDisabled","cancelRemoval","removeFee","success","isCheckAmountdueExist","amountDue","chkIssueRefundBtnEnable","chkForPBAPayment","check4AllowedRoles2AccessRefund","_b","_c","allowFurtherAccessAfter4Days","isPBA","chkIsRefundRemissionBtnEnable","isRefundRemissionBtnEnable","loadPBAAccountPage","pbaPayOrderRef","isAddRemissionEnable","orderRemissionDetails","ispaymentGroupApisuccess","isAddRemissionBtnEnabled","isEligible4PBAPayment","currentDate","Date","role","indexOf","check4AllowedRoles2AccessPBApayment","tmp4DayAgo","setDate","getDate","PaymentToPayhubRequest","currency","description","provider","toFixed","case_type","PayhubAntennaRequest","BS_ENABLE_FLAG","FeeSummaryComponent","bsPaymentDcnNumber","platForm","features","result","feature","uid","enable","getUnassignedPaymentlist","getPaymentGroup","unassignedPayments","service","responsible_service_id","upPaymentErrorMessage","currentFee","isPaymentExist","isRemissionsExist","totalAfterRemission","isFeeAmountZero","outStandingAmount","partUrl","cancelRemission","page","antennaReqBody","isBackButtonEnable","href","goToAllocatePage","Location","ErrorBannerComponent","UnidentifiedPaymentsRequest","unidentified_reason","payment_allocation_status","name","AllocatePaymentRequest","unAllocatedPayment","exceptionRecord","allocatedRequest","banked_date","date_banked","exception_record","document_control_number","dcn_reference","external_provider","giro_slip_no","bgc_reference","payer_name","payment_channel","payment_status","payment_method","payment_allocation_dto","MarkUnidentifiedPaymentComponent","getUnassignedPayment","markPaymentUnidentifiedForm","investicationDetail","unassignedRecord","siteID","beCcdNumber","beExceptionNumber","exceptionReference","ccdReference","trimUnderscore","saveAndContinue","investicationField","formerror","investigationComment","isInvesticationDetailEmpty","investicationDetailHasError","investicationDetailMinHasError","investicationDetailMaxHasError","confirmPayments","postStrategicBody","res1","res2","response2","reqBody","res3","gotoCasetransationPage","user_id","cancelMarkUnidentifiedPayments","UnsolicitedPaymentsRequest","responsible_office","responsible_person","email_id","receiving_office","receiving_email_address","sending_email_address","MarkUnsolicitedPaymentComponent","siteids","isContinueButtondisabled","siteIDList","scrollTo","markPaymentUnsolicitedForm","responsibleOffice","responsiblePerson","emailId","selectedSiteId","reasonField","officeIdField","reasonHasError","reasonMinHasError","reasonMaxHasError","isResponsibleOfficeEmpty","responsibleOfficeHasError","cancelMarkUnsolicitedPayments","checkingFormValue","formFields","valueExists","hasOwnProperty","selectchange","target","selectedSiteName","selectedIndex","text","UnprocessedPaymentsComponent","isStFixEnable","FEE_RECORDS_EXISTS","setValuesForUnassignedRecord","unassignedRecordList","unassignedRecordListLength","serviceId","isExceptionCase","unprocessedPaymentSelectEvent","formatUnassignedRecordId","ID","recordId","loadUnsolicitedPage","selectedRecordReference","validateButtons","resetButtons","isAllocateToExistingFeebtnEnabled","isMarkAsUnidentifiedbtnEnabled","isAllocatedToNewFeebtnEnabled","PAYMENTREF","IS_OS_AMT_AVAILABLE","unprocessedPaymentUnSelectEvent","showDetailRow","unassignedRecordSelectedList","isRecordExist","ProcessedPaymentsComponent","redirectToPaymentViewPage","IAllocationPaymentsRequest","explanation","userName","user_name","AllocatePaymentsComponent","overUnderPaymentForm","moreDetails","fstCon","scndCn","selectedPaymentGroup","gotoSummaryPage","cancelAllocatePayment","confirmAllocatePayement","enCookieUserName","cookieUserName","decodeURIComponent","fullName","paymentDetailsField","paymentFormError","isEmptyCondtion","paymentReason","paymentExplanation","isOtherOptionSelected","isRemainingAmountGtZero","isRemainingAmountLtZero","userNameField","otherPaymentExplanation","finalServiceCall","paymentReasonHasError","paymentExplanationHasError","isPaymentDetailsEmpty","isPaymentDetailsInvalid","paymentDetailsMinHasError","paymentDetailsMaxHasError","isUserNameEmpty","isUserNameInvalid","GroupOutstandingAmount","remainingToBeAssigned","isMoreDetailsBoxHide","reset","paymentSectionLabel","feedbackUrlLabel","remainingAmount","afterFeeAllocateOutstanding","amountForAllocation","selectRadioButton","key","OrderListSelectEvent","reasonList","overPayment","hwfReward","wrongFee","notIssueCase","otherDeduction","shortFall","helpWithFee","other","explanationList","referRefund","noRefund","noCase","holdCase","heldCase","refund","duplicate","humanerror","caseWithdrawn","AddRemissionRequest","hwf_reference","AddRetroRemissionRequest","PostIssueRefundRetroRemission","remissionReference","contactDeatils","AddRemissionComponent","default","pattern1","pattern2","remessionPayment","isPaymentSuccess","option","remissionForm","remissionCode","refundReason","refundDDReason","feeAmount","feesList","array","onlySelf","refundPaymentReference","refundFeesList","refundReasons","recently_used","commonRefundReasons","sort","localeCompare","changeRefundReason","creds","selected","noneSelected","item","querySelectorAll","el","classList","remove","check_en","v1","AppAmt","Volume","ele","getElementById","formArray","checked","at","removeAttribute","setAttribute","resetRemissionForm","remissionctrls","isRemissionLessThanFee","setErrors","confirmRemission","newNetAmount","remissionAmount","trim","LDUrl","routeReuseStrategy","shouldReuseRoute","onSameUrlNavigation","isRemissionCodeEmpty","remissionCodeHasError","isAmountEmpty","amountHasError","isRemissionLessThanFeeError","addRemissionCode","isFromCheckAnsPage","gotoAddRetroRemissionCodePage","iscancelClicked","refundListAmount","isFromRefundStatusPage","refundListReason","selectedRefundReason","selectedValue","gotoCheckRetroRemissionPage","gotoAmountRetroRemission","gotoProcessRetroRemissionPage","gotoProcessRetroRemission","confirmRetroRemission","retroRemission","remissionamt","isRemissionApplied","remission_reference","gotoIssueRefundConfirmation","reduce","c","refundHasError","displayRefundReason","gotoIssueRefundPage","gotoIssuePage","checkboxs","getElementsByTagName","quantity","amountToRefund","apportionAmount","j","fullRefund","elementId","getErrorClass","quantityUpdated","refundAmtForFeeVolumes","innerText","allowedRefundAmount","refundFees","calAmtToRefund","amtToRefund","gotoContactDetailsPage","add","changeIssueRefundReason","confirmIssueRefund","map","gotoRefundReasonPage","localStorage","setItem","isRefundReasonsSelected","showReasonText","reasonLength","gotoPartialFeeRefundScreen","gotoServiceRequestPage","sendOrderDetail","sendOrderRef","gotoRemissionSuccess","gotoCasetransationPageCancelBtnClicked","changeRefundAmount","getFormattedCurrency","concat","hasErrors","class","Array","CcdHyphensPipe","transform","match","Pipe","CapitalizePipe","slice","keyValuePipe","keys","SanitizeHtmlPipe","sanitizer","bypassSecurityTrustHtml","DomSanitizer","XlFileService","exportAsExcelFile","json","excelFileName","worksheet","XLSX.utils","json_to_sheet","header","setDataLossReportHeaders","setUnprocessedReportHeaders","setProcessedUnallocatedReportHeaders","setShortFallReportHeaders","autoFitColumns","excelBuffer","XLSX.write","Sheets","SheetNames","bookType","saveAsExcelFile","objectMaxLength","ColWidth","values","width","A1","v","B1","C1","D1","E1","F1","G1","H1","I1","J1","K1","L1","M1","N1","buffer","fileName","Blob","FileSaver.saveAs","ReportsComponent","fromValidation","getToday","toISOString","getSelectedFromDate","validateDates","reportsForm","selectedStartDate","tranformDate","selectedEndDate","isDateRangeMoreThanWeek","isDateRangeBetnWeek","isStartDateLesthanEndDate","selectedreport","downloadReport","dataLossRptDefault","isDownLoadButtondisabled","loss_resp","payment_asset_dcn","env_ref","env_item","resp_service_id","resp_service_name","bgc_batch","unProcessedRptDefault","exception_ref","ccd_ref","processedUnallocated","allocation_reason","ccd_exception_ref","ccd_case_ref","updated_by","shortFallsRptDefault","surplus_shortfall","balance","payment_amount","ccd_case_reference","ccd_exception_reference","processed_date","selectedReportName","applyDateFormat","substr","convertToFloatValue","Op","xlFileService","getFileName","loc","stDt","formatDate","enDt","now","timestamp","getTwodigit","getHours","getMinutes","getSeconds","getCamelCaseString","strDate","parts","amt","Number","parseFloat","TableComponent","STATUS","toLowerCase","isApprovalFlow","DATASOURCE","dataSource","MatTableDataSource","actualcount","r","_a","user_full_name","serviceLst","service_type","ngAfterViewInit","paginator","cdRef","applyFilter","filterValue","goToRefundProcessComponent","refundData","goToRefundViewComponent","isCallFromRefundList","ViewChild","MatPaginator","MatSort","displayedColumns","IPutNotificationRequest","contactDetails","recipient_email_address","recipient_postal_address","IResubmitRefundRequest","refund_fees","RefundStatusComponent","refundlist","isEliginbleToAccess","refundStatusForm","getRefundsNotification","getRefundsStatusHistoryList","isProcessRefund","refundButtonState","refund_status","statusHistoryList","refundStatusHistories","status_history_dto_list","isLastUpdatedByCurrentUser","last_updated_by_current_user","notificationList","goToRefundView","gotoReviewDetailsPage","gotoReviewAndReSubmitPage","oldRefundReason","changedAmount","refundreason","notes","isRefundBtnDisabled","gotoAmountPage","goToReviewAndSubmitView","getRefundListReason","refundCode","getRefundAmount","getRefundFees","fee_id","gotoReviewRefundConfirmationPage","resubmitRequest","gotoEditAddressDetails","isEditDetailsClicked","addressDetails","getContactDetailsForRefundList","gotoEditDetailsPage","submitEditDetail","isResendOperationSuccess","resendRequest","putResend","Event","isEditAddressDeatilsClicked","ServiceRequestComponent","isServiceRequest","goToServiceRquestComponent","paymentGroupList","goToPaymentViewComp","IserviceRequestCardPayment","language","IserviceRequestPbaPayment","account_number","customer_reference","orgName","organisation_name","PbaPaymentComponent","isGetPBAAccountSucceed","organisationEntityResponse","pbaAccountList","paymentAccount","selectpbaaccount","currentTarget","isPBADropdownSelected","selectedPbaAccount","pbaAccountRef","isPbaAccountSelected","isInSufficiantFund","isPBAAccountNotExist","isPBAServerError","isPBAAccountPaymentSuccess","pbaAccountrPaymentResult","isPBAAccountHold","isCardPaymentSelected","cardPayment","isCardPaymentSuccess","paymentUrl","next_url","selectPaymentMethod","NgModule","imports","CommonModule","HttpClientModule","FormsModule","ReactiveFormsModule","MatTableModule","MatPaginatorModule","MatSortModule","MatFormFieldModule","MatInputModule","declarations","exports","providers","provide","useClass","PaymentLibModule"],"mappings":"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"}
|
|
1
|
+
{"version":3,"sources":["ng://@hmcts/ccpay-web-component/lib/payment-lib.service.ts","ng://@hmcts/ccpay-web-component/lib/services/orderslist.service.ts","ng://@hmcts/ccpay-web-component/lib/payment-lib.component.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/error-handler.service.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/logger/logger.service.ts","ng://@hmcts/ccpay-web-component/lib/services/payment-list/payment-list.service.ts","ng://@hmcts/ccpay-web-component/lib/components/payment-list/payment-list.component.ts","node_modules/tslib/tslib.es6.js","ng://@hmcts/ccpay-web-component/lib/services/shared/httpclient/webcomponent.http.client.ts","ng://@hmcts/ccpay-web-component/lib/services/payment-view/payment-view.service.ts","ng://@hmcts/ccpay-web-component/lib/components/payment-view/payment-view.component.ts","ng://@hmcts/ccpay-web-component/lib/services/refunds/refunds.service.ts","ng://@hmcts/ccpay-web-component/lib/components/process-refund/process-refund.component.ts","ng://@hmcts/ccpay-web-component/lib/components/refund-list/refund-list.component.ts","ng://@hmcts/ccpay-web-component/lib/services/card-details/card-details.service.ts","ng://@hmcts/ccpay-web-component/lib/components/card-details/card-details.component.ts","ng://@hmcts/ccpay-web-component/lib/components/page-not-found.component.ts","ng://@hmcts/ccpay-web-component/lib/services/status-history/status-history.service.ts","ng://@hmcts/ccpay-web-component/lib/components/status-history/status-history.component.ts","ng://@hmcts/ccpay-web-component/lib/components/pba-details/pba-details.component.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/logger/console-logger.service.ts","ng://@hmcts/ccpay-web-component/lib/services/case-transactions/case-transactions.service.ts","ng://@hmcts/ccpay-web-component/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.ts","ng://@hmcts/ccpay-web-component/lib/components/case-transactions/case-transactions.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PaymentToPayhubRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PayhubAntennaRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/fee-summary/fee-summary.component.ts","ng://@hmcts/ccpay-web-component/lib/components/error-banner/error-banner.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/UnidentifiedPaymentsRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/AllocatePaymentRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/UnsolicitedPaymentsRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.ts","ng://@hmcts/ccpay-web-component/lib/components/unprocessed-payments/unprocessed-payments.component.ts","ng://@hmcts/ccpay-web-component/lib/components/processed-payments/processed-payments.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IAllocationPaymentsRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/allocate-payments/allocate-payments.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/AddRemissionRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/AddRetroRemissionRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PostRefundRetroRemission.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PostIssueRefundRetroRemission.ts","ng://@hmcts/ccpay-web-component/lib/components/add-remission/add-remission.component.ts","ng://@hmcts/ccpay-web-component/lib/pipes/ccd-hyphens.pipe.ts","ng://@hmcts/ccpay-web-component/lib/pipes/capitalize.pipe.ts","ng://@hmcts/ccpay-web-component/lib/pipes/key-value.pipe.ts","ng://@hmcts/ccpay-web-component/lib/pipes/sanitize-html.pipe.ts","ng://@hmcts/ccpay-web-component/lib/services/xl-file/xl-file.service.ts","ng://@hmcts/ccpay-web-component/lib/components/reports/reports.component.ts","ng://@hmcts/ccpay-web-component/lib/components/table/table.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IResubmitRefundRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/refund-status/refund-status.component.ts","ng://@hmcts/ccpay-web-component/lib/components/service-request/service-request.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IserviceRequestCardPayment.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IserviceRequestPbaPayment.ts","ng://@hmcts/ccpay-web-component/lib/components/pba-payment/pba-payment.component.ts","ng://@hmcts/ccpay-web-component/lib/payment-lib.module.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\n\nexport class PaymentLibService {\n API_ROOT: string;\n BULKSCAN_API_ROOT: string;\n REFUNDS_API_ROOT: string;\n CARDPAYMENTRETURNURL: string;\n\n constructor() { }\n\n setApiRootUrl(apiRoot: string): void {\n this.API_ROOT = apiRoot;\n }\n\n getApiRootUrl(): string {\n return this.API_ROOT;\n }\n\n setBulkScanApiRootUrl(bulkscanapiRoot: string): void {\n this.BULKSCAN_API_ROOT = bulkscanapiRoot;\n }\n\n getBulkScanApiRootUrl(): string {\n return this.BULKSCAN_API_ROOT;\n }\n\n setRefundndsApiRootUrl(refundsapiRoot: string): void {\n this.REFUNDS_API_ROOT = refundsapiRoot;\n }\n\n getRefundsApiRootUrl(): string {\n return this.REFUNDS_API_ROOT;\n }\n setCardPaymentReturnUrl(cardPaymentReturnUrl: string):void {\n this.CARDPAYMENTRETURNURL = cardPaymentReturnUrl;\n }\n getCardPaymentReturnUrl(): string {\n return this.CARDPAYMENTRETURNURL;\n }\n}\n","import { Injectable } from '@angular/core';\nimport { Observable, BehaviorSubject } from 'rxjs';\nimport {IOrderReferenceFee} from '../interfaces/IOrderReferenceFee';\nimport { IRefundList } from '../interfaces/IRefundList';\nimport { IPaymentView } from '../interfaces/IPaymentView'; \n\n@Injectable({\n providedIn: 'root'\n})\nexport class OrderslistService {\n private ordersList: BehaviorSubject<IOrderReferenceFee[]> = new BehaviorSubject<IOrderReferenceFee[]>(null);\n private refundView: BehaviorSubject<IRefundList> = new BehaviorSubject<IRefundList>(null);\n private caseType = new BehaviorSubject(\"\");\n getcaseType = this.caseType.asObservable();\n private feeExists = new BehaviorSubject<boolean>(null);\n getFeeExist = this.feeExists.asObservable();\n private ccdCaseNumber = new BehaviorSubject(\"\");\n getCCDCaseNumberforRefund = this.ccdCaseNumber.asObservable();\n private isFromServiceRequestPage = new BehaviorSubject<boolean>(null);\n getisFromServiceRequestPage = this.isFromServiceRequestPage.asObservable();\n private OrderRefId = new BehaviorSubject(\"\");\n getOrderRefId = this.OrderRefId.asObservable();\n private navigationPage = new BehaviorSubject(\"\");\n getnavigationPage = this.navigationPage.asObservable();\n\n private orderRef = new BehaviorSubject(\"\");\n getorderRef = this.orderRef.asObservable();\n private orderCCDEvent = new BehaviorSubject(\"\");\n getorderCCDEvent = this.caseType.asObservable();\n private orderCreated = new BehaviorSubject<Date>(null);\n getorderCreated = this.orderCreated.asObservable();\n private orderParty = new BehaviorSubject(\"\");\n getorderParty = this.orderParty.asObservable();\n private orderRemissionTotal = new BehaviorSubject<number>(null);\n getorderRemissionTotal = this.orderRemissionTotal.asObservable();\n private orderFeesTotal = new BehaviorSubject<number>(null);\n getorderFeesTotal = this.orderFeesTotal.asObservable();\n private orderTotalPayments = new BehaviorSubject<number>(null);\n getorderTotalPayments = this.orderTotalPayments.asObservable();\n private rolesList: BehaviorSubject<any[]> = new BehaviorSubject<any[]>(null);\n\n private orderDetail: BehaviorSubject<any[]> = new BehaviorSubject<any[]>(null);\n\n private paymentPageView: BehaviorSubject<IPaymentView> = new BehaviorSubject<IPaymentView>(null);\n\n constructor() { }\n\n setOrdersList(orderLevelFees: IOrderReferenceFee[]): void {\n this.ordersList.next(Object.assign([], orderLevelFees));\n }\n getOrdersList() {\n return this.ordersList;\n }\n\n setRefundView(refundList: IRefundList): void {\n this.refundView.next(Object.assign([], refundList));\n }\n getRefundView() {\n return this.refundView;\n }\n\n setCaseType(caseType: string){\n this.caseType.next(caseType);\n }\n getCaseType(){\n return this.caseType;\n }\n\n setCCDCaseNumber(ccdCaseNumber: string){\n this.ccdCaseNumber.next(ccdCaseNumber);\n }\n getCCDCaseNumber(){\n return this.ccdCaseNumber;\n }\n\n setFeeExists(feeExists: boolean){\n this.feeExists.next(feeExists);\n }\n getFeeExists(){\n return this.feeExists;\n } \n\n setisFromServiceRequestPage(isFromServiceRequestPage: boolean){\n this.isFromServiceRequestPage.next(isFromServiceRequestPage);\n }\n getisFromServiceRequestPages(){\n return this.isFromServiceRequestPage;\n }\n\n setOrderRefId(OrderRefId: string){\n this.OrderRefId.next(OrderRefId);\n }\n getSelectedOrderRefId(){\n return this.OrderRefId;\n }\n\n setnavigationPage(navigationPage: string){\n this.navigationPage.next(navigationPage);\n }\n getnavigationPageValue(){\n return this.navigationPage;\n }\n\n setpaymentPageView(paymentpageList: IPaymentView): void {\n this.paymentPageView.next(Object.assign([], paymentpageList));\n }\n getpaymentPageView() {\n return this.paymentPageView;\n }\n\n setUserRolesList(rolesList:any[]): void {\n this.rolesList.next(Object.assign([], rolesList));\n }\n getUserRolesList() {\n return this.rolesList;\n }\n\n setorderDetail(orderDetail:any[]): void {\n this.orderDetail.next(Object.assign([], orderDetail));\n }\n getorderDetail() {\n return this.orderDetail;\n }\n\n setOrderRef(orderRef: string){\n this.orderRef.next(orderRef);\n }\n getorderRefs(){\n return this.orderRef;\n }\n\n setorderCCDEvent(orderCCDEvent: string){\n this.orderCCDEvent.next(orderCCDEvent);\n }\n getorderCCDEvents(){\n return this.orderCCDEvent;\n }\n\n setorderCreated(orderCreated: Date){\n this.orderCreated.next(orderCreated);\n }\n getorderCreateds(){\n return this.orderCreated;\n }\n\n setorderParty(orderParty: string){\n this.orderParty.next(orderParty);\n }\n getorderPartys(){\n return this.orderParty;\n }\n\n setorderRemissionTotal(orderRemissionTotal: number){\n this.orderRemissionTotal.next(orderRemissionTotal);\n }\n getorderRemissionTotals(){\n return this.orderRemissionTotal;\n }\n\n setorderFeesTotal(orderFeesTotal: number){\n this.orderFeesTotal.next(orderFeesTotal);\n }\n getorderFeesTotals(){\n return this.orderFeesTotal;\n }\n\n setorderTotalPayments(orderTotalPayments: number){\n this.orderTotalPayments.next(orderTotalPayments);\n }\n getoorderTotalPaymentss(){\n return this.orderTotalPayments;\n }\n}\n","import { ChangeDetectorRef, Component, Input, OnInit } from '@angular/core';\nimport { PaymentLibService } from './payment-lib.service';\nimport { IBSPayments } from './interfaces/IBSPayments';\nimport { OrderslistService } from './services/orderslist.service';\nimport { IPayment } from './interfaces/IPayment';\n\n@Component({\n selector: 'ccpay-payment-lib',\n 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\n [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\"\n [API_ROOT]=\"API_ROOT\"\n *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 [ISPAYMENTSTATUSENABLED] = \"ISPAYMENTSTATUSENABLED\"\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\" [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 `\n})\n\nexport class PaymentLibComponent implements OnInit {\n @Input('API_ROOT') API_ROOT: string;\n @Input('BULKSCAN_API_ROOT') BULKSCAN_API_ROOT: string;\n @Input('REFUNDS_API_ROOT') REFUNDS_API_ROOT: string;\n @Input('CARDPAYMENTRETURNURL') CARDPAYMENTRETURNURL: string;\n @Input('CCD_CASE_NUMBER') CCD_CASE_NUMBER: string;\n @Input('EXC_REFERENCE') EXC_REFERENCE: string;\n @Input('PAYMENT_METHOD') PAYMENT_METHOD: string;\n @Input('VIEW') VIEW: string;\n @Input('VIEWSERVICE') VIEWSERVICE: string;\n @Input('PAYMENT_GROUP_REF') PAYMENT_GROUP_REF?: string;\n @Input('TAKEPAYMENT') TAKEPAYMENT: boolean;\n @Input('SERVICEREQUEST') SERVICEREQUEST: string;\n @Input('DCN_NUMBER') DCN_NUMBER: string;\n @Input('SELECTED_OPTION') SELECTED_OPTION: string;\n @Input('ISBSENABLE') ISBSENABLE: Boolean;\n @Input('ISSFENABLE') ISSFENABLE: boolean;\n @Input('ISTURNOFF') ISTURNOFF: boolean;\n @Input('CASETYPE') CASETYPE: string;\n @Input('ISOLDPCIPALOFF') ISOLDPCIPALOFF: boolean;\n @Input('ISNEWPCIPALOFF') ISNEWPCIPALOFF: boolean;\n @Input('ISPAYMENTSTATUSENABLED') ISPAYMENTSTATUSENABLED: boolean;\n @Input('rootUrl') rootUrl: boolean;\n @Input('REFUNDLIST') REFUNDLIST: string;\n @Input('USERID') USERID: string;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: any[];\n @Input('LOGGEDINUSEREMAIL') LOGGEDINUSEREMAIL: string;\n @Input('isFromServiceRequestPage') isFromServiceRequestPage: boolean;\n\n paymentMethod: string;\n bspaymentdcn: string;\n unProcessedPaymentServiceId: string = null;\n paymentGroupReference: string;\n paymentReference: string;\n refundReference: string;\n refundlistsource: any;\n viewName: string;\n isTurnOff: boolean;\n caseType: string;\n isOldPcipalOff: boolean;\n isNewPcipalOff: boolean;\n unProcessedPayment: IBSPayments = null;\n isRefundStatusView: boolean;\n isRedirectFromCaseTransactionPage: string;\n isCallFromRefundList: boolean;\n isFromRefundStatusPage: boolean;\n iscancelClicked : boolean;\n isFromPaymentDetailPage: boolean;\n pbaPayOrderRef: IPayment;\n isTakePayment: boolean;\n\n orderDetail: any[];\n orderRef: string;\n orderStatus: string;\n orderParty: string;\n orderCreated: Date;\n orderCCDEvent: string;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n orderFeesTotal: number = 0.00;\n orderRemissionTotal: number = 0.00;\n orderTotalPayments: number = 0.00;\n orderPendingPayments: number = 0.00;\n\n constructor(private paymentLibService: PaymentLibService,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) { }\n ngAfterContentChecked(): void {\n this.cd.detectChanges();\n } \n\n\n ngOnInit() {\n this.paymentLibService.setApiRootUrl(this.API_ROOT);\n this.paymentLibService.setBulkScanApiRootUrl(this.BULKSCAN_API_ROOT);\n this.paymentLibService.setRefundndsApiRootUrl(this.REFUNDS_API_ROOT);\n this.paymentLibService.setCardPaymentReturnUrl(this.CARDPAYMENTRETURNURL);\n\n if(this.LOGGEDINUSERROLES.length > 0) {\n this.OrderslistService.setUserRolesList(this.LOGGEDINUSERROLES);\n }\n if (this.PAYMENT_GROUP_REF) {\n this.paymentGroupReference = this.PAYMENT_GROUP_REF;\n }\n if (this.DCN_NUMBER) {\n this.bspaymentdcn = this.DCN_NUMBER;\n }\n if (this.REFUNDLIST === \"true\") {\n this.VIEW = 'refund-list';\n this.viewName = this.VIEW;\n }\n if (this.VIEW === 'fee-summary') {\n this.viewName = 'fee-summary';\n } else if (this.VIEW !== 'reports' && this.VIEW !== 'refund-list') {\n this.viewName = 'case-transactions';\n } else {\n this.viewName = this.VIEW;\n }\n\n if (this.isTakePayment) {\n this.TAKEPAYMENT = true;\n }\n }\n}\n","import { Injectable } from '@angular/core';\nimport { _throw } from 'rxjs/observable/throw';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { HttpErrorResponse } from '@angular/common/http';\nimport { stringify } from '@angular/core/src/util';\n\n@Injectable({\n providedIn: 'root'\n})\n\n\nexport class ErrorHandlerService {\n\n constructor() { }\n\n\n handleError(err: HttpErrorResponse): Observable<any> {\n let errorMessage: string;\n if (err.error instanceof Error) {\n // A client-side or network error occurred.\n errorMessage = `An error occurred: ${err.error.message}`;\n } else {\n // The backend returned an unsuccessful response code.\n if (err.status === 404) {\n\n if (typeof err.error === 'string' && err.error !== undefined) {\n \n if(err.error.length > 60) {\n if (JSON.parse(err.error).statusCode !== undefined && JSON.parse(err.error).statusCode === 500)\n {\n errorMessage = 'Internal server error';\n } else {\n if(err.error.length > 60) {\n errorMessage = JSON.parse(err.error).error;\n } else {\n errorMessage = err.error;\n }\n \n }\n } else {\n errorMessage = err.error;\n }\n } else {\n errorMessage = JSON.parse(err.error).error;\n }\n \n }\n else if (err.status === 500) {\n errorMessage = 'Internal server error';\n } else if (err.error.messsage === undefined) {\n if( typeof err.error === 'object') {\n errorMessage = JSON.parse(JSON.stringify(err.error)).error;\n } else {\n if (typeof err.error === 'string' && err.error !== undefined) {\n \n if(err.error.length > 60) {\n if (JSON.parse(err.error).statusCode !== undefined && JSON.parse(err.error).statusCode === 500)\n {\n errorMessage = 'Internal server error';\n } else {\n if(err.error.length > 60) {\n errorMessage = JSON.parse(err.error).error;\n } else {\n errorMessage = err.error;\n }\n \n }\n } else {\n errorMessage = err.error;\n }\n } else {\n errorMessage = JSON.parse(err.error).error;\n }\n \n }\n \n } else {\n if (err.error.message !== undefined) {\n errorMessage = `${err.error.message}`;\n } else {\n errorMessage = `${err.error}`;\n }\n \n }\n }\n return _throw(errorMessage);\n }\n\n\n getServerErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","import { Injectable } from '@angular/core';\n\nconst noop = (): any => undefined;\n\nexport abstract class Logger {\n\n info: any;\n warn: any;\n error: any;\n}\n\n@Injectable({\n providedIn: 'root'\n})\nexport class LoggerService implements Logger {\n\n info: any;\n warn: any;\n error: any;\n\n invokeConsoleMethod(type: string, args?: any): void {}\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\n\nimport { Observable } from 'rxjs/internal/Observable';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { IPayments } from '../../interfaces/IPayments';\nimport { catchError } from 'rxjs/operators';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PaymentListService {\n payments: IPayments;\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n\n getPaymentByCcdCaseNumber(ccdCaseNumber: string, paymentMethod: string): Observable<IPayments> {\n this.logger.info('Payment-list-service getPaymentByCcdCaseNumber for: ', ccdCaseNumber);\n\n return this.http.get<IPayments>(`${this.paymentLibService.API_ROOT}/cases/${ccdCaseNumber}/payments`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import {Component, OnInit} from '@angular/core';\n\nimport {PaymentListService} from '../../services/payment-list/payment-list.service';\nimport {IPayments} from '../../interfaces/IPayments';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport {IStatusHistory} from '../../interfaces/IStatusHistory';\n\n@Component({\n selector: 'ccpay-payment-list',\n templateUrl: './payment-list.component.html',\n styleUrls: ['./payment-list.component.css']\n})\nexport class PaymentListComponent implements OnInit {\n payments: IPayments;\n errorMessage: string;\n code: string;\n\n constructor(private paymentListService: PaymentListService,\n private paymentLibComponent: PaymentLibComponent) {\n }\n\n ngOnInit() {\n this.paymentListService.getPaymentByCcdCaseNumber(this.paymentLibComponent.CCD_CASE_NUMBER, this.paymentLibComponent.PAYMENT_METHOD)\n .subscribe(\n payments => this.payments = payments,\n (error: any) => this.errorMessage = <any>error\n );\n }\n\n loadPaymentViewComponent(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.paymentLibComponent.paymentMethod = paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n}\n","/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Meta } from '@angular/platform-browser';\nimport { Observable } from 'rxjs';\n\n@Injectable()\nexport class WebComponentHttpClient {\n constructor(\n private http: HttpClient,\n private meta: Meta\n ) { }\n\n post(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.post(url, body, opts);\n }\n\n put(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.put(url, body, opts);\n }\n\n get(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.get(url, opts);\n }\n\n delete(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.delete(url, opts);\n }\n \n patch(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.patch(url, body, opts);\n }\n\n addHeaders(options: any): any {\n const csrfToken = this.meta.getTag('name=csrf-token');\n const headers = {};\n \n if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n if (csrfToken === null) {\n if( document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')) !== undefined ) {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')).split('=')[1]; \n } else {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith(' XSRF-TOKEN')).split('=')[1];\n }\n } else {\n headers['CSRF-Token'] = csrfToken.content;\n }\n options.headers = new HttpHeaders(headers);\n options.responseType = 'text';\n return options;\n }\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { v4 as uuidv4 } from 'uuid';\nimport {IPayment} from '../../interfaces/IPayment';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { catchError } from 'rxjs/operators';\nimport { LoggerService } from '../shared/logger/logger.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { PayhubAntennaRequest } from '../../interfaces/PayhubAntennaRequest';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { Meta } from '@angular/platform-browser';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { IAllocationPaymentsRequest } from '../../interfaces/IAllocationPaymentsRequest';\nimport {IOrderReferenceFee} from '../../interfaces/IOrderReferenceFee';\nimport { BehaviorSubject } from 'rxjs';\nimport { IserviceRequestPbaPayment } from '../../interfaces/IserviceRequestPbaPayment';\nimport { IserviceRequestCardPayment } from '../../interfaces/IserviceRequestCardPayment';\nimport { RefundsRequest } from '../../interfaces/RefundsRequest';\nimport { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\nimport { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';\nimport { error } from '@angular/compiler/src/util';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PaymentViewService {\n private ordersList = <BehaviorSubject<IOrderReferenceFee[]>>new BehaviorSubject([]);\n\n private meta: Meta;\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getPaymentDetails(paymentReference: string, paymentMethod: string): Observable<IPayment> {\n this.logger.info('Payment-view-service getPaymentDetails for: ', paymentReference);\n\n return this.http.get<IPayment>(paymentMethod === 'card' || paymentMethod === 'cash' || paymentMethod === 'cheque' || paymentMethod === 'postal order' ?\n `${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}` :\n `${this.paymentLibService.API_ROOT}/credit-account-payments/${paymentReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getPaymentGroupDetails(paymentGroupReference: string): Observable<IPaymentGroup> {\n this.logger.info('Payment-view-service getPaymentGroupDetails for: ', paymentGroupReference);\n\n return this.http.get<IPayment>(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getApportionPaymentDetails(paymentReference: string): Observable<IPaymentGroup> {\n this.logger.info('Payment-view-service getPaymentGroupDetails for: ', paymentReference);\n\n return this.http.get<IPayment>(`${this.paymentLibService.API_ROOT}/payment-groups/fee-pay-apportion/${paymentReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getPBAaccountDetails(): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/pba-accounts`;\n return this.http.get(url, { withCredentials: true }).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postWays2PayCardPayment(serviceRef: string, body: IserviceRequestCardPayment): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/service-request/${serviceRef}/card-payments`;\n const rurl = this.paymentLibService.CARDPAYMENTRETURNURL.replace('.prod', '');\n body['return-url'] = `${rurl}/payment`;\n return this.https.post(url, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n \n postPBAaccountPayment(serviceRef: string, body: IserviceRequestPbaPayment): Observable<any> {\n let randomKey = 'idam-key-' + Math.random().toString().split('.').join('-');\n body['idempotency_key'] = randomKey; \n const url = `${this.paymentLibService.API_ROOT}/service-request/${serviceRef}/pba-payments`;\n return this.https.post(url, body);\n }\n\n postBSPayments(body: AllocatePaymentRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/bulk-scan-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSUnidentifiedPayments(body: UnidentifiedPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSUnsolicitedPayments(body: UnsolicitedPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSAllocationPayments(body: IAllocationPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postPaymentGroupWithRemissions(paymentGroupReference: string, feeId: number, body: AddRemissionRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}/fees/${feeId}/remissions`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n deleteFeeFromPaymentGroup(feeId: number): Observable<any> {\n this.logger.info('Payment-view-service deleteFeeFromPaymentGroup for: ', feeId);\n return this.https.delete(`${this.paymentLibService.API_ROOT}/fees/${feeId}`).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postPaymentToPayHub(body: PaymentToPayhubRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/card-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postPaymentAntennaToPayHub(body: PayhubAntennaRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/telephony-card-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n downloadSelectedReport(reportName: string, startDate: string, endDate:string): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/report/data?date_from=${startDate}&date_to=${endDate}&report_type=${reportName}`;\n return this.https.get(url, { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n downloadFailureReport(startDate: string, endDate:string): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/payment-failures/failure-report?date_from=${startDate}&date_to=${endDate}`;\n return this.https.get(url, { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getBSfeature(): Observable<any> {\n return this.https.get('api/payment-history/bulk-scan-feature', { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getSiteID(): Observable<any> {\n return this.https.get('api/payment-history/refdata/legacy-sites', { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getPartyDetails(caseNumber: string): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/case-payment-orders?case_ids=${caseNumber}`;\n return this.https.get(url, { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n \n setOrdersList(orderLevelFees: IOrderReferenceFee[]): void {\n this.ordersList.next(Object.assign([], orderLevelFees));\n}\n getOrdersList() {\n return this.ordersList;\n }\n\n //issue refund\n postRefundsReason(body: PostRefundRetroRemission): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/refund-for-payment`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n // retro remissions\n postPaymentGroupWithRetroRemissions(paymentGroupReference: string, feeId: number, body: AddRetroRemissionRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}/fees/${feeId}/retro-remission`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postRefundRetroRemission(body:PostIssueRefundRetroRemission) {\n return this.https.post(`${this.paymentLibService.API_ROOT}/refund-retro-remission`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getPaymentFailure(paymentReference: string): Observable<any> {\n return this.https.get(`${this.paymentLibService.API_ROOT}/payment-failures/${paymentReference}`, {\n withCredentials: true\n }).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\nimport { ChangeDetectorRef } from '@angular/core';\nimport { IPaymentFailure } from '../../interfaces/IPaymentFailure';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-payment-view',\n templateUrl: './payment-view.component.html',\n styleUrls: ['./payment-view.component.css']\n})\nexport class PaymentViewComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() isTakePayment: boolean;\n @Input() caseType: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() isOldPcipalOff: boolean;\n @Input() orderRef: string;\n @Input() orderStatus: string;\n @Input() orderTotalPayments: number;\n @Input() payment: IPayment;\n @Input() LOGGEDINUSERROLES: string[];\n @Input() ISPAYMENTSTATUSENABLED: string;\n @Input() orderParty: string;\n @Input() orderCreated: Date;\n @Input() orderCCDEvent: string;\n @Input() orderFeesTotal: number;\n @Input() orderRemissionTotal: number;\n @Input() orderDetail: any[];\n @Input(\"isServiceRequest\") isServiceRequest: string;\n errorMsg: string;\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n ccdCaseNumber: string;\n selectedOption: string;\n dcnNumber: string;\n isStatusAllocated: boolean;\n isRemissionsMatch: boolean;\n feeId: IFee;\n viewStatus: string;\n isRefundRemission: boolean = false;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n remissions: IRemission[] = [];\n allPaymentsFailure: IPaymentFailure[] = [];\n selectedPaymentsStatus: IPaymentFailure;\n remissionFeeAmt: number;\n isRefundRemissionBtnEnable: boolean;\n serviceReference: string;\n isFromServiceRequestPage: boolean;\n isFromPaymentDetailPage: boolean;\n\n constructor(private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) {\n }\n\n ngAfterContentChecked(): void {\n this.cd.detectChanges();\n } \n\n ngOnInit() {\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION;\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.serviceReference = this.paymentLibComponent.paymentGroupReference;\n this.viewStatus = 'paymentview';\n this.paymentViewService.getApportionPaymentDetails(this.paymentLibComponent.paymentReference).subscribe(\n paymentGroup => {\n let fees = [];\n paymentGroup.fees.forEach(fee => {\n this.isRemissionsMatch = false;\n\n paymentGroup.remissions.forEach(rem => {\n if (rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n if (!this.isRemissionsMatch) {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n \n },\n (error: any) => this.errorMessage = error\n );\n this.paymentViewService.getPaymentFailure(this.paymentLibComponent.paymentReference).subscribe({\n next: (res) => {\n JSON.parse(res).payment_failure_list.reverse().forEach(payments => {\n\n this.allPaymentsFailure.push(payments.payment_failure_initiated);\n if(payments.payment_failure_closed) {\n this.allPaymentsFailure.push(payments.payment_failure_closed);\n }\n });\n this.allPaymentsFailure = this.allPaymentsFailure.reverse();\n },\n error: (e) => {\n this.allPaymentsFailure = [];\n this.errorMsg = \"Server error\"\n }\n })\n }\n\n get isCardPayment(): boolean {\n return this.paymentGroup.payments[0].method === 'card';\n }\n\n get isTelephonyPayment(): boolean {\n return this.paymentGroup.payments[0].channel === 'telephony';\n }\n\n public goToPaymentList(): void {\n this.paymentLibComponent.viewName = 'payment-list';\n }\n goToServiceRequestPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = false;\n this.paymentLibComponent.SERVICEREQUEST = 'true';\n this.paymentLibComponent.isFromServiceRequestPage = true;\n window.location.reload();\n }\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n if (!this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.resetOrderData();\n } else {\n this.OrderslistService.getorderRefs().subscribe((data) => this.orderRef = data);\n this.OrderslistService.getorderCCDEvents().subscribe((data) => this.orderCCDEvent = data);\n this.OrderslistService.getorderCreateds().subscribe((data) => this.orderCreated = data);\n this.OrderslistService.getorderDetail().subscribe((data) => this.orderDetail = data);\n this.OrderslistService.getorderPartys().subscribe((data) => this.orderParty = data);\n this.OrderslistService.getorderRemissionTotals().subscribe((data) => this.orderRemissionTotal = data);\n this.OrderslistService.getorderFeesTotals().subscribe((data) => this.orderFeesTotal = data);\n this.OrderslistService.getoorderTotalPaymentss().subscribe((data) => this.orderTotalPayments = data);\n this.viewStatus = 'order-full-view';\n }\n \n }\n\n addRemission(fee: IFee) {\n if(this.chkForAddRemission(fee.code)) {\n this.feeId = fee;\n this.paymentViewService.getApportionPaymentDetails(this.paymentGroup.payments[0].reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n this.paymentLibComponent.isFromPaymentDetailPage = true;\n this.viewStatus = 'addremission';\n this.isRefundRemission = true;\n this.cd.detectChanges();\n },\n (error: any) => this.errorMessage = error\n );\n }\n }\n\n checkForFees(paymentGroup: any) {\n if(paymentGroup !== null && paymentGroup !== undefined)\n {\n if (paymentGroup.fees !== null && paymentGroup.fees !== undefined) {\n return true;\n }\n \n }\n return false;\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n if(this.chkIsRefundRemissionBtnEnable()) {\n this.payment = payment;\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.payment.reference));\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n this.viewStatus = 'addrefundforremission';\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n if (this.paymentGroup !== null && this.paymentGroup !== undefined) {\n this.paymentGroup.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n issueRefund(paymentgrp: IPaymentGroup) {\n if (paymentgrp !== null && paymentgrp !== undefined) {\n if(this.chkIssueRefundBtnEnable(paymentgrp.payments[0])) {\n this.paymentGroup = paymentgrp;\n this.viewStatus = 'issuerefund';\n this.isRefundRemission = true;\n this.paymentLibComponent.isFromPaymentDetailPage = true;\n this.isFromPaymentDetailPage = true;\n this.isFromServiceRequestPage = this.paymentLibComponent.isFromServiceRequestPage;\n }\n }\n }\n\n getRemissionByFeeCode(feeCode: string, remissions: IRemission[]): IRemission {\n if (remissions && remissions.length > 0) {\n for (const remission of remissions) {\n if (remission.fee_code === feeCode) {\n return remission;\n }\n }\n }\n return null;\n }\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n this.isIssueRefunfBtnEnable = true;\n }\n if (this.isIssueRefunfBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n\n chkForPBAPayment(): boolean {\n if (this.paymentGroup !== null && this.paymentGroup !== undefined) {\n let payment = this.paymentGroup.payments[0];\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n return true;\n }\n return false;\n }\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(this.paymentGroup.payments[0])) {\n if (this.paymentGroup.remissions && this.paymentGroup.remissions.length > 0) {\n for (const remission of this.paymentGroup.remissions) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n return true;\n }\n return true;\n\n } else {\n return false;\n }\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n if(payment !== null && payment !== undefined) {\n let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\n }\n }\n\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n\n goToPaymentFailuePage(payment: any) {\n this.viewStatus = 'payment-failure';\n this.selectedPaymentsStatus = payment;\n }\n goBackToPaymentView(event: any) {\n event.preventDefault();\n this.viewStatus = 'paymentview';\n }\n}","import { Injectable } from '@angular/core';\nimport {HttpClient, HttpHeaders} from '@angular/common/http';\nimport { Meta } from '@angular/platform-browser';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {catchError} from 'rxjs/operators';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { IPatchRefundAction } from '../../interfaces/IPatchRefundAction';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { IssueRefundRequest } from '../../interfaces/IssueRefundRequest';\nimport { IResubmitRefundRequest } from '../../interfaces/IResubmitRefundRequest';\nimport { IRefundStatusHistory } from '../../interfaces/IRefundStatusHistory';\n@Injectable({\n providedIn: 'root'\n})\nexport class RefundsService {\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService,\n private meta: Meta\n ) { }\n\n getRefundReasons(): Observable<IRefundReasons[]> {\n return this.http.get<IRefundReasons[]>(`${this.paymentLibService.REFUNDS_API_ROOT}/reasons`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getRefundRejectReasons(): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/rejection-reasons`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getRefundActions(refundReference: string): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/${refundReference}/actions`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\npatchRefundActions(body:IPatchRefundAction, refundReference: string, reviewerAction: string): Observable<any> {\n // const opts = this.addHeaders({});\n return this.https.patch(`${this.paymentLibService.REFUNDS_API_ROOT}/${refundReference}/action/${reviewerAction}`, body)\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundList(refundstatus?: string, selfexclusive?:boolean): Observable<IRefundList[]> {\n return this.http.get<IRefundList[]>(`${this.paymentLibService.REFUNDS_API_ROOT}?status=${refundstatus}&excludeCurrentUser=${selfexclusive}`, \n {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundStatusHistory(reference?: string) {\n return this.http.get<IRefundStatusHistory>(`${this.paymentLibService.REFUNDS_API_ROOT}/${reference}/status-history`, \n {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundStatusList(ccdCaseNumber:string): Observable<IRefundList[]> {\n return this.http.get<IRefundList[]>(`${this.paymentLibService.REFUNDS_API_ROOT}?ccdCaseNumber=${ccdCaseNumber}`, {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetUserDetails(): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/get-user-details`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n \npostIssueRefund(body: IssueRefundRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.REFUNDS_API_ROOT}/refund`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\npatchResubmitRefund(body: IResubmitRefundRequest, refund_reference: string): Observable<any> {\n // const opts = this.addHeaders({});\n return this.https.patch(`${this.paymentLibService.REFUNDS_API_ROOT}/resubmit/${refund_reference}`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\naddHeaders(options: any): any {\n const csrfToken = this.meta.getTag('name=csrf-token');\n const headers = {};\n if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n if (csrfToken.content === null) {\n if( document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')) !== undefined ) {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')).split('=')[1]; \n } else {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith(' XSRF-TOKEN')).split('=')[1];\n }\n } else {\n headers['CSRF-Token'] = csrfToken.content;\n }\n options.headers = new HttpHeaders(headers);\n options.responseType = 'text';\n return options;\n}\n}\n","import {Component, OnInit, Input} from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport {RefundsService} from '../../services/refunds/refunds.service';\nimport { IRefundAction } from '../../interfaces/IRefundAction';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { IRefundRejectReason } from '../../interfaces/IRefundRejectReason';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { ActivatedRoute,Router } from '@angular/router';\n\n@Component({\n selector: 'ccpay-process-refund',\n templateUrl: './process-refund.component.html',\n styleUrls: ['./process-refund.component.css']\n})\nexport class ProcessRefundComponent implements OnInit {\n @Input() refundReference: string;\n @Input() refundlistsource: IRefundList;\n\n processRefundForm: FormGroup;\n\n errorMessage = this.getErrorMessage(false, '', '', '');\n sendmeback: string = null;\n viewStatus: string;\n refundActionList: IRefundAction[] = []; \n refundRejectReasonList: IRefundRejectReason[] = []; \n isSendMeBackClicked: boolean = false;\n isRejectClicked: boolean = false;\n isOtherClicked: boolean = false;\n isSuccesspageEnable: boolean = false;\n\n refundActionsHasError: boolean = false;\n refundRejectReasonHasError: boolean = false;\n isReasonFieldEmpty: boolean = false;\n isReasonFieldInvalid: boolean = false;\n reasonFieldMinHasError: boolean = false;\n reasonFieldMaxHasError: boolean = false;\n isReasonEmpty: boolean = false;\n isReasonInvalid: boolean = false;\n successMsg: string = null;\n navigationpage: string;\n ccdCaseNumber: string;\n isFromRefundListPage: boolean;\n\n isConfirmButtondisabled: boolean = true;\n constructor(private RefundsService: RefundsService,\n private formBuilder: FormBuilder,\n private OrderslistService: OrderslistService,\n private paymentLibComponent: PaymentLibComponent,\n private router: Router,\n private activeRoute: ActivatedRoute) {\n }\n\n ngOnInit() {\n this.viewStatus = 'RefundProcess';\n this.RefundsService.getRefundActions(this.refundReference).subscribe(\n refundActionList => {\n this.refundActionList = <any>refundActionList;\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err, err);\n }\n );\n this.processRefundForm = this.formBuilder.group({\n refundActionField: new FormControl('', Validators.compose([\n Validators.required\n ])),\n refundRejectReasonField: new FormControl('', Validators.compose([\n Validators.required\n ])),\n sendMeBackField: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$'),\n\n ])),\n enterReasonField: new FormControl('', Validators.compose([\n Validators.required,\n Validators.maxLength(30),\n Validators.pattern('^([a-zA-Z0-9.\\\\s]*)$'),\n ])),\n });\n this.ccdCaseNumber = this.refundlistsource.ccd_case_number;\n\n if((typeof this.paymentLibComponent.TAKEPAYMENT === 'string' && this.paymentLibComponent.TAKEPAYMENT === 'false') || (typeof this.paymentLibComponent.TAKEPAYMENT === 'boolean' && !this.paymentLibComponent.TAKEPAYMENT) ) {\n this.isFromRefundListPage = true;\n }\n }\n checkRefundActions(code: string) {\n this.refundActionsHasError = false;\n this.isReasonFieldEmpty = false;\n this.isReasonEmpty = false;\n this.isReasonInvalid = false;\n this.refundRejectReasonHasError = false;\n if(code === 'Return to caseworker') {\n this.isConfirmButtondisabled = true;\n this.isSendMeBackClicked = true;\n this.isRejectClicked = false;\n this.isOtherClicked = false;\n\n } else if (code === 'Approve') {\n this.isSendMeBackClicked = false;\n this.isConfirmButtondisabled = false;\n this.isRejectClicked = false;\n this.isOtherClicked = false;\n\n } else if (code === 'Reject') {\n this.isRejectClicked = true;\n this.isSendMeBackClicked = false;\n this.isOtherClicked = false;\n this.RefundsService.getRefundRejectReasons().subscribe(\n refundRejectReasonList => {\n this.refundRejectReasonList = <any>refundRejectReasonList;\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err, err);\n }\n );\n } else if (code === 'RE005') {\n this.isOtherClicked = true;\n } else if (code !== 'RE005') {\n this.isOtherClicked = false;\n }\n }\n processRefundSubmit() {\n let processRefundRequest;\n let status;\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n const controls = this.processRefundForm.controls;\n const processFormError = controls.sendMeBackField.errors;\n\n if (this.processRefundForm.dirty && controls.refundActionField.valid \n && (controls.refundActionField.value == 'Approve'\n || (controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.valid && controls.refundRejectReasonField.value != 'RE005')\n || (controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.value == 'RE005' && controls.enterReasonField.valid)\n || (controls.refundActionField.value == 'Return to caseworker' && controls.sendMeBackField.valid))) {\n if (controls.refundActionField.value === 'Approve'){\n status = 'APPROVE';\n processRefundRequest = {\n code:'',\n reason: ''\n };\n } else if (controls.refundActionField.value === 'Reject') {\n status = 'REJECT';\n\n processRefundRequest = {\n code: controls.refundRejectReasonField.value ? controls.refundRejectReasonField.value : '',\n reason: controls.refundRejectReasonField.value == 'RE005' ? controls.enterReasonField.value : ''\n };\n } else if (controls.refundActionField.value === 'Return to caseworker') {\n status = 'SENDBACK';\n\n processRefundRequest = {\n code: '',\n reason: controls.sendMeBackField.value\n };\n }\n this.RefundsService.patchRefundActions(processRefundRequest, this.refundReference, status).subscribe(\n response => {\n this.isSuccesspageEnable = true;\n // this.successMsg = JSON.parse(response)['data'];\n this.successMsg = response.replace(/['\"]+/g, '');\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err, err);\n }\n );\n } else {\n if(controls.refundActionField.value == \"\") {\n this.resetForm([true, false, false, false, false, false, false, false], 'action');\n }\n if(controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.value == \"\") {\n this.resetForm([false, true, false, false, false, false, false, false], 'rejectReason');\n }\n if(controls.refundActionField.value == 'Return to caseworker') {\n if(controls.sendMeBackField.value == '' ) {\n this.resetForm([false, false, true, false, false, false, false, false], 'addAreason');\n }\n if(controls.sendMeBackField.value != '' && controls.sendMeBackField.invalid ) {\n this.resetForm([false, false, false, true, false, false, false, false], 'addAreason');\n }\n if(processFormError && processFormError.minlength && processFormError.minlength.actualLength < 3 ) {\n this.resetForm([false, false, false, false, true, false, false, false], 'addAreason');\n }\n if(processFormError && processFormError.maxlength && processFormError.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, false, false, true, false, false], 'addAreason');\n }\n }\n if(controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.value == 'RE005') {\n if(controls.enterReasonField.value === \"\") {\n this.resetForm([false, false, false, false, false, false, true, false], 'enterReason');\n }\n if(controls.enterReasonField.value!== \"\" && controls.enterReasonField.invalid) {\n this.resetForm([false, false, false, false, false, false, false, true], 'enterReason');\n }\n }\n }\n\n }\n getErrorMessage(isErrorExist, status, errorMsg, err) {\n let bodyTxt = 'Please try again later';\n if (status !== 500) {\n if (errorMsg !== undefined) {\n bodyTxt = errorMsg;\n } else {\n bodyTxt = err;\n }\n \n }\n return {\n title: 'Something went wrong',\n body: bodyTxt,\n showError: isErrorExist\n };\n }\n loadRefundListPage() {\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n if (this.navigationpage === 'casetransactions') {\n // window.location.href='/refund-list?takePayment=false&refundlist=true';\n // // this.OrderslistService.setnavigationPage('casetransactions');\n // // this.OrderslistService.setisFromServiceRequestPage(false);\n // // this.paymentLibComponent.VIEW ='case-transactions';\n // // this.paymentLibComponent.viewName = 'case-transactions';\n // // this.paymentLibComponent.ISBSENABLE = true;\n // // this.paymentLibComponent.isRefundStatusView = false;\n this.paymentLibComponent.viewName = 'refundstatuslist';\n this.paymentLibComponent.isRefundStatusView = true;\n } else {\n this.paymentLibComponent.viewName = 'refundstatuslist';\n this.paymentLibComponent.isRefundStatusView = true;\n }\n }\n loadRefundsHomePage() {\n if(typeof this.paymentLibComponent.TAKEPAYMENT === 'string' && this.paymentLibComponent.TAKEPAYMENT === 'false') {\n //window.location.href='/refund-list?takePayment=false&refundlist=true';\n this.paymentLibComponent.viewName = 'refund-list';\n }\n else {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.VIEW ='case-transactions';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n }\n }\n redirecttoRefundListPage() {\n if((typeof this.paymentLibComponent.TAKEPAYMENT === 'string' && this.paymentLibComponent.TAKEPAYMENT === 'false') || (typeof this.paymentLibComponent.TAKEPAYMENT === 'boolean' && !this.paymentLibComponent.TAKEPAYMENT) ) {\n // window.location.href='/refund-list?takePayment=false&refundlist=true';\n this.paymentLibComponent.viewName = 'refund-list';\n }\n else {\n this.loadRefundListPage();\n }\n }\n // loadCaseTransactionPage() {\n // this.paymentLibComponent.isRefundStatusView = false;\n // this.paymentLibCo}mponent.TAKEPAYMENT = true;\n // this.paymentLibComponent.viewName = 'case-transactions';\n // this.paymentViewService.getBSfeature().subscribe(\n // features => {\n // let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n // this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n // },\n // err => {\n // this.paymentLibComponent.ISBSENABLE = false;\n // }\n // );\n\n // let partUrl = `selectedOption=${this.paymentLibComponent.SELECTED_OPTION}`;\n // partUrl += this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n // partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n // partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n // partUrl += this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n // partUrl += `&caseType=${this.paymentLibComponent.CASETYPE}`;\n // partUrl += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n // partUrl += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n // let url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=true&${partUrl}`;\n // this.router.navigateByUrl(url);\n // }\n\n resetForm(vals, field) {\n if(field==='action' || field==='all') {\n this.refundActionsHasError = vals[0];\n }\n if(field==='rejectReason' || field==='all') {\n this.refundRejectReasonHasError = vals[1];\n }\n if(field==='addAreason' || field==='all') {\n this.isReasonFieldEmpty = vals[2];\n this.isReasonFieldInvalid = vals[3];\n this.reasonFieldMinHasError = vals[4];\n this.reasonFieldMaxHasError = vals[5];\n }\n if(field==='enterReason' || field==='all') {\n this.isReasonEmpty = vals[6];\n this.isReasonInvalid = vals[7];\n }\n }\n\n goToCaseReview() {\n this.router.navigate([`/cases/case-details/${this.ccdCaseNumber}`], {relativeTo: this.activeRoute});\n }\n}\n","import {Component, OnInit, Input} from '@angular/core';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { IRefundList } from '../../interfaces/IRefundList';\n\n@Component({\n selector: 'ccpay-refund-list',\n templateUrl: './refund-list.component.html',\n styleUrls: ['./refund-list.component.css']\n})\nexport class RefundListComponent implements OnInit {\n @Input('USERID') USERID: string;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: any[];\n @Input('LOGGEDINUSEREMAIL') LOGGEDINUSEREMAIL:string;\n\n constructor(private refundService: RefundsService) {\n }\n\n tableApprovalHeader: string;\n tableRejectedHeader: string;\n submittedRefundList: IRefundList[] = [];\n rejectedRefundList: IRefundList[] = [];\n approvalStatus = 'Sent for approval';\n rejectStatus = 'Update required';\n // approvalStatus = 'sent for approval';\n // rejectStatus = 'sent back';\n errorMessage = null;\n isApproveTableVisible:boolean;\n isRejectTableVisible:boolean;\n dropdownvalue: string;\n isAuthorized: boolean = true;\n userLst\n ngOnInit() {\n \n this.userLst = this.LOGGEDINUSERROLES;\n\n \n if(this.LOGGEDINUSERROLES.some(i =>i.includes('payments-refund-approver'))){\n this.isAuthorized = true;\n } else {\n this.isApproveTableVisible = false;\n this.isAuthorized = false;\n }\n\n \n this.tableApprovalHeader = 'Refunds to be approved';\n this.tableRejectedHeader = 'Refunds returned to caseworker';\n\n if(this.isAuthorized) {\n this.refundService.getRefundList(this.approvalStatus,true).subscribe(\n refundList => {\n this.submittedRefundList = refundList['refund_list'];\n this.isApproveTableVisible = true;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n }\n\n this.refundService.getRefundList(this.rejectStatus,false).subscribe(\n refundList => {\n this.rejectedRefundList = refundList['refund_list'];\n this.isRejectTableVisible = true;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n\n }\n \n}","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {Observable} from 'rxjs/internal/Observable';\n\nimport {ICardDetails} from '../../interfaces/ICardDetails';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { catchError } from 'rxjs/operators';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class CardDetailsService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getCardDetails(paymentReference: string): Observable<ICardDetails> {\n this.logger.info('Card-detail-service getCardDetails for: ', paymentReference);\n\n return this.http.get<ICardDetails>(`${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}/details`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit } from '@angular/core';\nimport { CardDetailsService } from '../../services/card-details/card-details.service';\nimport {ICardDetails} from '../../interfaces/ICardDetails';\nimport { PaymentLibComponent } from '../../payment-lib.component';\n\n@Component({\n selector: 'ccpay-card-details',\n templateUrl: './card-details.component.html',\n styleUrls: ['./card-details.component.css']\n})\nexport class CardDetailsComponent implements OnInit {\n pageTitle: string = 'Card details';\n cardDetails: ICardDetails;\n paymentReference: string;\n errorMessage: string;\n\n constructor(private cardDetailsService: CardDetailsService,\n private paymentLibComponent: PaymentLibComponent) { }\n\n ngOnInit() {\n this.cardDetailsService.getCardDetails(this.paymentLibComponent.paymentReference).subscribe(\n cardDetails => this.cardDetails = cardDetails,\n (error: any) => this.errorMessage = <any>error\n );\n }\n\n get getPaymentReference(): string {\n return this.paymentReference;\n }\n\n}\n","import { Component } from '@angular/core';\n\n@Component({\n template: `\n <h1>This is not the page you were looking for!</h1>\n `\n})\nexport class PageNotFoundComponent { }\n","import { Injectable } from '@angular/core';\nimport { PaymentLibService } from '../../payment-lib.service';\nimport { HttpClient } from '@angular/common/http';\nimport { IStatusHistories } from '../../interfaces/IStatusHistories';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { catchError } from 'rxjs/operators';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class StatusHistoryService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getPaymentStatusesByReference(paymentReference: string, paymentMethod: string): Observable<IStatusHistories> {\n this.logger.info('Status-history-service getPaymentStatusesByReference for: ', paymentReference);\n\n return this.http.get<IStatusHistories>(paymentMethod === 'card' || paymentMethod === 'cash' || paymentMethod === 'cheque' || paymentMethod === 'postal order' ?\n `${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}/statuses` :\n `${this.paymentLibService.API_ROOT}/credit-account-payments/${paymentReference}/statuses`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { IStatusHistories } from '../../interfaces/IStatusHistories';\nimport { StatusHistoryService } from '../../services/status-history/status-history.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\n\n@Component({\n selector: 'ccpay-payment-statuses',\n templateUrl: './status-history.component.html',\n styleUrls: ['./status-history.component.css']\n})\nexport class StatusHistoryComponent implements OnInit {\n @Input() isTakePayment: boolean;\n pageTitle: string = 'Payment status history';\n statuses: IStatusHistories;\n errorMessage: string;\n\n constructor(private statusHistoryService: StatusHistoryService,\n private paymentLibComponent: PaymentLibComponent) { }\n\n ngOnInit() {\n this.statusHistoryService.getPaymentStatusesByReference(this.paymentLibComponent.paymentReference, this.paymentLibComponent.paymentMethod).subscribe(\n statuses => this.statuses = statuses,\n (error: any) => this.errorMessage = <any>error.replace(/\"/g,\"\")\n );\n \n }\n\n}\n","import { Component, Input, OnInit } from '@angular/core';\nimport { IPayment } from '../../interfaces/IPayment';\n\n@Component({\n selector: 'ccpay-pba-details',\n templateUrl: './pba-details.component.html',\n styleUrls: ['./pba-details.component.css']\n})\nexport class PbaDetailsComponent implements OnInit {\n @Input() payment: IPayment;\n\n constructor() { }\n\n ngOnInit() {\n }\n\n}\n","import { Injectable } from '@angular/core';\nimport { Logger } from './logger.service';\n\nexport let isDebugMode = false;\n\nconst noop = (): any => undefined;\n\n@Injectable({\n providedIn: 'root'\n})\nexport class ConsoleLoggerService implements Logger {\n\n get info() {\n if (isDebugMode) {\n return console.info.bind(console);\n } else {\n return noop;\n }\n }\n\n get warn() {\n if (isDebugMode) {\n return console.warn.bind(console);\n } else {\n return noop;\n }\n }\n\n get error() {\n if (isDebugMode) {\n return console.error.bind(console);\n } else {\n return noop;\n }\n }\n\n invokeConsoleMethod(type: string, args?: any): void {\n const logFn: Function = (console)[type] || console.log || noop;\n logFn.apply(console, [args]);\n }\n}\n","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {LoggerService} from '../shared/logger/logger.service';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport {catchError} from 'rxjs/operators';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class CaseTransactionsService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService\n ) { }\n\n getPaymentGroups(ccdCaseNumber: string): Observable<IPaymentGroup[]> {\n this.logger.info('Case-transactions-service getPaymentGroups for: ', ccdCaseNumber);\n\n return this.http.get<IPaymentGroup[]>(`${this.paymentLibService.API_ROOT}/cases/${ccdCaseNumber}/paymentgroups`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {catchError} from 'rxjs/operators';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class BulkScaningPaymentService {\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService\n ) { }\n\n getBSPaymentsByCCD(ccdCaseNumber: string): Observable<IBSPayments> {\n return this.http.get<IBSPayments>(`${this.paymentLibService.BULKSCAN_API_ROOT}/cases/${ccdCaseNumber}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getBSPaymentsByDCN(dcn: string): Observable<IBSPayments> {\n return this.http.get<IBSPayments>(`${this.paymentLibService.BULKSCAN_API_ROOT}/cases?document_control_number=${dcn}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSAllocatePayment(body: AllocatePaymentRequest, paymentRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentRef}/bulk-scan-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSPaymentStrategic(body: AllocatePaymentRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/bulk-scan-payments-strategic`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSWoPGStrategic(body: AllocatePaymentRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/bulk-scan-payments-strategic`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n patchBSChangeStatus(dcnNumber: string, status: string): Observable<any> {\n return this.https.patch(`${this.paymentLibService.API_ROOT}/bulk-scan-payments/${dcnNumber}/status/${status}`, status).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n calculateOutStandingAmount(paymentGroup: IPaymentGroup): number {\n let feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00;\n\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n });\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n } \n return (feesTotal - remissionsTotal) - paymentsTotal;\n }\n\n removeUnwantedString(input: string, replaceText: string) {\n const pattern = /[\\_]/gi;\n return input.replace(pattern, replaceText);\n }\n\n downloadSelectedReport(reportName: string, startDate: string, endDate:string): Observable<any> {\n return this.https.get(`${this.paymentLibService.BULKSCAN_API_ROOT}/report/data?date_from=${startDate}&date_to=${endDate}&report_type=${reportName}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { CaseTransactionsService } from '../../services/case-transactions/case-transactions.service';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IPaymentView } from '../../interfaces/IPaymentView';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { Router } from '@angular/router';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-case-transactions',\n templateUrl: './case-transactions.component.html',\n styleUrls: ['./case-transactions.component.css']\n})\nexport class CaseTransactionsComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input() isTakePayment: boolean;\n takePayment: boolean;\n ccdCaseNumber: string;\n excReference: string;\n paymentGroups: any[] = [];\n payments: IPayment[] = [];\n nonPayments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n fees: IFee[] = [];\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalNonOffPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n paymentRef: string;\n isTurnOff: boolean;\n isNewPcipalOff: boolean;\n isRefundRemission: boolean = true;\n isOldPcipalOff: boolean;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = true;\n isExceptionRecord: boolean = false;\n isUnprocessedRecordSelected: boolean = false;\n exceptionRecordReference: string;\n isAnyFeeGroupAvilable: boolean = true;\n isHistoricGroupAvailable: boolean = false;\n isBulkScanEnable;\n isRemissionsMatch: boolean;\n viewStatus = 'main';\n isRemoveBtnDisabled: boolean = false;\n feeId: IFee;\n clAmountDue: number = 0;\n unprocessedRecordCount: number;\n isFeeRecordsExist: boolean = false;\n isGrpOutstandingAmtPositive: boolean = false;\n totalRefundAmount: Number;\n caseType: String;\n // lsCcdNumber: any = ls.get<any>('ccdNumber');\n payment: IPayment;\n paymentGroup: IPaymentGroup;\n paymentView: IPaymentView;\n\n //Order changes\n orderDetail: any[] = [];\n\n isAddRemissionEnable: boolean = false;\n orderRemissionDetails: any[] = [];\n orderLevelFees: IOrderReferenceFee[] = [];\n ispaymentGroupApisuccess: boolean = false;\n cpoDetails: any = null;\n orderRef: string;\n orderStatus: string;\n orderParty: string;\n orderCreated: Date;\n orderCCDEvent: string;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n orderFeesTotal: number = 0.00;\n orderRemissionTotal: number = 0.00;\n orderTotalPayments: number = 0.00;\n orderPendingPayments: number = 0.00;\n isCPODown: boolean;\n test: boolean;\n isPBA: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n isAddRemissionBtnEnabled: boolean = false;\n isRefundRemissionBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n isEligible4PBAPayment = ['pui-finance-manager', 'pui-user-manager', 'pui-organisation-manager', 'pui-case-manager'];\n currentDate = new Date();\n isFromServiceRequestPage: boolean;\n navigationpage: string;\n remissionFeeAmt: number;\n constructor(private router: Router,\n private paymentViewService: PaymentViewService,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private caseTransactionsService: CaseTransactionsService,\n private paymentLibComponent: PaymentLibComponent,\n private OrderslistService: OrderslistService\n ) { }\n\n ngOnInit() {\n this.navigationpage = '';\n if(this.OrderslistService.getpaymentPageView() !== null) {\n this.OrderslistService.getpaymentPageView().subscribe((data) => this.paymentView = data);\n }\n if((this.LOGGEDINUSERROLES === undefined || this.LOGGEDINUSERROLES.length === 0 )&&this.OrderslistService.getUserRolesList() !== null) {\n this.OrderslistService.getUserRolesList().subscribe((data) => this.LOGGEDINUSERROLES = data);\n }\n if(this.OrderslistService.getnavigationPageValue() !== null) {\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n }\n \n if (this.paymentView !== undefined && this.paymentView !== null && this.paymentView.payment_group_reference !== undefined && this.navigationpage === 'paymentdetailspage') {\n this.goToPayementView(this.paymentView.payment_group_reference, this.paymentView.reference, this.paymentView.method);\n }\n this.isGrpOutstandingAmtPositive = false;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.caseType = this.paymentLibComponent.CASETYPE;\n if (this.paymentLibComponent.CCD_CASE_NUMBER === '') {\n this.ccdCaseNumber = this.paymentLibComponent.EXC_REFERENCE;\n }\n this.excReference = this.paymentLibComponent.EXC_REFERENCE;\n this.takePayment = this.paymentLibComponent.TAKEPAYMENT;\n const serviceRequest = this.paymentLibComponent.SERVICEREQUEST;\n if ( serviceRequest !== undefined && serviceRequest.toString() === 'true' ) {\n this.serviceRequestValue = 'true';\n } else {\n this.serviceRequestValue = 'false';\n }\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isNewPcipalOff = this.paymentLibComponent.ISNEWPCIPALOFF;\n this.isOldPcipalOff = this.paymentLibComponent.ISOLDPCIPALOFF;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n if (!this.isTurnOff) {\n // if (this.lsCcdNumber !== this.ccdCaseNumber) {\n // this.router.navigateByUrl(`/ccd-search?takePayment=true`);\n // }\n\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.isAnyFeeGroupAvilable =true;\n this.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts();\n this.calculateOrderFeesAmounts();\n this.calculateRefundAmount();\n if (this.isFromServiceRequestPage) {\n this.OrderslistService.getSelectedOrderRefId().subscribe((data) => this.orderRef = data);\n this.goToOrderViewDetailSection(this.orderRef);\n } else {\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).content[0];\n \n },\n (error: any) => {\n this.errorMessage = <any>error ? error.replace(/\"/g,\"\") : \"\";\n this.isCPODown = true;\n }\n );\n \n }\n\n \n },\n (error: any) => {\n this.errorMessage = <any>error ? error.replace(/\"/g,\"\") : \"\";\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n } else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.isAnyFeeGroupAvilable =true;\n this.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts();\n this.calculateOrderFeesAmounts();\n this.totalRefundAmount = this.calculateRefundAmount();\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).content[0];\n\n },\n (error: any) => {\n this.errorMessage = <any>error ? error.replace(/\"/g,\"\") : \"\";\n this.setDefaults();\n this.isCPODown = true;\n }\n );\n\n },\n (error: any) => {\n this.errorMessage = <any>error ? error.replace(/\"/g,\"\") : \"\";\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n }\n\n if( this.paymentGroups !== undefined) {\n this.checkForExceptionRecord();\n }\n \n if(this.OrderslistService.getisFromServiceRequestPages() !== null) {\n this.OrderslistService.getisFromServiceRequestPages().subscribe((data) => this.isFromServiceRequestPage = data);\n }\n \n }\n\n setDefaults(): void {\n this.totalPayments = 0.00;\n this.totalRemissions = 0.00;\n this.totalNonOffPayments = 0.00;\n this.totalFees = 0.00;\n }\n\n getAllocationStatus(payments: any) {\n\n let paymentAllocation = payments.payment_allocation,\n isAllocationStatusExist = paymentAllocation.length > 0;\n return isAllocationStatusExist ? paymentAllocation[0].allocation_status : '-';\n //return \"-\";\n\n }\n\n checkForExceptionRecord(): void {\n \n if (this.paymentGroups.length === 0 && (this.selectedOption.toLocaleLowerCase() === 'ccdorexception' || this.selectedOption.toLocaleLowerCase() === 'rc')) {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n recordData => {\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length > 0 && recordData['data'].ccd_reference > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length > 0 && recordData['data'].ccd_reference === undefined) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n }\n\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length === undefined && recordData['data'].ccd_reference > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n });\n }\n\n if (this.paymentGroups.length === 0 && this.selectedOption.toLocaleLowerCase() === 'dcn') {\n if (this.paymentLibComponent.CCD_CASE_NUMBER.length > 0 && this.paymentLibComponent.EXC_REFERENCE.length > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n } else if (this.paymentLibComponent.CCD_CASE_NUMBER.length === 0 && this.paymentLibComponent.EXC_REFERENCE.length > 0) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n } else {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n }\n if (this.paymentGroups.length > 0)\n this.paymentGroups.forEach(paymentGroup => {\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.case_reference !== undefined && payment.ccd_case_number === undefined) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n } else {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n\n });\n }\n });\n }\n\n calculateOrderFeesAmounts(): void {\n let feesTotal = 0.00;\n this.paymentGroups.forEach(paymentGroup => {\n this.resetOrderVariables();\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.orderFeesTotal = this.orderFeesTotal + fee.calculated_amount\n }\n )\n }\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n this.orderRemissionTotal = this.orderRemissionTotal + remission.hwf_amount;\n });\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n this.orderTotalPayments = this.orderTotalPayments + payment.amount;\n }\n });\n }\n\n // this.orderPendingPayments = (this.orderFeesTotal - this.orderRemissionTotal) - this.orderTotalPayments;\n if (paymentGroup.service_request_status === 'Paid') {\n this.orderStatus = paymentGroup.service_request_status;\n this.orderAddBtnEnable = false;\n } else if (paymentGroup.service_request_status === 'Partially paid' || paymentGroup.service_request_status === 'Not paid') {\n this.orderStatus = paymentGroup.service_request_status;\n this.orderAddBtnEnable = true;\n } \n\n //this.orderLevelFees.push({orderRefId:paymentGroup['payment_group_reference'],orderTotalFees: this.orderFeesTotal,orderStatus: this.orderStatus,orderParty:'Santosh', orderCCDEvent:'Case Creation',orderCreated: new Date(), orderAddBtnEnable: this.orderAddBtnEnable}); this.cpoDetails['createdTimestamp']\n if (this.cpoDetails !== null) {\n this.orderLevelFees.push({ orderRefId: paymentGroup['payment_group_reference'], orderTotalFees: this.orderFeesTotal, orderStatus: this.orderStatus, orderParty: this.cpoDetails['responsibleParty'], orderCCDEvent: this.cpoDetails['action'], orderCreated: paymentGroup['date_created'], orderAddBtnEnable: this.orderAddBtnEnable });\n\n } else {\n this.orderLevelFees.push({ orderRefId: paymentGroup['payment_group_reference'], orderTotalFees: this.orderFeesTotal, orderStatus: this.orderStatus, orderParty: '', orderCCDEvent: '', orderCreated: paymentGroup['date_created'], orderAddBtnEnable: this.orderAddBtnEnable });\n }\n\n if (this.orderStatus !== 'Paid') {\n this.OrderslistService.setOrdersList(this.orderLevelFees);\n }\n });\n };\n\n resetOrderVariables(): void {\n this.orderFeesTotal = 0.00;\n this.orderTotalPayments = 0.00;\n this.orderRemissionTotal = 0.00;\n this.orderPendingPayments = 0.00;\n this.isAddFeeBtnEnabled = true;\n\n };\n\n goToOrderViewDetailSection(orderReferenceObj: any) {\n if (this.isFromServiceRequestPage) {\n this.OrderslistService.setOrderRefId(orderReferenceObj);\n this.orderRef = orderReferenceObj;\n } else {\n this.OrderslistService.setOrderRefId(orderReferenceObj.orderRefId);\n this.orderRef = orderReferenceObj.orderRefId;\n }\n\n this.orderFeesTotal = 0.00;\n this.orderRemissionTotal = 0.00;\n this.orderTotalPayments = 0.00;\n this.orderPendingPayments = 0.00;\n\n this.orderDetail = this.paymentGroups.filter(x => x.payment_group_reference === this.orderRef);\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.fees) {\n orderDetail.fees.forEach(fee => {\n this.orderFeesTotal = this.orderFeesTotal + fee.calculated_amount;\n });\n }\n if (orderDetail.remissions) {\n orderDetail.remissions.forEach(remission => {\n this.orderRemissionTotal = this.orderRemissionTotal + remission.hwf_amount;\n });\n if (orderDetail.payments) {\n this.payment = orderDetail.payments[0];\n orderDetail.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n this.orderTotalPayments = this.orderTotalPayments + payment.amount;\n }\n });\n }\n }\n this.orderStatus = orderDetail.service_request_status;\n });\n //this.orderPendingPayments = (this.orderFeesTotal - this.orderRemissionTotal) - this.orderTotalPayments;\n // this.orderRef = orderReferenceObj.orderRefId;\n // if (this.orderPendingPayments <= 0.00) {\n // this.orderStatus = 'Paid';\n // } else if (this.orderFeesTotal > 0 && (this.orderTotalPayments > 0 || this.orderRemissionTotal > 0) && (this.orderTotalPayments < this.orderPendingPayments)) {\n // this.orderStatus = 'Partially paid'\n // } else {\n // this.orderStatus = 'Not paid'\n // }\n\n\n if (this.cpoDetails !== null) {\n this.orderParty = this.cpoDetails['responsibleParty'];\n this.orderCreated = this.cpoDetails['createdTimestamp'];\n this.orderCCDEvent = this.cpoDetails['action'];\n } else {\n this.orderParty = '';\n this.orderCCDEvent = '';\n this.orderCreated = orderReferenceObj.orderCreated;\n }\n this.viewStatus = 'order-full-view';\n }\n\n redirectToOrderFeeSearchPage(event: any, orderef: any) {\n if(orderef.orderAddBtnEnable) {\n event.preventDefault();\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = orderef.orderRefId;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n }\n\n \n\n\n calculateAmounts(): void {\n let feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00,\n nonOffLinePayment = 0.00;\n\n this.paymentGroups.forEach(paymentGroup => {\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n if (fee.date_created) {\n let a = fee.amount_due === undefined;\n let b = fee.amount_due <= 0;\n this.clAmountDue = a ? this.clAmountDue + fee.net_amount : b ? this.clAmountDue + 0 : this.clAmountDue + fee.amount_due;\n }\n fee['payment_group_reference'] = paymentGroup['payment_group_reference'];\n this.fees.push(fee);\n } else {\n feesTotal = feesTotal + fee.calculated_amount;\n this.fees.push(fee);\n }\n\n });\n }\n if (this.isTurnOff) {\n this.totalFees = feesTotal;\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n let allocationLen = payment.payment_allocation;\n\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n if (allocationLen.length === 0 || allocationLen.length > 0 && allocationLen[0].allocation_status === 'Allocated') {\n nonOffLinePayment = nonOffLinePayment + payment.amount;\n }\n if (allocationLen.length > 0) {\n this.nonPayments.push(payment);\n }\n }\n if (allocationLen.length === 0) {\n this.payments.push(payment);\n }\n payment.paymentGroupReference = paymentGroup.payment_group_reference\n this.allPayments.push(payment);\n } else {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n this.payments.push(payment);\n }\n payment.paymentGroupReference = paymentGroup.payment_group_reference\n this.allPayments.push(payment);\n }\n });\n }\n this.totalPayments = paymentsTotal;\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n this.totalNonOffPayments = nonOffLinePayment;\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remisison => {\n remissionsTotal = remissionsTotal + remisison.hwf_amount;\n this.remissions.push(remisison);\n });\n }\n this.totalRemissions = remissionsTotal;\n });\n\n }\n\n calculateRefundAmount() {\n if (!this.isTurnOff) {\n let isNewPaymentGroup = false;\n\n this.paymentGroups.forEach((paymentGroup, index) => {\n let grpOutstandingAmount = 0.00,\n feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00,\n fees = [];\n\n if (paymentGroup.fees) {\n // this.isFeeRecordsExist = true;\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n\n this.isRemissionsMatch = false;\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(rem => {\n if (rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n // if(!fees.find(k => k.code=fee.code))\n // {\n fees.push(fee);\n //}\n }\n });\n }\n if (!this.isRemissionsMatch) {\n fees.push(fee);\n }\n\n if (fee.date_created) {\n isNewPaymentGroup = true;\n } else {\n this.isHistoricGroupAvailable = true;\n this.paymentGroups[index]['old'] = true;\n }\n });\n this.paymentGroups[index].fees = fees;\n }\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n }\n grpOutstandingAmount = (feesTotal - remissionsTotal) - paymentsTotal;\n if (grpOutstandingAmount > 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = true;\n this.isFeeRecordsExist = true;\n this.paymentRef = paymentGroup.payment_group_reference;\n }\n if (paymentGroup.fees && paymentGroup.fees.length > 0 && grpOutstandingAmount <= 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = false;\n }\n });\n if ((!isNewPaymentGroup && this.isHistoricGroupAvailable) || (!isNewPaymentGroup && !this.isHistoricGroupAvailable)) {\n this.isAnyFeeGroupAvilable = false;\n }\n } else {\n let totalRefundAmount = 0,\n isFeeAmountZero = false;\n this.paymentGroups.forEach(paymentGroup => {\n let grpOutstandingAmount = 0.00,\n feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00;\n if (paymentGroup.fees) {\n this.isFeeRecordsExist = true;\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n if (fee.calculated_amount === 0) {\n isFeeAmountZero = true\n }\n });\n\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n }\n grpOutstandingAmount = (feesTotal - remissionsTotal) - paymentsTotal;\n if (grpOutstandingAmount < 0) {\n if (totalRefundAmount === 0) {\n totalRefundAmount = grpOutstandingAmount;\n } else {\n totalRefundAmount = (totalRefundAmount + grpOutstandingAmount);\n }\n }\n else if (grpOutstandingAmount > 0 || (grpOutstandingAmount === 0 && isFeeAmountZero)) {\n this.isGrpOutstandingAmtPositive = true;\n }\n });\n return totalRefundAmount * -1;\n }\n }\n\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n }\n\n redirectToFeeSearchPage(event: any) {\n event.preventDefault();\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n url += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n url += `&caseType=${this.caseType}`\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}${url}`);\n }\n\n addRemission(fee: IFee) {\n if(this.chkForAddRemission(fee.code)) {\n this.feeId = fee;\n this.viewStatus = 'addremission';\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error? error.replace(/\"/g,\"\") : \"\"\n );\n }\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n this.viewStatus = 'addrefundforremission';\n \n this.payment = payment;\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.payment.reference));\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n\n redirectToremissionPage(event: any) {\n event.preventDefault();\n this.paymentLibComponent.viewName = 'remission'\n }\n goToServiceRequestPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = false;\n this.paymentLibComponent.SERVICEREQUEST = 'true';\n this.paymentLibComponent.isFromServiceRequestPage = true;\n window.location.reload();\n }\n redirectToReportsPage(event: any) {\n event.preventDefault();\n this.router.navigateByUrl(`/reports?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}`);\n }\n\n loadFeeSummaryPage(paymentGroup: IPaymentGroup) {\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.payment_group_reference;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n\n goToPaymentViewComponent(paymentGroup: any) {\n this.paymentLibComponent.paymentMethod = paymentGroup.paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentGroup.paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n\n goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent({ paymentGroupReference, paymentReference, paymentMethod });\n }\n\n selectedUnprocessedFeeEvent(unprocessedRecordId: string) {\n if (unprocessedRecordId) {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = false;\n }\n this.isUnprocessedRecordSelected = true;\n } else {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = true;\n }\n this.isUnprocessedRecordSelected = false;\n }\n }\n\n getUnprocessedFeeCount(unProcessedRecordCount: number) {\n this.unprocessedRecordCount = unProcessedRecordCount;\n }\n\n calculateAmountDue(fee: IFee) {\n\n if (fee.date_created) {\n return fee.amount_due !== undefined ? fee.amount_due : fee.net_amount;\n } else {\n return \"0.00\";\n }\n }\n\n confirmRemoveFee(fee: IFee) {\n this.isRemoveBtnDisabled = false;\n this.feeId = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n cancelRemoval() {\n this.viewStatus = 'main';\n }\n\n removeFee(fee: any) {\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n window.location.reload();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n\n issueRefund(payment: IPayment) {\n if (payment !== null && payment !== undefined) {\n if(this.chkIssueRefundBtnEnable(payment)) {\n this.viewStatus = 'issuerefund';\n this.payment = payment;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.isRefundRemission = true;\n }\n }\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund()) {\n if (this.orderDetail[0]['remissions'].length > 0) {\n for (const remission of this.orderDetail[0]['remissions']) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n }\n return true;\n } else {\n return false;\n }\n }\n\n chkForPBAPayment(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isPBA = true;\n }\n });\n }\n });\n if (this.isPBA) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n this.isIssueRefunfBtnEnable = true;\n }\n if (this.isIssueRefunfBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n check4AllowedRoles2AccessPBApayment = (): boolean => {\n return this.isEligible4PBAPayment.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n if (payment !== null && payment !== undefined) {\n let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\n }\n }\n\n loadPBAAccountPage(orderRef: IPayment) {\n this.paymentLibComponent.pbaPayOrderRef = orderRef;\n this.paymentLibComponent.viewName = 'pba-payment';\n }\n}","export class PaymentToPayhubRequest {\n currency = 'GBP';\n description = 'PayBubble payment';\n channel = 'telephony';\n provider = 'pci pal';\n case_type: string;\n\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.case_type= caseType;\n }\n}\n","export class PayhubAntennaRequest {\n currency = 'GBP';\n case_type: string;\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.case_type= caseType;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IFee } from '../../interfaces/IFee';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { PayhubAntennaRequest } from '../../interfaces/PayhubAntennaRequest';\nimport { SafeHtml } from '@angular/platform-browser';\nimport {Router} from '@angular/router';\nimport {Location} from '@angular/common';\nimport { OrderslistService } from '../../services/orderslist.service';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-fee-summary',\n templateUrl: './fee-summary.component.html',\n styleUrls: ['./fee-summary.component.scss']\n})\n\nexport class FeeSummaryComponent implements OnInit {\n @Input() paymentGroupRef: string;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: string;\n @Input() caseType: string;\n @Input() isOldPcipalOff: string;\n @Input() isNewPcipalOff: string;\n\n\n bsPaymentDcnNumber: string;\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n viewStatus = 'main';\n currentFee: IFee;\n totalFee: number;\n payhubHtml: SafeHtml;\n service: string = \"\";\n platForm: string = \"\";\n upPaymentErrorMessage: string;\n selectedOption:string;\n isBackButtonEnable: boolean = true;\n outStandingAmount: number;\n isFeeAmountZero: boolean = false;\n totalAfterRemission: number = 0;\n isConfirmationBtnDisabled: boolean = false;\n isRemoveBtnDisabled: boolean = false;\n isPaymentExist: boolean = false;\n isRemissionsExist: Boolean = false;\n isRemissionsMatch = false;\n isStrategicFixEnable: boolean;\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private location: Location,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private OrderslistService: OrderslistService\n ) {}\n\n ngOnInit() {\n this.viewStatus = 'main';\n this.caseType = this.paymentLibComponent.CASETYPE;\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.setCaseType(this.paymentLibComponent.CASETYPE);\n if ((!this.isOldPcipalOff && this.isNewPcipalOff)) {\n this.platForm = '8x8';\n } else if ((this.isOldPcipalOff && !this.isNewPcipalOff)) {\n this.platForm = 'Antenna';\n } else if ((this.isOldPcipalOff && this.isNewPcipalOff)){\n this.platForm = '8x8';\n }\n\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n if (this.bsPaymentDcnNumber) {\n this.getUnassignedPaymentlist();\n }\n this.getPaymentGroup();\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.paymentLibComponent.DCN_NUMBER).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error';\n }\n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error'; \n } \n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n }\n\n }\n\n getRemissionByFeeCode(feeCode: string): IRemission {\n if (this.paymentGroup && this.paymentGroup.remissions && this.paymentGroup.remissions.length > 0) {\n for (const remission of this.paymentGroup.remissions) {\n if (remission.fee_code === feeCode) {\n return remission;\n }\n }\n }\n return null;\n }\n\n addRemission(fee: IFee) {\n this.currentFee = fee;\n this.viewStatus = 'add_remission';\n }\n\n getPaymentGroup() {\n let fees = [];\n this.paymentViewService.getPaymentGroupDetails(this.paymentGroupRef).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n this.isPaymentExist = paymentGroup.payments ? paymentGroup.payments.length > 0 : false;\n this.isRemissionsExist = paymentGroup.remissions ? paymentGroup.remissions.length > 0 : false;\n\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.totalAfterRemission = this.totalAfterRemission + fee.net_amount;\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true;\n }\n this.isRemissionsMatch = false;\n paymentGroup.remissions.forEach(rem => {\n if(rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n \n if(!this.isRemissionsMatch) {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees;\n }\n\n this.outStandingAmount = this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n\n confirmRemoveFee(fee: IFee){\n this.isRemoveBtnDisabled = false;\n this.currentFee = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n removeFee(fee: any){\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n if (this.paymentGroup.fees && this.paymentGroup.fees.length > 1){\n this.totalAfterRemission = 0;\n this.getPaymentGroup();\n this.viewStatus = 'main';\n return;\n }\n this.loadCaseTransactionPage();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n loadCaseTransactionPage() {\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n\n let partUrl = `selectedOption=${this.paymentLibComponent.SELECTED_OPTION}`;\n partUrl +=this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl +=this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl +=this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n\n let url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=true&${partUrl}`;\n this.router.navigateByUrl(url);\n }\n cancelRemission() {\n this.viewStatus = 'main';\n }\n redirectToFeeSearchPage(event: any, page?: string) {\n event.preventDefault();\n let partUrl =this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl +=this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl +=this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n\n if(this.viewStatus === 'feeRemovalConfirmation' || this.viewStatus === 'add_remission') {\n this.viewStatus = 'main';\n return;\n }\n let url = `/fee-search?ccdCaseNumber=${this.ccdCaseNumber}&selectedOption=${this.paymentLibComponent.SELECTED_OPTION}&paymentGroupRef=${this.paymentGroupRef}${partUrl}`;\n this.router.navigateByUrl(url);\n }\n takePayment() {\n this.isConfirmationBtnDisabled = true;\n const requestBody = new PaymentToPayhubRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType),\n antennaReqBody = new PayhubAntennaRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType);\n\n if(this.platForm === '8x8') {\n this.paymentViewService.postPaymentToPayHub(requestBody, this.paymentGroupRef).subscribe(\n response => {\n this.location.go(`payment-history?view=fee-summary`);\n this.payhubHtml = response;\n this.viewStatus = 'payhub_view';\n this.isBackButtonEnable=false;\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.router.navigateByUrl('/pci-pal-failure');\n }\n );\n } else if(this.platForm === 'Antenna') {\n\n this.paymentViewService.postPaymentAntennaToPayHub(antennaReqBody, this.paymentGroupRef).subscribe(\n response => {\n this.isBackButtonEnable=false;\n window.location.href = '/makePaymentByTelephoneyProvider';\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.router.navigateByUrl('/pci-pal-failure');\n }\n );\n }\n\n }\n\n goToAllocatePage(outStandingAmount: number, isFeeAmountZero: Boolean) {\n if (outStandingAmount > 0 || (outStandingAmount === 0 && isFeeAmountZero)) {\n this.paymentLibComponent.paymentGroupReference = this.paymentGroupRef;\n this.paymentLibComponent.viewName = 'allocate-payments';\n } else {\n this.loadCaseTransactionPage();\n }\n }\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\n\n\n\n@Component({\n selector: 'ccpay-error-banner',\n templateUrl: './error-banner.component.html',\n styleUrls: ['./error-banner.component.scss']\n})\n\nexport class ErrorBannerComponent implements OnInit {\n @Input('errorMessage') errorMessage;\n\n constructor(\n ) {}\n\n ngOnInit() {\n\n }\n}\n","\nexport class UnidentifiedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n unidentified_reason: string;\n\n constructor(payment_group_reference: string, payment_reference : string, unidentified_reason: any) {\n this.payment_allocation_status = {\n description: '',\n name: \"Unidentified\"\n };\n this.payment_group_reference = payment_group_reference ;\n this.payment_reference= payment_reference;\n this.unidentified_reason= unidentified_reason;\n\n }\n\n\n\n}\n","import { IBSPayments } from \"./IBSPayments\";\n\nexport class AllocatePaymentRequest {\n amount: Number;\n banked_date: String;\n ccd_case_number: String;\n exception_record: string;\n currency: String;\n document_control_number: String;\n external_provider: String;\n giro_slip_no: String;\n payer_name: String;\n payment_channel: Object;\n payment_status: Object;\n payment_method: String;\n case_type: String;\n payment_allocation_dto?: {\n allocation_reason: String,\n allocation_status: String,\n explanation: String,\n payment_allocation_status: Object,\n payment_group_reference: String,\n payment_reference: String,\n reason: String,\n receiving_office: String,\n unidentified_reason: String,\n user_id: String,\n user_name: String,\n case_type: String\n }\n\n constructor(ccd_case_number : string, unAllocatedPayment: IBSPayments, caseType: string, exceptionRecord: string, allocatedRequest?: any) {\n this.amount = unAllocatedPayment.amount;\n this.banked_date = unAllocatedPayment.date_banked;\n this.ccd_case_number = ccd_case_number;\n this.exception_record = exceptionRecord;\n this.currency= unAllocatedPayment.currency;\n this.document_control_number = unAllocatedPayment.dcn_reference;\n this.external_provider = 'exela';\n this.giro_slip_no = unAllocatedPayment.bgc_reference;\n this.payer_name = unAllocatedPayment.payer_name;\n this.payment_channel = {\n description: '',\n name: 'bulk scan'\n };\n this.payment_status ={\n description: 'bulk scan payment completed',\n name: 'success'\n }\n this.payment_method = unAllocatedPayment.payment_method;\n this.case_type= caseType;\n if(allocatedRequest) {\n this.payment_allocation_dto = allocatedRequest;\n }\n\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\n\n@Component({\n selector: 'app-mark-unidentified-payment',\n templateUrl: './mark-unidentified-payment.component.html',\n styleUrls: ['./mark-unidentified-payment.component.scss']\n})\nexport class MarkUnidentifiedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnidentifiedForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n isInvesticationDetailEmpty: boolean = false;\n investicationDetailHasError: boolean = false;\n investicationDetailMinHasError: boolean = false;\n investicationDetailMaxHasError: boolean = false;\n errorMessage = this.getErrorMessage(false);\n unassignedRecord:IBSPayments;\n siteID: string = null;\n investigationComment: string;\n isConfirmButtondisabled:Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n isStrategicFixEnable: boolean = true;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.markPaymentUnidentifiedForm = this.formBuilder.group({\n investicationDetail: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ]))\n });\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.getErrorMessage(false);\n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n saveAndContinue() {\n this.resetForm([false, false, false, false]);\n const investicationField = this.markPaymentUnidentifiedForm.controls.investicationDetail;\n const formerror = investicationField.errors;\n if (this.markPaymentUnidentifiedForm.dirty && this.markPaymentUnidentifiedForm.valid) {\n this.investigationComment = this.markPaymentUnidentifiedForm.controls.investicationDetail.value;\n this.viewStatus = 'unidentifiedContinueConfirm';\n }else {\n if(investicationField.value == '' ) {\n this.resetForm([true, false, false, false]);\n }\n if(investicationField.value != '' && investicationField.invalid ) {\n this.resetForm([false, true, false, false]);\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false, false, true, false]);\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, true]);\n }\n }\n }\n resetForm(val) {\n this.isInvesticationDetailEmpty = val[0];\n this.investicationDetailHasError = val[1];\n this.investicationDetailMinHasError = val[2];\n this.investicationDetailMaxHasError = val[3];\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const reason = this.markPaymentUnidentifiedForm.get('investicationDetail').value;\n\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Unidentified',\n payment_allocation_status: {\n description: '',\n name: 'Unidentified'\n },\n unidentified_reason: reason,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnidentifiedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, reason);\n if (response2.success) {\n this.paymentViewService.postBSUnidentifiedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n cancelMarkUnidentifiedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.markPaymentUnidentifiedForm.get('investicationDetail').value!==\"\"){\n this.viewStatus = 'unidentifiedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.viewStatus = 'mainForm';\n }\n }\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","\nexport class UnsolicitedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n receiving_office: string;\n receiving_email_address: string;\n sending_email_address: string;\n unidentified_reason: string;\n constructor(payment_group_reference: string, payment_reference : string, reason: string,responsible_office: string, responsible_person:string,email_id: string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Transferred\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.unidentified_reason= reason;\n this.receiving_office= responsible_office;\n this.receiving_email_address= email_id;\n this.sending_email_address= responsible_person;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\n\n\n@Component({\n selector: 'app-mark-unsolicited-payment',\n templateUrl: './mark-unsolicited-payment.component.html',\n styleUrls: ['./mark-unsolicited-payment.component.scss']\n})\nexport class MarkUnsolicitedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnsolicitedForm: FormGroup;\n viewStatus: string;\n reasonHasError: boolean = false;\n isReasonEmpty: boolean = false;\n reasonMinHasError: boolean = false;\n reasonMaxHasError: boolean = false;\n responsibleOfficeHasError: boolean = false;\n isResponsibleOfficeEmpty: boolean = false;\n errorMessage = this.getErrorMessage(false);\n ccdCaseNumber: string;\n bspaymentdcn: string;\n unassignedRecord: IBSPayments;\n siteID: string = null;\n reason: string;\n responsiblePerson: string;\n responsibleOffice: string;\n emailId: string;\n isConfirmButtondisabled: Boolean = false;\n isContinueButtondisabled: Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n selectedSiteId: string;\n selectedSiteName: string;\n isStrategicFixEnable: boolean = true;\n siteIDList;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.resetForm([false,false,false,false,false,false], 'all');\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.paymentViewService.getSiteID().subscribe(\n siteids => {\n this.isContinueButtondisabled = false;\n this.errorMessage = this.getErrorMessage(false);\n this.siteIDList = JSON.parse(siteids);\n },\n err => {\n window.scrollTo(0, 0);\n this.isContinueButtondisabled = true;\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n \n this.markPaymentUnsolicitedForm = this.formBuilder.group({\n reason: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n responsibleOffice: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s\\\\n,\\\\.-:]*)$')\n ])),\n responsiblePerson: new FormControl(''),\n emailId: new FormControl('')\n });\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const controls = this.markPaymentUnsolicitedForm.controls;\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Transferred',\n payment_allocation_status: {\n description: '',\n name: 'Transferred'\n },\n unidentified_reason: controls.reason.value,\n receiving_office: this.selectedSiteId,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n // controls.responsibleOffice.setValue('P219');\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const response1 = JSON.parse(res1),\n requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnsolicitedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, controls.reason.value, this.selectedSiteId, controls.responsiblePerson.value, controls.emailId.value);\n if (response2.success) {\n this.paymentViewService.postBSUnsolicitedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n saveAndContinue() {\n this.resetForm([false,false,false,false,false,false], 'all');\n const formerror = this.markPaymentUnsolicitedForm.controls.reason.errors;\n const reasonField = this.markPaymentUnsolicitedForm.controls.reason;\n //const officeIdField = this.selectedSiteId;\n const officeIdField = this.markPaymentUnsolicitedForm.controls.responsibleOffice;\n if (this.markPaymentUnsolicitedForm.dirty && this.markPaymentUnsolicitedForm.valid) {\n const controls = this.markPaymentUnsolicitedForm.controls;\n this.emailId = controls.emailId.value;\n this.responsibleOffice = officeIdField.value;\n this.responsiblePerson = controls.responsiblePerson.value;\n this.reason = controls.reason.value;\n this.viewStatus = 'unsolicitedContinueConfirm';\n }else {\n if( reasonField.value == '' ) {\n this.resetForm([true,false,false,false,false,false], 'reason');\n }\n if(reasonField.value != '' && this.markPaymentUnsolicitedForm.controls.reason.invalid ) {\n this.resetForm([false,true,false,false,false,false], 'reason');\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false,false,true,false,false,false], 'reason');\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false,false,false,true,false,false], 'reason');\n }\n if(officeIdField.value == '') {\n this.resetForm([false,false,false,false,true,false], 'responsibleOffice');\n }\n if(officeIdField.value != '' && officeIdField.invalid) {\n this.resetForm([false,false,false,false,false,true],'responsibleOffice');\n }\n }\n }\n resetForm(val, field) {\n if(field==='reason' || field==='all') {\n this.isReasonEmpty = val[0];\n this.reasonHasError = val[1];\n this.reasonMinHasError = val[2];\n this.reasonMaxHasError = val[3];\n }\n if(field==='responsibleOffice' || field==='all') {\n this.isResponsibleOfficeEmpty = val[4];\n this.responsibleOfficeHasError = val[5];\n }\n }\n\ncancelMarkUnsolicitedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.checkingFormValue()){\n this.viewStatus = 'unsolicitedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.markPaymentUnsolicitedForm.controls.responsibleOffice.setValue('');\n this.viewStatus = 'mainForm';\n }\n }\n checkingFormValue(){\n const formFields = this.markPaymentUnsolicitedForm.value;\n let valueExists = false;\n\n for (var field in formFields) {\n if (formFields.hasOwnProperty(field) && formFields[field] !==\"\") {\n valueExists = true;\n break;\n }\n }\n return valueExists;\n }\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n \n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n\n getErrorMessage(isErrorExist) {\n return {\n title: \"Something went wrong.\",\n body: \"Please try again later.\",\n showError: isErrorExist\n };\n }\n\n selectchange(args){ \n this.selectedSiteId = args.target.value; \n this.selectedSiteName = args.target.options[args.target.selectedIndex].text; \n } \n\n}\n","import { Component, OnInit, Output,Input, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport {Router} from '@angular/router';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-app-unprocessed-payments',\n templateUrl: './unprocessed-payments.component.html',\n styleUrls: ['./unprocessed-payments.component.scss']\n})\nexport class UnprocessedPaymentsComponent implements OnInit {\n\n @Input('FEE_RECORDS_EXISTS') FEE_RECORDS_EXISTS: boolean;\n @Input('PAYMENTREF') PAYMENTREF: string;\n @Input('ISTURNOFF') ISTURNOFF: boolean;\n @Input('IS_BUTTON_ENABLE') IS_BUTTON_ENABLE: boolean;\n @Input('IS_OS_AMT_AVAILABLE') IS_OS_AMT_AVAILABLE: boolean;\n @Input('ISNEWPCIPALOFF') ISNEWPCIPALOFF: boolean;\n @Input('ISOLDPCIPALOFF') ISOLDPCIPALOFF: boolean;\n @Input('ISSFENABLE') ISSFENABLE: boolean;\n @Input('PAYMENTSLENGTH') PAYMENTSLENGTH:Number;\n @Input('LEVEL')LEVEL:Number;\n\n @Output() selectedUnprocessedFeeEvent: EventEmitter<string> = new EventEmitter();\n @Output() getUnprocessedFeeCount: EventEmitter<string> = new EventEmitter();\n\n viewStatus = 'main';\n unassignedRecordList: IBSPayments;\n upPaymentErrorMessage: string = null;\n ccdCaseNumber: string;\n recordId: string = null;\n isRecordExist: boolean = false;\n dcnNumber: string = null;\n selectedOption: string;\n isUnprocessedRecordSelected: boolean = true;\n isAllocateToExistingFeebtnEnabled: boolean = false;\n isMarkAsUnidentifiedbtnEnabled: boolean = false;\n isAllocatedToNewFeebtnEnabled: boolean = false;\n isExceptionCase: boolean = false;\n serviceId: string = null;\n isBulkScanEnable;\n isNewpcipaloff;\n isOldpcipaloff;\n isTurnOff: boolean = true;\n isStFixEnable;\n unassignedRecordSelectedList: IBSPayments;\n unassignedRecordListLength: number = 0;\n showContent: boolean;\n\n constructor(private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private OrderslistService: OrderslistService\n ) { }\n\n ngOnInit() {\n // Todo ...\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isNewpcipaloff = this.paymentLibComponent.ISNEWPCIPALOFF;\n this.isOldpcipaloff = this.paymentLibComponent.ISOLDPCIPALOFF;\n this.isStFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.getFeeExists().subscribe( (data) => this.FEE_RECORDS_EXISTS = data);\n this.getUnassignedPaymentlist();\n\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.dcnNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n }\n\n }\n\n setValuesForUnassignedRecord(unassignedPayments) {\n \n this.unassignedRecordList = unassignedPayments.payments;\n if(this.unassignedRecordList){\n this.unassignedRecordListLength = unassignedPayments.payments.length\n }\n this.serviceId = unassignedPayments.responsible_service_id;\n if (unassignedPayments['ccd_reference'] === undefined) {\n this.isExceptionCase = true;\n }\n // this.isRecordExist = this.unassignedRecordList.length === 0;\n this.getUnprocessedFeeCount.emit(<any>this.unassignedRecordList.length);\n this.unprocessedPaymentSelectEvent(this.unassignedRecordList);\n }\n\n formatUnassignedRecordId(ID: Number) {\n return `unassignrecord-${ID}`;\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n\n redirectToFeeSearchPage(event: any, dcn_reference:any) {\n event.preventDefault();\n this.recordId = dcn_reference;\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n url += this.isOldpcipaloff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n url += this.isNewpcipaloff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}&dcn=${this.recordId}${url}`);\n }\n\n loadUnsolicitedPage(viewName: string, dcn_reference:any) {\n this.recordId = dcn_reference;\n this.paymentLibComponent.bspaymentdcn = this.recordId;\n this.paymentLibComponent.viewName = viewName;\n }\n\n unprocessedPaymentSelectEvent(selectedRecordReference: any) {\n this.isUnprocessedRecordSelected = true;\n this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit(selectedRecordReference);\n }\n\n resetButtons() {\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n }\n\n goToAllocatePage(dcn_reference:any) {\n this.paymentLibComponent.bspaymentdcn = dcn_reference;\n this.paymentLibComponent.unProcessedPaymentServiceId = this.serviceId\n this.paymentLibComponent.isTurnOff = this.ISTURNOFF;\n this.paymentLibComponent.isNewPcipalOff = this.ISNEWPCIPALOFF;\n this.paymentLibComponent.isOldPcipalOff = this.ISOLDPCIPALOFF;\n this.paymentLibComponent.ISSFENABLE = this.isStFixEnable;\n\n if(this.ISTURNOFF) {\n this.paymentLibComponent.paymentGroupReference = this.PAYMENTREF;\n this.paymentLibComponent.viewName = 'fee-summary';\n }else {\n this.paymentLibComponent.paymentGroupReference = null;\n this.paymentLibComponent.viewName = 'allocate-payments';\n }\n\n }\n\n validateButtons() {\n if ( this.isUnprocessedRecordSelected && this.isExceptionCase) {\n this.isMarkAsUnidentifiedbtnEnabled = true;\n } else if ( this.isUnprocessedRecordSelected && !this.isExceptionCase && !this.FEE_RECORDS_EXISTS) {\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = true;\n } else if( this.isUnprocessedRecordSelected && !this.isExceptionCase && this.FEE_RECORDS_EXISTS ) {\n if(!this.ISTURNOFF) {\n this.isAllocateToExistingFeebtnEnabled = true;\n this.isAllocatedToNewFeebtnEnabled = false;\n } else {\n this.isAllocateToExistingFeebtnEnabled = this.IS_OS_AMT_AVAILABLE;\n this.isAllocatedToNewFeebtnEnabled = true;\n }\n }\n }\n\n unprocessedPaymentUnSelectEvent(event: any) {\n event.preventDefault();\n this.recordId = null;\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n //this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit('');\n }\n\n showDetailRow(event: any,obj: any, i: any) {\n event.preventDefault();\n \n this.unassignedRecordSelectedList = obj;\n \n }\n}\n","import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport {IPayment} from '../../interfaces/IPayment';\nimport {Router} from '@angular/router';\n\n@Component({\n selector: 'ccpay-app-processed-payments',\n templateUrl: './processed-payments.component.html',\n styleUrls: ['./processed-payments.component.scss']\n})\nexport class ProcessedPaymentsComponent implements OnInit {\n\n @Input('NONPAYMENTS') NONPAYMENTS: IPayment[];\n @Output() goToPaymentViewComponent: EventEmitter<any> = new EventEmitter();\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService\n ) { }\n ngOnInit() {\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n redirectToPaymentViewPage(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent.emit({paymentGroupReference, paymentReference, paymentMethod});\n }\n}\n","\nexport class IAllocationPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n reason: string;\n explanation: string;\n user_name: string;\n constructor(payment_group_reference: string, payment_reference : string, reason? : string, explanation? : string, userName? : string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Allocated\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.reason = reason ? reason : null;\n this.explanation = explanation ? explanation : null;\n this.user_name = userName ? userName : null;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {CaseTransactionsService} from '../../services/case-transactions/case-transactions.service'; \nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport {IBSPayments} from '../../interfaces/IBSPayments';\nimport {AllocatePaymentRequest} from '../../interfaces/AllocatePaymentRequest';\nimport {IAllocationPaymentsRequest} from '../../interfaces/IAllocationPaymentsRequest';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n\n\n@Component({\n selector: 'app-allocate-payments',\n templateUrl: './allocate-payments.component.html',\n styleUrls: ['./allocate-payments.component.scss']\n})\nexport class AllocatePaymentsComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() caseType: string;\n\n overUnderPaymentForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n recordId:string;\n feedbackUrlLabel:string;\n unAllocatedPayment: IBSPayments = {\n amount: 0\n };\n siteID: string = null;\n errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n paymentGroup: IPaymentGroup;\n paymentGroups: IPaymentGroup[] = [];\t\n remainingAmount: number;\n isRemainingAmountGtZero: boolean;\n isMoreDetailsBoxHide: boolean = true;\n isRemainingAmountLtZero: boolean;\n afterFeeAllocateOutstanding: number;\n amountForAllocation: number;\n isConfirmButtondisabled: boolean = false;\n isContinueButtondisabled: boolean = true;\n otherPaymentExplanation: string = null;\n selectedOption: string = null;\n isFeeAmountZero: boolean = false;\t\n\n paymentReasonHasError: boolean = false;\n paymentExplanationHasError: boolean = false;\n isPaymentDetailsEmpty: boolean = false;\n isPaymentDetailsInvalid: boolean = false;\n paymentDetailsMinHasError: boolean = false;\n paymentDetailsMaxHasError: boolean = false;\n isUserNameEmpty: boolean = false;\n isUserNameInvalid: boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n paymentReason: string = null;\n paymentExplanation: string = null;\n userName: string = null;\n paymentSectionLabel: any;\n paymentRef: string = null;\n isStrategicFixEnable: boolean = true;\n orderLevelFees: IOrderReferenceFee[] = [];\n cookieUserName: string[] = [];\n enCookieUserName: any;\n userNameField: string = null;\n\n reasonList: { [key: string]: { [key: string]: string } }= {\n overPayment: {\n hwfReward: 'Help with Fees (HWF) awarded. Please include the HWF reference number in the explanatory note',\n wrongFee: 'Incorrect payment received',\n notIssueCase: 'Unable to issue case',\n otherDeduction: 'Other'\n },\n shortFall: {\n helpWithFee: 'Help with Fees (HWF) application declined',\n wrongFee: 'Incorrect payment received',\n other: 'Other'\n }\n }\n explanationList = {\n overPayment: {\n referRefund: 'Details in case notes. Refund due',\n noRefund: 'Details in case notes. No refund due',\n noCase: 'No case created. Refund due',\n other: 'Other'\n },\n shortFall: {\n holdCase: 'I have put a stop on the case and contacted the applicant requesting the balance of payment',\n heldCase: 'I have put a stop on the case. The applicant needs to be contacted to request the balance of payment',\n other: 'Other'\n }\n }\n\n refund = {\n reason: {\n duplicate: 'Duplicate payment',\n humanerror: 'Human error',\n caseWithdrawn: 'Case withdrawn',\n other: 'Other'\n }\n }\n\n\n constructor(\n private errorHandlerService: ErrorHandlerService,\n private caseTransactionsService: CaseTransactionsService,\n private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n if (this.paymentLibComponent.paymentGroupReference !== null) {\n this.viewStatus = 'allocatePaymentConfirmation';\n }\n \n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.paymentRef = this.paymentLibComponent.paymentGroupReference;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.isTurnOff = this.paymentLibComponent.isTurnOff;\n this.overUnderPaymentForm = this.formBuilder.group({\n moreDetails: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n userName: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s]*)$')\n ])),\n });\n this.OrderslistService.getOrdersList().subscribe( (data) =>\n this.orderLevelFees = data.filter(data => data.orderStatus !== 'Paid'));\n this.OrderslistService.getCaseType().subscribe( (data) => this.caseType = data);\n this.getUnassignedPayment();\n }\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n }\n\n getPaymentGroupDetails(){\n\n if(!this.isTurnOff){\n this.paymentViewService.getPaymentGroupDetails(this.paymentRef).subscribe(\n paymentGroup => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.paymentGroup = paymentGroup;\n this.saveAndContinue();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.paymentGroups = paymentGroups['payment_groups'].filter(paymentGroup => {\n paymentGroup.fees.forEach(fee => {\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true\n }\n });\n let fstCon = this.getGroupOutstandingAmount(<IPaymentGroup>paymentGroup),\n scndCn = fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero) && paymentGroup.payment_group_reference === this.paymentRef;\n return this.paymentRef ? scndCn : fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero);\n });\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }\n\n }\n\n selectedPaymentGroup(paymentGroup: IPaymentGroup) {\t\n this.isContinueButtondisabled = false;\t\n this.paymentGroup = paymentGroup;\t\n }\t\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n\n gotoSummaryPage(event: any) { \n event.preventDefault();\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n\n cancelAllocatePayment(event: any){\n event.preventDefault();\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n if(!this.isTurnOff){\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n } else {\n this.viewStatus = 'mainForm';\t\n }\n }\n confirmAllocatePayement(){\n this.enCookieUserName = document.cookie.split(\";\").find(row => row.includes(\"user-info\")).split(\"=\")[1].split(\";\");\n this.cookieUserName = JSON.parse(decodeURIComponent(this.enCookieUserName));\n \n const fullName = this.cookieUserName['forename'] + ' ' + this.cookieUserName['surname'];\n\n const paymentDetailsField = this.overUnderPaymentForm.controls.moreDetails,\n paymentFormError = this.overUnderPaymentForm.controls.moreDetails.errors,\n userNameField = fullName,\n isEmptyCondtion = this.paymentReason && this.paymentExplanation,\n isOtherOptionSelected = this.paymentExplanation === 'Other';\n\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n if ( (!this.isRemainingAmountGtZero && !this.isRemainingAmountLtZero) || isEmptyCondtion && (!isOtherOptionSelected && userNameField.length > 0 || isOtherOptionSelected && userNameField.length > 0 && paymentDetailsField.valid)) {\n this.isConfirmButtondisabled = true;\n this.otherPaymentExplanation = this.paymentExplanation === 'Other' ? paymentDetailsField.value : this.paymentExplanation;\n this.userName = userNameField;\n this.finalServiceCall();\n }else {\n if(!this.paymentReason) {\n this.resetForm([true, false, false, false, false, false, false, false], 'reason');\n }\n if(!this.paymentExplanation) {\n this.resetForm([false, true, false, false, false, false, false, false], 'explanation');\n }\n if(this.paymentExplanation && isOtherOptionSelected) {\n if(paymentDetailsField.value == '' ) {\n this.resetForm([false, false, true, false, false, false, false, false], 'other');\n }\n if(paymentDetailsField.value != '' && paymentDetailsField.invalid ) {\n this.resetForm([false, false, false, true, false, false, false, false], 'other');\n }\n if(paymentFormError && paymentFormError.minlength && paymentFormError.minlength.actualLength < 3 ) {\n this.resetForm([false, false, false, false, true, false, false, false], 'other');\n }\n if(paymentFormError && paymentFormError.maxlength && paymentFormError.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, false, false, true, false, false], 'other');\n }\n }\n if(userNameField.length === 0) {\n this.resetForm([false, false, false, false, false, false, true, false], 'username');\n }\n }\n }\n resetForm(vals, field) {\n if(field==='reason' || field==='all') {\n this.paymentReasonHasError = vals[0];\n }\n if(field==='explanation' || field==='all') {\n this.paymentExplanationHasError = vals[1];\n }\n if(field==='other' || field==='all') {\n this.isPaymentDetailsEmpty = vals[2];\n this.isPaymentDetailsInvalid = vals[3];\n this.paymentDetailsMinHasError = vals[4];\n this.paymentDetailsMaxHasError = vals[5];\n }\n if(field==='username' || field==='all') {\n this.isUserNameEmpty = vals[6];\n this.isUserNameInvalid = vals[7];\n }\n }\n finalServiceCall() {\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n reason: this.paymentReason,\n allocation_status:'Allocated',\n explanation: this.otherPaymentExplanation,\n payment_allocation_status: {\n description: '',\n name: 'Allocated'\n },\n payment_group_reference: this.paymentGroup.payment_group_reference,\n case_type: this.caseType,\n user_name: this.userName\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unAllocatedPayment, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSPaymentStrategic(postStrategicBody , this.paymentGroup.payment_group_reference).subscribe(\n res => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n });\n\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response1 = JSON.parse(res1);\n if (response1.success) {\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unAllocatedPayment, this.siteID, this.exceptionReference);\n this.bulkScaningPaymentService.postBSAllocatePayment(requestBody, this.paymentGroup.payment_group_reference).subscribe(\n res2 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response2 = JSON.parse(res2);\n const reqBody = new IAllocationPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, this.paymentReason, this.otherPaymentExplanation, this.userName);\n if (response2.success) {\n this.paymentViewService.postBSAllocationPayments(reqBody).subscribe(\n \n res3 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n ); \n }\n }\n\n saveAndContinue(){\n if(this.paymentGroup) {\n this.isMoreDetailsBoxHide = true;\n this.overUnderPaymentForm.get('moreDetails').reset();\n this.overUnderPaymentForm.get('moreDetails').setValue('');\n this.overUnderPaymentForm.get('userName').reset();\n this.overUnderPaymentForm.get('userName').setValue('');\n this.paymentReason = '';\n this.paymentExplanation = '';\n let GroupOutstandingAmount = this.getGroupOutstandingAmount(this.paymentGroup);\n const remainingToBeAssigned = this.unAllocatedPayment.amount - GroupOutstandingAmount;\n this.isRemainingAmountGtZero = remainingToBeAssigned > 0;\n this.isRemainingAmountLtZero = remainingToBeAssigned < 0;\n this.paymentSectionLabel = this.isRemainingAmountGtZero ? { \n title: 'There is an Over payment of',\n reason: 'Provide a reason. This will be used in the Refund process.',\n }: this.isRemainingAmountLtZero ? { \n title: 'There is an Under payment of',\n reason: 'Provide a reason',\n }: { \n title:'Amount left to be allocated',\n reason:'',\n };\n this.feedbackUrlLabel = this.isRemainingAmountGtZero ? 'CONFIRMALLOCATION_SURPLUS' : this.isRemainingAmountLtZero ? 'CONFIRMALLOCATION_SHORTFALL' : 'CONFIRMALLOCATION';\n this.remainingAmount = this.isRemainingAmountGtZero ? remainingToBeAssigned : this.isRemainingAmountLtZero ? remainingToBeAssigned * -1 : 0;\n this.afterFeeAllocateOutstanding = remainingToBeAssigned >= 0 ? 0 : (remainingToBeAssigned * -1);\n this.amountForAllocation = GroupOutstandingAmount >= this.unAllocatedPayment.amount ? this.unAllocatedPayment.amount : GroupOutstandingAmount;\n if(this.isTurnOff){\n this.viewStatus = 'allocatePaymentConfirmation';\t\n }\n }\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.unAllocatedPayment = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n this.getPaymentGroupDetails();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }\n selectRadioButton(key, type) {\n this.isMoreDetailsBoxHide = true;\n if( type === 'explanation' && key === 'other' ){\n this.isPaymentDetailsEmpty = false;\n this.isPaymentDetailsInvalid = false;\n this.paymentDetailsMinHasError = false;\n this.paymentDetailsMaxHasError = false;\n this.isMoreDetailsBoxHide = false;\n }\n }\n OrderListSelectEvent(orderef: any){\n this.isContinueButtondisabled = false;\n this.recordId= orderef;\n }\n\n redirectToOrderFeeSearchPage() {\n // this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = this.recordId;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n}\n}\n","import { IFee } from './IFee';\n\nexport class AddRemissionRequest {\n beneficiary_name: string;\n ccd_case_number: string;\n fee: IFee;\n hwf_amount: number;\n hwf_reference: string;\n payment_group_reference: string;\n case_type: string;\n\n constructor(ccd_case_number: string, fee: IFee, hwf_amount: number, hwf_reference: string, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.fee = fee;\n this.hwf_amount = hwf_amount;\n this.hwf_reference = hwf_reference;\n this.case_type = caseType;\n }\n}\n","export class AddRetroRemissionRequest {\n hwf_amount: number;\n hwf_reference: string;\n\n constructor(hwf_amount: number, hwf_reference: string) {\n this.hwf_amount = hwf_amount;\n this.hwf_reference = hwf_reference;\n }\n}\n","export class PostRefundRetroRemission {\n payment_reference: string;\n refund_reason: string;\n \n constructor(payment_reference : string, refund_reason : string) {\n this.payment_reference= payment_reference;\n this.refund_reason = refund_reason;\n } \n}","export class PostIssueRefundRetroRemission {\n remissionReference: string;\n \n constructor(remissionReference : string) {\n this.remissionReference= remissionReference;\n } \n}","import { Component, OnInit, Input, Output, EventEmitter} from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl, RequiredValidator } from '@angular/forms';\nimport { IFee } from '../../interfaces/IFee';\nimport {Router} from '@angular/router';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { RefundsRequest } from '../../interfaces/RefundsRequest';\nimport { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';\nimport { IssueRefundRequest } from '../../interfaces/IssueRefundRequest';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\nimport { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';\nimport {ChangeDetectorRef} from '@angular/core';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { OrderslistService } from '../../services/orderslist.service';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-add-remission',\n templateUrl: './add-remission.component.html',\n styleUrls: ['./add-remission.component.scss']\n})\nexport class AddRemissionComponent implements OnInit {\n @Input() fee: IFee;\n @Input() payment: IPayment;\n @Input() remission: IRemission;\n @Input() ccdCaseNumber: string;\n @Input() caseType: string;\n @Input() viewCompStatus: string;\n @Input() paymentGroupRef: string;\n @Input() isTurnOff: boolean;\n @Input() isRefundRemission: boolean;\n @Input() isOldPcipalOff: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() isStrategicFixEnable: boolean;\n @Input() paidAmount: any;\n @Input() isFromRefundListPage: boolean;\n @Input() isFromPaymentDetailPage: boolean;\n @Input() isFromServiceRequestPage: boolean;\n @Input() feeamount: number;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input('orderDetail') orderDetail: any[];\n @Input('orderRef') orderRef: string;\n @Input('orderStatus') orderStatus: string;\n @Input('orderParty') orderParty: string;\n @Input('orderCreated') orderCreated: Date;\n @Input('orderCCDEvent') orderCCDEvent: string;\n @Input('takepayment') takePayment: boolean;\n @Input('orderFeesTotal') orderFeesTotal: number;\n @Input('orderTotalPayments') orderTotalPayments: number;\n @Input('orderRemissionTotal') orderRemissionTotal: number;\n @Output() cancelRemission: EventEmitter<void> = new EventEmitter();\n //@Output() refundListReason: EventEmitter<any> = new EventEmitter({reason:string, code:string});\n @Output() refundListReason = new EventEmitter<{reason: string, code: string}>();\n @Output() refundListAmount: EventEmitter<string> = new EventEmitter();\n\n refund = {\n reason: {\n duplicate: 'Duplicate payment',\n humanerror: 'Human error',\n caseWithdrawn: 'Case withdrawn',\n other: 'Other'\n }\n }\n\n remissionForm: FormGroup;\n hasErrors = false;\n viewStatus = 'main';\n errorMessage = null;\n option: string = null;\n isConfirmationBtnDisabled: boolean = false;\n bsPaymentDcnNumber: string;\n selectedValue = 'yes';\n amount: any;\n retroRemission: boolean = false;\n remissionReference: string = '';\n refundReference: string;\n refundAmount: string;\n paymentExplanationHasError: boolean = false;\n refundReason:string;\n selectedRefundReason: string;\n displayRefundReason: string;\n refundCode:string;\n remessionPayment:IPayment;\n isRemissionCodeEmpty: boolean = false;\n remissionCodeHasError: boolean = false;\n isAmountEmpty: boolean = false;\n isReasonEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n refundHasError:boolean = false;\n isPaymentSuccess: boolean = false;\n isRemissionApplied: boolean = false;\n remissionamt:number;\n // refundReasons: any[] = [];\n commonRefundReasons: any[] = [];\n showReasonText: boolean;\n isRefundReasonsSelected: boolean;\n default: string;\n reasonLength: number;\n refundReasons:IRefundReasons[];\n pattern1: string;\n pattern2: string;\n sendOrderDetail: any[];\n sendOrderRef: string;\n component: { account_number: string; amount: number; case_reference: string; ccd_case_number: string; channel: string; currency: string; customer_reference: string; date_created: string; date_updated: string; description: string; method: string; organisation_name: string; payment_allocation: any[]; reference: string; service_name: string; site_id: string; status: string; };\n\n constructor(private formBuilder: FormBuilder,\n private router: Router,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private refundService: RefundsService,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.default = 'Select a different reason';\n this.pattern1 = '^([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})$';\n this.pattern2 = '^([A-Za-z]{2}[0-9]{2})-([0-9]{6})$';\n if(this.viewCompStatus !== '' && this.viewCompStatus !== undefined){\n this.viewStatus = '';\n }\n if(this.remission) {\n }\n if(this.fee) {\n this.amount = (this.fee.volume * this.fee.calculated_amount);\n }\n if (this.payment){\n this.remessionPayment = this.payment;\n if(this.payment.status === 'Success') {\n this.isPaymentSuccess = true;\n }\n }\n this.option = this.paymentLibComponent.SELECTED_OPTION;\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.remissionForm = this.formBuilder.group({\n remissionCode: new FormControl('', \n Validators.compose([\n Validators.required,\n Validators.pattern(`(${this.pattern1})|(${this.pattern2})`)\n ]) \n ),\n amount: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[0-9]+(\\.[0-9]{1,2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n refundDDReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl()\n });\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundDDReason'].setValue('Select a different reason', {onlySelf: true});\n \n if(this.viewCompStatus === ''){\n this.viewStatus = 'main';\n }\n \n if(this.viewCompStatus === 'issuerefund'){\n this.refundService.getRefundReasons().subscribe(\n refundReasons => { \n this.refundReasons = refundReasons.filter((data) => data.recently_used === false);\n this.refundReasons = this.refundReasons.filter((data) => data.name !== 'Retrospective remission');\n this.cd.detectChanges();\n this.commonRefundReasons = refundReasons.filter((data) => data.recently_used === true);\n this.commonRefundReasons.sort((a, b) => a.toString().localeCompare(b));\n this.cd.detectChanges();\n } );\n }\n \n if(this.viewCompStatus === 'processretroremissonpage' && this.isFromRefundListPage){\n this.viewStatus = 'processretroremissonpage';\n }\n\n }\n\n addRemission() {\n this.resetRemissionForm([false, false, false, false, false, false], 'All');\n const remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount > remissionctrls.amount.value; \n this.remissionForm.controls['refundReason'].setErrors(null);\n this.remissionForm.controls['refundDDReason'].setErrors(null);\n if (this.remissionForm.dirty && this.remissionForm.valid && isRemissionLessThanFee) {\n this.viewStatus = 'confirmation';\n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false, false], 'amount');\n }\n if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true, false], 'amount');\n }\n }\n }\n\n confirmRemission() {\n this.isConfirmationBtnDisabled = true;\n const newNetAmount = this.remissionForm.controls.amount.value,\n remissionAmount = this.fee.net_amount - newNetAmount,\n requestBody = new AddRemissionRequest\n (this.ccdCaseNumber, this.fee, remissionAmount, this.remissionForm.controls.remissionCode.value, this.caseType);\n this.paymentViewService.postPaymentGroupWithRemissions(decodeURIComponent(this.paymentGroupRef).trim(), this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response).success) {\n let LDUrl = this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable'\n LDUrl += `&caseType=${this.caseType}`\n LDUrl += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable'\n LDUrl += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable'\n if (this.paymentLibComponent.bspaymentdcn) {\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(`/payment-history/${this.ccdCaseNumber}?view=fee-summary&selectedOption=${this.option}&paymentGroupRef=${this.paymentGroupRef}&dcn=${this.paymentLibComponent.bspaymentdcn}${LDUrl}`);\n }else {\n this.gotoCasetransationPage();\n }\n\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n }\n );\n }\n\n resetRemissionForm(val, field){\n if (field==='All'){\n this.isRemissionCodeEmpty = val[0];\n this.remissionCodeHasError = val[1];\n this.isAmountEmpty = val[2];\n this.amountHasError = val[3];\n this.isRemissionLessThanFeeError = val[4];\n this.isReasonEmpty = val[5];\n } else if(field==='remissionCode' || field==='All') {\n this.isRemissionCodeEmpty = val[0];\n this.remissionCodeHasError = val[1];\n } else if (field==='amount' || field==='All'){\n this.isAmountEmpty = val[2];\n this.amountHasError = val[3];\n this.isRemissionLessThanFeeError = val[4];\n } else if (field==='reason' || field==='All'){\n this.isReasonEmpty = val[5];\n }\n }\n\n // Add retro remission changes\n addRemissionCode() {\n this.errorMessage = false;\n this.viewStatus = '';\n this.isRefundRemission = false;\n this.resetRemissionForm([false, false, false, false, false, false], 'All');\n const remissionctrls=this.remissionForm.controls\n // isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value; \n this.remissionForm.controls['refundReason'].setErrors(null);\n this.remissionForm.controls['refundDDReason'].setErrors(null);\n this.remissionForm.controls['amount'].setErrors(null);\n if (this.remissionForm.dirty && this.remissionForm.valid ) {\n this.viewCompStatus = '';\n this.viewStatus = \"processretroremissonpage\";\n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false], 'amount');\n }\n if(remissionctrls['reason'].value == '') {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n }\n if(remissionctrls.amount.valid){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n }\n \n }\n }\n\n\n gotoAddRetroRemissionCodePage() {\n this.errorMessage = false;\n if(this.isRefundRemission) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListAmount.emit();\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n }\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n } \n this.viewStatus = '';\n this.selectedValue = 'yes';\n this.viewCompStatus = \"addremission\";\n this.isRefundRemission = true;\n this.errorMessage = '';\n if(this.isFromPaymentDetailPage) {\n this.paymentLibComponent.viewName = 'payment-view';\n }\n }\n\n gotoCheckRetroRemissionPage(payment: IPayment) {\n this.paymentLibComponent.iscancelClicked = false;\n this.errorMessage = '';\n this.resetRemissionForm([false, false, false, false, false], 'All');\n if( !this.isRefundRemission) {\n var remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value; \n if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' || remissionctrls['amount'].value < 0) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, false, false, true, false], 'amount');\n } else if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n }\n }\n } else {\n var remissionctrls=this.remissionForm.controls;\n //if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' || remissionctrls['amount'].value < 0 ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n this.refundListAmount.emit(remissionctrls['amount'].value);\n }\n //}\n \n }\n }\n\n gotoProcessRetroRemissionPage() {\n this.viewStatus = '';\n this.viewCompStatus = 'addremission';\n this.isRefundRemission = true;\n this.errorMessage = '';\n }\n\n confirmRetroRemission() {\n if(!this.isConfirmationBtnDisabled) {\n this.retroRemission = true;\n this.remissionamt = this.remissionForm.controls.amount.value;\n const requestBody = new AddRetroRemissionRequest(this.remissionamt,this.remissionForm.controls.remissionCode.value )\n this.paymentViewService.postPaymentGroupWithRetroRemissions(decodeURIComponent(this.paymentGroupRef).trim(), this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.isRemissionApplied = true;\n this.viewCompStatus = '';\n this.viewStatus = 'retroremissionconfirmationpage';\n this.remissionReference =JSON.parse(response).remission_reference;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n }\n );\n }\n }\n\n processRefund() {\n this.errorMessage = '';\n this.isConfirmationBtnDisabled = true;\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n if (this.remissionReference === undefined || this.remissionReference === '') {\n this.remissionReference = this.remission.remission_reference;\n }\n const requestBody = new PostIssueRefundRetroRemission(this.remissionReference);\n this.paymentViewService.postRefundRetroRemission(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n })\n }\n\n // Issue Refund changes\n\n gotoIssueRefundConfirmation(payment: IPayment) {\n this.paymentLibComponent.iscancelClicked = false;\n if(this.paymentLibComponent.REFUNDLIST === \"true\") {\n this.isFromRefundListPage = true; \n }\n this.errorMessage = '';\n this.refundReason = this.remissionForm.controls['refundReason'].value === null ? this.remissionForm.controls['refundDDReason'].value : this.remissionForm.controls['refundReason'].value;\n if(!this.refundReason || this.refundReason === 'Select a different reason') {\n this.refundHasError = true;\n } else if(this.selectedRefundReason.includes('Other') && (this.remissionForm.controls['reason'].value == '' || this.remissionForm.controls['reason'].value == null)) {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n } else if (this.selectedRefundReason.includes('Other') && this.remissionForm.controls['reason'].value !== '') {\n this.refundHasError = false;\n this.refundReason += '-' + this.remissionForm.controls['reason'].value;\n this.displayRefundReason = this.selectedRefundReason + '-' + this.remissionForm.controls['reason'].value;\n if ( this.isFromRefundListPage ) {\n this.refundListReason.emit({reason: this.displayRefundReason, code: this.refundReason});\n } else {\n this.viewCompStatus = '';\n this.viewStatus = 'checkissuerefundpage';\n }\n \n } else {\n this.displayRefundReason = this.selectedRefundReason;\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n } else {\n this.viewCompStatus = '';\n this.viewStatus = 'checkissuerefundpage';\n }\n \n }\n }\n\n gotoIssueRefundPage() {\n this.errorMessage = '';\n this.viewCompStatus = 'issuerefund';\n this.viewStatus = '';\n this.isRefundRemission = true;\n this.errorMessage = false;\n this.refundHasError = false;\n this.isReasonEmpty = false;\n }\n\n changeIssueRefundReason() {\n // this.remissionForm.controls['refundReason'].setValue('Duplicate payment');\n this.errorMessage = '';\n this.refundHasError = false;\n this.isReasonEmpty = false;\n this.viewCompStatus = 'issuerefund';\n this.viewStatus = '';\n this.isRefundRemission = true;\n }\n\n confirmIssueRefund() {\n this.isConfirmationBtnDisabled = true;\n this.errorMessage = '';\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n \n const requestBody = new PostRefundRetroRemission(this.payment.reference,this.refundReason);\n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference =JSON.parse(response).refund_reference;\n if(JSON.parse(response).refund_amount) {\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n })\n }\n\n// Retro Refund\n\n confirmRetroRefund() {\n this.isConfirmationBtnDisabled = true;\n this.errorMessage = '';\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n\n const requestBody = new PostRefundRetroRemission(this.payment.reference,'RR004-Retrospective remission');\n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'retrorefundconfirmationpage';\n this.refundReference =JSON.parse(response).refund_reference;\n if(JSON.parse(response).refund_amount) {\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n });\n }\n\n selectRadioButton(key, value) {\n localStorage.setItem(\"myradio\", key);\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundDDReason'].setValue('Select a different reason', {onlySelf: true});\n remissionctrls['reason'].reset();\n this.isRefundReasonsSelected = true;\n this.errorMessage = false;\n this.isReasonEmpty = false;\n this.showReasonText = false;\n this.refundHasError = false;\n this.selectedRefundReason = key;\n if(this.selectedRefundReason.includes('Other')) {\n this.showReasonText = true;\n this.refundHasError = false;\n this.refundReason = key;\n }\n }\n\n selectchange(args) {\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundReason'].reset();\n remissionctrls['reason'].reset();\n this.isRefundReasonsSelected = false;\n this.showReasonText = false;\n this.refundHasError = false;\n this.selectedRefundReason = args.target.options[args.target.options.selectedIndex].id;\n this.reasonLength = (29-this.selectedRefundReason.split('- ')[1].length);\n\n if(this.selectedRefundReason.includes('Other')) {\n this.showReasonText = true;\n this.refundHasError = false;\n this.refundReason = args.target.options[args.target.options.selectedIndex].id;\n }\n\n\n }\n\n gotoServiceRequestPage(event: any) {\n this.errorMessage ='';\n event.preventDefault();\n if (this.isFromServiceRequestPage && !this.isFromPaymentDetailPage) {\n this.viewStatus = 'order-full-view';\n this.viewCompStatus = '';\n } else if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n } else {\n this.paymentLibComponent.paymentMethod = this.payment.method;\n this.paymentLibComponent.paymentGroupReference = this.paymentLibComponent.paymentGroupReference\n this.paymentLibComponent.paymentReference = this.payment.reference;\n this.paymentLibComponent.viewName = 'payment-view';\n this.OrderslistService.setOrderRef(this.orderRef);\n this.OrderslistService.setorderCCDEvent(this.orderCCDEvent);\n this.OrderslistService.setorderCreated(this.orderCreated);\n this.OrderslistService.setorderDetail(this.orderDetail);\n this.OrderslistService.setorderParty(this.orderParty);\n this.OrderslistService.setorderTotalPayments(this.orderTotalPayments);\n this.OrderslistService.setorderRemissionTotal(this.orderRemissionTotal);\n this.OrderslistService.setorderFeesTotal(this.orderFeesTotal);\n this.viewStatus = 'payment-view';\n this.sendOrderDetail = this.orderDetail;\n this.sendOrderRef = this.orderRef;\n if(this.LOGGEDINUSERROLES === undefined) {\n this.OrderslistService.getUserRolesList().subscribe((data) => this.LOGGEDINUSERROLES = data);\n }\n this.viewCompStatus = '';\n }\n // if (this.paymentLibComponent.TAKEPAYMENT === undefined && this.paymentLibComponent.SERVICEREQUEST === undefined) {\n // this.paymentLibComponent.SERVICEREQUEST = 'false';\n // this.paymentLibComponent.TAKEPAYMENT = false;\n // }\n // if (this.isFromServiceRequestPage) {\n // //this.paymentLibComponent.TAKEPAYMENT = false;\n // this.paymentLibComponent.isFromRefundStatusPage = false;\n // this.viewStatus = 'main'\n // this.paymentLibComponent.viewName = 'case-transactions';\n // this.OrderslistService.setisFromServiceRequestPage(true);\n // this.OrderslistService.setnavigationPage('servicerequestpage');\n // }\n // if ( this.isFromRefundListPage ) {\n // this.paymentLibComponent.iscancelClicked = true;\n // this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n // this.paymentLibComponent.isFromRefundStatusPage = true;\n // } \n // if(!this.paymentLibComponent.isFromRefundStatusPage) {\n // if(this.payment) {\n // this.OrderslistService.setpaymentPageView({method: this.payment.method,payment_group_reference: this.paymentGroupRef, reference:this.payment.reference});\n // }\n // if (this.isFromServiceRequestPage) { \n // this.OrderslistService.setnavigationPage('servicerequestpage');\n // } else {\n // this.OrderslistService.setnavigationPage('paymentdetailspage');\n // }\n // this.errorMessage = '';\n // this.paymentLibComponent.viewName = 'case-transactions';\n // // this.paymentLibComponent.TAKEPAYMENT = true;\n // this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n // this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n // this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n // this.paymentLibComponent.isFromServiceRequestPage = true; \n // this.paymentLibComponent.ISBSENABLE = true;\n // let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n // partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n // partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n // partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n // partUrl += `&caseType=${this.caseType}`;\n // partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n // partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n // if(this.isFromPaymentDetailPage) {\n // partUrl += this.paymentLibComponent.isFromPaymentDetailPage\n // }\n // if(!this.paymentLibComponent.TAKEPAYMENT) {\n // this.paymentLibComponent.TAKEPAYMENT = undefined;\n // }\n // if ( this.paymentLibComponent.SERVICEREQUEST) {\n // const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&selectedOption=${this.option}${partUrl}`;\n // this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n // this.router.onSameUrlNavigation = 'reload';\n // this.router.navigateByUrl(url);\n // } else {\n // const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n // this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n // this.router.onSameUrlNavigation = 'reload';\n // this.router.navigateByUrl(url);\n // }\n \n // } else {\n // this.paymentLibComponent.viewName === 'refundstatuslist';\n // this.paymentLibComponent.isFromRefundStatusPage = true;\n // }\n }\n\n gotoCasetransationPage() {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.errorMessage = '';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.VIEW = 'case-transactions';\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n this.paymentLibComponent.isFromServiceRequestPage = true; \n this.resetOrderData();\n let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n\n gotoCasetransationPageCancelBtnClicked(event: Event) {\n event.preventDefault();\n if( !this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.VIEW ='case-transactions';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n // this.OrderslistService.setnavigationPage('casetransactions');\n // this.OrderslistService.setisFromServiceRequestPage(false);\n // this.paymentLibComponent.VIEW ='case-transactions';\n // this.paymentLibComponent.viewName = 'case-transactions';\n // this.paymentLibComponent.ISBSENABLE = true;\n // this.paymentLibComponent.isRefundStatusView = false;\n // this.resetOrderData(); let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n // partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n // partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n // partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n // partUrl += `&caseType=${this.caseType}`;\n // partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n // partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n // const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n // this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n // this.router.onSameUrlNavigation = 'reload';\n // this.router.navigateByUrl(url);\n } else { \n\n if (this.paymentLibComponent.REFUNDLIST) {\n this.paymentLibComponent.viewName = 'refund-list';\n return;\n }\n if (this.paymentLibComponent.TAKEPAYMENT === undefined && this.paymentLibComponent.SERVICEREQUEST === undefined) {\n this.paymentLibComponent.SERVICEREQUEST = 'false';\n }\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.OrderslistService.setpaymentPageView({method: '',payment_group_reference: '', reference:''});\n this.OrderslistService.setnavigationPage('casetransactions');\n this.errorMessage = '';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n this.paymentLibComponent.isFromServiceRequestPage = true; \n this.paymentLibComponent.ISBSENABLE = true;\n let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n if(this.isFromPaymentDetailPage) {\n partUrl += this.paymentLibComponent.isFromPaymentDetailPage\n }\n\n if(!this.paymentLibComponent.SERVICEREQUEST) {\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n } else {\n const url =`/payment-history/${this.ccdCaseNumber}?selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n }\n \n }\n\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n\n\n getFormattedCurrency(currency:number){\n if(currency.toString().includes(\".\")){\n return currency\n }\n return currency.toString().concat(\".00\");\n }\n \n}","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'ccdHyphens'\n})\nexport class CcdHyphensPipe implements PipeTransform {\n constructor() {}\n transform(value: any, args?: any): any {\n const pattern = /^([0-9]{4})+([0-9]{4})+([0-9]{4})+([0-9]{4})$/;\n if ( value.match(pattern)) {\n return value.replace(pattern,'$1-$2-$3-$4') \n }\n return value;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'capitalize'\n})\nexport class CapitalizePipe implements PipeTransform {\n constructor() { }\n transform(s: any, args?: any): any {\n return s && s[0].toUpperCase() + s.slice(1) || \"\";\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'keyValue'\n})\nexport class keyValuePipe implements PipeTransform {\n constructor() {}\n transform(input: any): any {\n let keys = [];\n for (let key in input) {\n if (input.hasOwnProperty(key)) {\n keys.push({ key: key, value: input[key]});\n }\n }\n return keys;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\nimport { DomSanitizer, SafeHtml } from '@angular/platform-browser';\n\n@Pipe({ name: 'sanitizeHtml' })\nexport class SanitizeHtmlPipe implements PipeTransform {\n constructor(private sanitizer: DomSanitizer) {}\n transform(value: any): SafeHtml {\n return this.sanitizer.bypassSecurityTrustHtml(value);\n }\n}\n","import { Injectable } from '@angular/core';\nimport * as FileSaver from 'file-saver';\nimport * as XLSX from 'xlsx';\nimport * as XLSXStyle from 'xlsx-style';\n\n\nconst EXCEL_TYPE = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8';\nconst EXCEL_EXTENSION = '.xlsx';\n\n@Injectable()\nexport class XlFileService {\n\n constructor() { }\n\n public exportAsExcelFile(json: any[], excelFileName: string): void {\n let worksheet: XLSX.WorkSheet; \n let workbook: XLSX.WorkBook; \n console.log(excelFileName);\n\n if(excelFileName.match('Data_Loss')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['loss_resp','payment_asset_dcn','env_ref','env_item','resp_service_id','resp_service_name','date_banked','bgc_batch','payment_method','amount']});\n worksheet = this.setDataLossReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Unprocessed')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','exception_ref','ccd_ref','date_banked','bgc_batch','payment_asset_dcn','env_ref','env_item','payment_method','amount']});\n worksheet = this.setUnprocessedReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Processed_Unallocated')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','allocation_status','receiving_office','allocation_reason','ccd_exception_reference','ccd_case_reference','payment_asset_dcn','env_ref','env_item','date_banked','bgc_batch','payment_method','amount']});\n worksheet = this.setProcessedUnallocatedReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Payment failure')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['payment_reference','ccd_reference','org_id','service_name','failure_reference','failure_reason','disputed_amount','event_name','event_date','representment_status','representment_date','refund_references','refund_amount','refund_date']});\n worksheet = this.setPaymentFailureReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else {\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','surplus_shortfall','balance','payment_amount','ccd_case_reference', 'ccd_exception_reference', 'processed_date', 'reason', 'explanation', 'user_name']});\n worksheet = this.setShortFallReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n }\n workbook = { Sheets: { 'data': worksheet }, SheetNames: ['data'] };\n const excelBuffer: any = XLSX.write(workbook, { bookType: 'xlsx', type: 'array' });\n this.saveAsExcelFile(excelBuffer, excelFileName);\n }\n\n\nprivate autoFitColumns (worksheet: XLSX.WorkSheet,json:any) : XLSX.WorkSheet {\n let objectMaxLength = []; \n let ColWidth = [];\n let obj = <any>Object;\n for (let i = 0; i < json.length; i++) {\n let value = obj.values(json[i]);\n let key = obj.keys(json[i]);\n for (let j = 0; j < value.length; j++) {\n if(value[j] === null){\n value[j] = '';\n }\n objectMaxLength[j] =\n key[j].length >= value[j].length\n ? key[j].length+2\n : value[j].length+1;\n if( value[j].length === undefined){\n objectMaxLength[j] = key[j].length+2;\n }\n ColWidth.push({'width': +objectMaxLength[j]});\n }\n }\n worksheet['!cols'] = ColWidth;\n return worksheet;\n}\n\n\nprivate setDataLossReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Loss_Resp\";\n worksheet.B1.v = \"Payment_Asset_DCN\";\n worksheet.C1.v = \"Envelope_Ref\";\n worksheet.D1.v = \"Envelope_Item\";\n worksheet.E1.v = \"Resp_Service ID\";\n worksheet.F1.v = \"Resp_Service Name\";\n worksheet.G1.v = \"Date_Banked\";\n worksheet.H1.v = \"BGC_Batch\";\n worksheet.I1.v = \"Payment_Method\";\n worksheet.J1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setUnprocessedReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Exception_Ref\";\n worksheet.D1.v = \"CCD_Ref\";\n worksheet.E1.v = \"Date_Banked\";\n worksheet.F1.v = \"BGC_Batch\";\n worksheet.G1.v = \"Payment_Asset_DCN\";\n worksheet.H1.v = \"Envelope_Ref\";\n worksheet.I1.v = \"Envelope_Item\";\n worksheet.J1.v = \"Payment_Method\";\n worksheet.K1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setProcessedUnallocatedReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Allocation_Status\";\n worksheet.D1.v = \"Receiving_Office\";\n worksheet.E1.v = \"Allocation_Reason\";\n worksheet.F1.v = \"CCD_Exception_Ref\";\n worksheet.G1.v = \"CCD_Case_Ref\";\n worksheet.H1.v = \"Payment_Asset_DCN\";\n worksheet.I1.v = \"Envelope_Ref\";\n worksheet.J1.v = \"Envelope_Item\";\n worksheet.K1.v = \"Date_Banked\";\n worksheet.L1.v = \"BGC_Batch\";\n worksheet.M1.v = \"Payment_Method\";\n worksheet.N1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setPaymentFailureReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Payment reference\";\n worksheet.B1.v = \"CCD reference\";\n worksheet.C1.v = \"OrgID\";\n worksheet.D1.v = \"Service name\";\n worksheet.E1.v = \"Failure reference\";\n worksheet.F1.v = \"Failure reason\";\n worksheet.G1.v = \"Disputed amount\";\n worksheet.H1.v = \"Event name\";\n worksheet.I1.v = \"Event date\";\n worksheet.J1.v = \"Representment status\";\n worksheet.K1.v = \"Representment date\";\n worksheet.L1.v = \"Refund reference\";\n worksheet.M1.v = \"Refund amount\";\n worksheet.N1.v = \"Refund date\";\n return worksheet;\n}\nprivate setShortFallReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Over Payment_Under Payment\";\n worksheet.D1.v = \"Balance\";\n worksheet.E1.v = \"Payment_Amount\";\n worksheet.F1.v = \"CCD_Case_Ref\";\n worksheet.G1.v = \"Exception_Ref\";\n worksheet.H1.v = \"Processed_Date\";\n worksheet.I1.v = \"Reason\";\n worksheet.J1.v = \"Explanation\";\n worksheet.K1.v = \"Updated Name\";\n return worksheet;\n}\n\nprivate saveAsExcelFile(buffer: any, fileName: string): void {\n const data: Blob = new Blob([buffer], {\n type: EXCEL_TYPE\n });\n FileSaver.saveAs(data, fileName + EXCEL_EXTENSION);\n }\n}\n","import { Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormGroup, FormControl } from '@angular/forms';\nimport { formatDate } from \"@angular/common\";\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {XlFileService} from '../../services/xl-file/xl-file.service';\nimport { FindValueSubscriber } from 'rxjs/internal/operators/find';\n\n@Component({\n selector: 'ccpay-reports',\n templateUrl: './reports.component.html',\n styleUrls: ['./reports.component.scss']\n})\nexport class ReportsComponent implements OnInit {\n fmt = 'dd/MM/yyyy';\n loc = 'en-US';\n reportsForm: FormGroup;\n startDate: string;\n endDate: string;\n ccdCaseNumber: string;\n isDownLoadButtondisabled:Boolean = false;\n isStartDateLesthanEndDate: Boolean = false;\n isDateBetwnMonth: Boolean = false;\n isDateRangeBetnWeek: Boolean = false;\n errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n paymentGroups: IPaymentGroup[] = [];\n\n constructor(\n private xlFileService: XlFileService,\n private errorHandlerService: ErrorHandlerService,\n private formBuilder: FormBuilder,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private paymentViewService: PaymentViewService) { }\n \n\n ngOnInit() {\n this.fromValidation();\n\n }\n\n getToday(): string {\n return new Date().toISOString().split('T')[0];\n }\n\n getSelectedFromDate(): void {\n this.validateDates(this.reportsForm.get('selectedreport').value);\n }\n\n validateDates(reportName){\n const selectedStartDate = this.tranformDate(this.reportsForm.get('startDate').value),\n selectedEndDate = this.tranformDate(this.reportsForm.get('endDate').value);\n const isDateRangeMoreThanWeek = (<any>new Date(selectedStartDate) - <any>new Date(selectedEndDate))/(1000 * 3600 * -24) > 7;\n const isDateRangeMoreThanMonth = (<any>new Date(selectedStartDate) - <any>new Date(selectedEndDate))/(1000 * 3600 * -24) > 30;\n if(new Date(selectedStartDate) > new Date(selectedEndDate) && selectedEndDate !== ''){\n this.reportsForm.get('startDate').setValue('');\n this.isDateRangeBetnWeek = false;\n this.isDateBetwnMonth = false;\n this.isStartDateLesthanEndDate = true;\n } else if(reportName && reportName ==='SURPLUS_AND_SHORTFALL' && isDateRangeMoreThanWeek ) {\n this.isDateRangeBetnWeek = true;\n this.isDateBetwnMonth = false;\n this.isStartDateLesthanEndDate = false;\n } else if(reportName && reportName ==='PAYMENT_FAILURE_EVENT' && isDateRangeMoreThanMonth ) {\n this.isDateRangeBetnWeek = false;\n this.isDateBetwnMonth = true;\n this.isStartDateLesthanEndDate = false;\n } else {\n this.isDateBetwnMonth = false;\n this.isDateRangeBetnWeek = false;\n this.isStartDateLesthanEndDate = false;\n }\n\n }\n\n fromValidation() {\n this.reportsForm = this.formBuilder.group({\n selectedreport: new FormControl('') ,\n startDate: new FormControl(''),\n endDate: new FormControl('') \n });\n}\n\ndownloadReport(){\n this.isDownLoadButtondisabled = true;\n const dataLossRptDefault = [{loss_resp:'',payment_asset_dcn:'',env_ref:'',env_item:'',resp_service_id:'',resp_service_name:'',date_banked:'',bgc_batch:'',payment_method:'',amount:''}],\n unProcessedRptDefault = [{resp_service_id:'',resp_service_name:'',exception_ref:'',ccd_ref:'',date_banked:'',bgc_batch:'',payment_asset_dcn:'',env_ref:'',env_item:'',payment_method:'',amount:''}],\n processedUnallocated =[{resp_service_id:'',resp_service_name:'',allocation_status:'',receiving_office:'',allocation_reason:'',ccd_exception_ref:'',ccd_case_ref:'',payment_asset_dcn:'',env_ref:'',env_item:'',date_banked:'',bgc_batch:'',payment_method:'',amount:'',updated_by:''}],\n shortFallsRptDefault = [{resp_service_id:'',resp_service_name:'',surplus_shortfall:'',balance:'',payment_amount:'',ccd_case_reference:'',ccd_exception_reference:'',processed_date:'', reason:'', explanation:'', user_name:''}],\n selectedReportName = this.reportsForm.get('selectedreport').value,\n selectedStartDate = this.tranformDate(this.reportsForm.get('startDate').value),\n selectedEndDate = this.tranformDate(this.reportsForm.get('endDate').value);\n\n if(selectedReportName === 'PROCESSED_UNALLOCATED' || selectedReportName === 'SURPLUS_AND_SHORTFALL' ){\n this.paymentViewService.downloadSelectedReport(selectedReportName,selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n const result = JSON.parse(response);\n let res= {data: this.applyDateFormat(result)};\n if(res['data'].length === 0 && selectedReportName === 'PROCESSED_UNALLOCATED' ){\n res.data= processedUnallocated;\n } else if(res['data'].length === 0 && selectedReportName === 'SURPLUS_AND_SHORTFALL' ) {\n res.data= shortFallsRptDefault;\n } \n if(result['data'].length > 0) {\n for( var i=0; i< res['data'].length; i++) {\n if(res['data'][i][\"payment_asset_dcn\"] !== undefined) {\n res['data'][i]['env_ref'] = res['data'][i][\"payment_asset_dcn\"].substr(0,13);\n res['data'][i]['env_item'] = res['data'][i][\"payment_asset_dcn\"].substr(13,21);\n }\n if(res['data'][i][\"amount\"] !== undefined) {\n res['data'][i]['amount'] = this.convertToFloatValue(res['data'][i]['amount']);\n }\n if(res['data'][i][\"balance\"] !== undefined) {\n res['data'][i]['balance'] = this.convertToFloatValue(res['data'][i][\"balance\"]);\n }\n let Op = res['data'][i][\"surplus_shortfall\"];\n if(Op !== undefined) {\n res['data'][i]['surplus_shortfall'] = Op ==\"Surplus\" ? \"Over payment\":\"Under payment\";\n }\n if(res['data'][i][\"payment_amount\"] !== undefined) {\n res['data'][i]['payment_amount'] = this.convertToFloatValue(res['data'][i]['payment_amount']);\n }\n }\n } \n this.isDownLoadButtondisabled = false;\n this.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate));\n },\n (error: any) => {\n this.isDownLoadButtondisabled = false;\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n })\n\n } else if(selectedReportName === 'PAYMENT_FAILURE_EVENT') {\n\n this.paymentViewService.downloadFailureReport(selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n const result = {data: JSON.parse(response)['payment_failure_report_list']};\n let res = {data: this.applyDateFormat(result)};\n if (result['data'].length > 0) {\n for ( var i=0; i< res['data'].length; i++) {\n if (res['data'][i][\"disputed_amount\"] !== undefined) {\n res['data'][i]['disputed_amount'] = this.convertToFloatValue(res['data'][i][\"disputed_amount\"]);\n }\n if (res['data'][i][\"representment_status\"] !== undefined) {\n res['data'][i]['representment_status'] = res['data'][i][\"representment_status\"].toLowerCase() === 'yes' ? 'Success' : 'Failure';\n }\n }\n }\n this.isDownLoadButtondisabled = false;\n this.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate ));\n\n },\n (error: any) => {\n this.isDownLoadButtondisabled = false;\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n })\n\n } else {\n this.bulkScaningPaymentService.downloadSelectedReport(selectedReportName,selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n const result = JSON.parse(response);\n let res = {data: this.applyDateFormat(result)};\n if(res['data'].length === 0 && selectedReportName === 'DATA_LOSS' ){\n res.data= dataLossRptDefault;\n } else if(res['data'].length === 0 && selectedReportName === 'UNPROCESSED'){\n res.data = unProcessedRptDefault;\n }\n if(result['data'].length > 0) {\n for( var i=0; i< res['data'].length; i++) {\n if(res['data'][i][\"amount\"] !== undefined) {\n res['data'][i]['amount'] = this.convertToFloatValue(res['data'][i]['amount']);\n }\n if(res['data'][i][\"payment_asset_dcn\"] !== undefined) {\n res['data'][i]['env_ref'] = res['data'][i][\"payment_asset_dcn\"].substr(0,13);\n res['data'][i]['env_item'] = res['data'][i][\"payment_asset_dcn\"].substr(13,21);\n }\n }\n }\n this.isDownLoadButtondisabled = false;\n this.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate ));\n },\n (error: any) => {\n this.isDownLoadButtondisabled = false;\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n })\n }\n }\n\n getFileName(selectedOption: string, startDate: string, endDate: string ) {\n const loc = 'en-US',\n stDt = formatDate(startDate, 'ddMMyy', loc),\n enDt = formatDate(endDate, 'ddMMyy', loc),\n now = new Date(),\n currentDate = formatDate(now, 'ddMMyy', loc),\n timestamp = `${currentDate}_${this.getTwodigit(now.getHours())}${this.getTwodigit(now.getMinutes())}${this.getTwodigit(now.getSeconds())}`,\n selectedOptionTxt = this.getCamelCaseString(selectedOption);\n \n return selectedOptionTxt+'_'+stDt+'_To_'+enDt+'_Run_'+ timestamp;\n } \n tranformDate(strDate: string) {\n let result = '';\n if (strDate) {\n let parts = strDate.split('-');\n result = `${parts[1]}/${parts[2]}/${parts[0]}`;\n }\n return result;\n }\n getTwodigit(input: number){\n return (\"0\" + input).slice(-2);\n }\n getCamelCaseString(selectedOption) {\n let result;\n switch(selectedOption) { \n case 'UNPROCESSED': { \n result = 'Unprocessed';\n break; \n } \n case 'DATA_LOSS': { \n result = 'Data_Loss';\n break; \n } \n case 'PROCESSED_UNALLOCATED': { \n result = 'Processed_Unallocated';\n break; \n } \n case 'SURPLUS_AND_SHORTFALL': { \n result = 'Over Payment_Under Payment';\n break; \n } \n case 'PAYMENT_FAILURE_EVENT': { \n result = 'Payment failure event';\n break; \n }\n default: { \n result = selectedOption;\n break; \n } \n } \n return result;\n }\n applyDateFormat(res) {\n return res['data'].map(value => {\n if (value['date_banked']) {\n value['date_banked'] = formatDate(value['date_banked'], this.fmt, this.loc);\n }\n if (value['event_date'] && value['event_date'].indexOf(',') === -1) {\n value['event_date'] = formatDate(value['event_date'], this.fmt, this.loc);\n } else if (value['event_date'] && value['event_date'].indexOf(',') !== -1) {\n value['event_date'] = this.multiDateFormater(value['event_date'])\n }\n\n if (value['representment_date'] && value['representment_date'].indexOf(',') === -1) {\n value['representment_date'] = formatDate(value['representment_date'], this.fmt, this.loc);\n } else if (value['representment_date'] && value['representment_date'].indexOf(',') !== -1) {\n value['representment_date'] = this.multiDateFormater(value['representment_date'])\n }\n\n if (value['refund_date'] && value['refund_date'].indexOf(',') === -1) {\n value['refund_date'] = formatDate(value['refund_date'], this.fmt, this.loc);\n } else if (value['refund_date'] && value['refund_date'].indexOf(',') !== -1) {\n value['refund_date'] = this.multiDateFormater(value['refund_date'])\n }\n return value;\n });\n }\n multiDateFormater(dateStr) {\n return dateStr.split(',').map((date) => formatDate(date, this.fmt, this.loc)).join(',');\n }\n \n convertToFloatValue(amt) {\n return amt ? Number.parseFloat(amt).toFixed(2): '0.00';\n }\n}\n","import {Component, ViewChild, Input, ChangeDetectorRef} from '@angular/core';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport { MatTableDataSource} from '@angular/material/table';\nimport {MatSort } from '@angular/material/sort';\nimport {Sort } from '@angular/material/sort';\nimport {MatPaginator } from '@angular/material/paginator';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { THIS_EXPR } from '@angular/compiler/src/output/output_ast';\nimport { ActivatedRoute,Router } from '@angular/router';\n@Component({\n selector: 'ccpay-table',\n templateUrl: './table.component.html',\n styleUrls: ['./table.component.css']\n})\nexport class TableComponent {\n @Input('DATASOURCE') DATASOURCE: any[];\n @Input('STATUS') STATUS: string;\n @Input('errorMessage') errorMessage: string;\n isApprovalFlow: boolean;\n // displayedColumns = ['ccdCaseNumber', 'refundReference', 'reason', 'createBy', 'updateDate', 'Action'];\n displayedColumns = ['ccd_case_number', 'refund_reference', 'user_full_name','date_created', 'date_updated', 'Action'];\n \n dataSource: MatTableDataSource<any>;\n userLst;\n actualcount: number;\n count: number;\n refundList: IRefundList[];\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n constructor(\n private paymentLibComponent: PaymentLibComponent,\n private cdRef: ChangeDetectorRef,\n private OrderslistService: OrderslistService,\n private router: Router,\n private activeRoute: ActivatedRoute\n ) {}\n ngOnInit() {\n this.errorMessage = this.errorMessage;\n if(this.STATUS.toLowerCase() === 'sent for approval') {\n this.isApprovalFlow = true;\n } else {\n this.isApprovalFlow = false;\n }\n this.refundList = this.DATASOURCE;\n this.dataSource = new MatTableDataSource(this.refundList);\n this.actualcount = this.dataSource.data.length;\n if( this.refundList !== undefined) {\n this.userLst = this.refundList.reduce((r,{user_full_name}) => (r[user_full_name]='', r) , {});\n this.userLst = Object.keys(this.userLst);\n }\n this.userLst.sort((a, b) => a.toString().localeCompare(b));\n }\n /**\n * Set the paginator and sort after the view init since this component will\n * be able to query its view for the initialized paginator and sort.\n */\n ngAfterViewInit() {\n \n this.dataSource.sort = this.sort;\n\n //const sortState: Sort = {active: 'date_updated', direction: 'desc'};\n // this.sort.active = sortState.active;\n // this.sort.direction = sortState.direction;\n // this.sort.sortChange.emit(sortState);\n this.dataSource.paginator = this.paginator;\n this.dataSource.sort = this.sort;\n this.cdRef.detectChanges();\n }\n applyFilter(filterValue: string) {\n filterValue = filterValue.trim(); // Remove whitespace\n filterValue = filterValue.toLowerCase(); // Datasource defaults to lowercase matches\n this.dataSource.filter = filterValue;\n }\n selectchange(args){\n this.dataSource.filter = args.target.value;\n this.actualcount = this.dataSource.data.length;\n this.dataSource.paginator = this.paginator;\n }\n goToRefundProcessComponent(refundReference: string, refundData: IRefundList ) {\n this.paymentLibComponent.refundlistsource = refundData;\n this.paymentLibComponent.refundReference = refundReference;\n this.paymentLibComponent.viewName = 'process-refund';\n }\n goToRefundViewComponent(refundReference: string, refundData: IRefundList ) {\n this.OrderslistService.setRefundView(refundData);\n this.paymentLibComponent.viewName='refundstatuslist';\n this.paymentLibComponent.CCD_CASE_NUMBER = refundData.ccd_case_number;\n this.paymentLibComponent.isRefundStatusView = true;\n this.paymentLibComponent.isCallFromRefundList = true;\n }\n goToCaseReview(ccdCaseNumber: string, refundData: IRefundList ) {\n this.router.navigate([`/cases/case-details/${ccdCaseNumber}`], {relativeTo: this.activeRoute});\n }\n}","export class IResubmitRefundRequest {\n refund_reason: string;\n amount: number;\n \n \n constructor(refund_reason : string, amount: number) {\n this.refund_reason= refund_reason;\n this.amount = amount;\n \n } \n }\n ","import { Component, OnInit, Input } from '@angular/core';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { FormBuilder, FormGroup, Validators, FormControl, RequiredValidator } from '@angular/forms';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { Router } from '@angular/router';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IRefundStatus } from '../../interfaces/IRefundStatus';\nimport { IResubmitRefundRequest } from '../../interfaces/IResubmitRefundRequest';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-refund-status',\n templateUrl: './refund-status.component.html',\n styleUrls: ['./refund-status.component.css']\n})\nexport class RefundStatusComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[] = [];\n @Input('API_ROOT') API_ROOT: string;\n @Input() isOldPcipalOff: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: boolean;\n @Input() isEliginbleToAccess: boolean;\n refundStatusForm: FormGroup;\n selectedRefundReason: string;\n rejectedRefundList: IRefundList[] = [];\n approvalStatus = 'Sent for approval';\n rejectStatus = 'Update required';\n // approvalStatus = 'sent for approval';\n // rejectStatus = 'sent back';\n errorMessage = null;\n viewName: string;\n refundReason: string;\n refundlist: IRefundList;\n bsPaymentDcnNumber: string;\n isCallFromRefundList: boolean;\n refundButtonState: string = '';\n isAmountEmpty: boolean = false;\n isReasonEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n refundHasError: boolean = false;\n refundReasons: any[] = [];\n refundStatusHistories: IRefundStatus[];\n refundReference: string;\n refundAmount: string;\n refundCode: string;\n isRefundBtnDisabled: boolean = true;\n oldRefundReason: string;\n refundreason: string;\n navigationpage: string;\n isLastUpdatedByCurrentUser: boolean = true;\n isProcessRefund: boolean = false;\n changedAmount: number;\n constructor(private formBuilder: FormBuilder,\n private refundService: RefundsService,\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private router: Router,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n\n // if (this.check4AllowedRoles2AccessRefund()) {\n this.resetRemissionForm([false, false, false, false], 'All');\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.isCallFromRefundList = this.paymentLibComponent.isCallFromRefundList;\n // if(this.paymentLibComponent.isFromRefundStatusPage) {\n // this.viewName = 'reviewandsubmitview';\n // }\n if (this.paymentLibComponent.isRefundStatusView) {\n this.viewName = 'refundview';\n this.OrderslistService.getRefundView().subscribe((data) => this.refundlist = data);\n this.OrderslistService.getCCDCaseNumberforRefund.subscribe((data) => this.ccdCaseNumber = data);\n } else {\n this.viewName = 'refundstatuslist';\n if(this.isEliginbleToAccess) {\n this.refundService.getRefundStatusList(this.ccdCaseNumber).subscribe(\n refundList => {\n this.rejectedRefundList = refundList['refund_list'];\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n } else {\n this.rejectedRefundList = [];\n }\n\n }\n\n\n this.refundStatusForm = this.formBuilder.group({\n amount: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[0-9]+(\\.[0-9]{1,2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl()\n });\n\n if(this.refundlist !== undefined) {\n this.getRefundsStatusHistoryList();\n\n if (this.LOGGEDINUSERROLES.some(i => i.includes('payments-refund-approver'))) {\n this.isProcessRefund = true;\n this.refundButtonState = this.refundlist.refund_status.name;\n return;\n }\n \n if (this.LOGGEDINUSERROLES.some(i => i.includes('payments-refund'))) {\n this.isProcessRefund = false;\n this.refundButtonState = this.refundlist.refund_status.name;\n }\n }\n //}\n }\n isFromPayBubble = (): boolean => { \n return this.API_ROOT === 'api/payment-history';\n }\n\n getRefundsStatusHistoryList() {\n if(this.refundlist !== undefined) {\n this.refundService.getRefundStatusHistory(this.refundlist.refund_reference).subscribe(\n statusHistoryList => {\n this.refundStatusHistories = statusHistoryList.status_history_dto_list;\n this.isLastUpdatedByCurrentUser = statusHistoryList.last_updated_by_current_user;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n }; \n }\n }\n\n goToRefundView(refundlist: IRefundList, navigationpage: string) {\n this.OrderslistService.setRefundView(refundlist);\n this.OrderslistService.setCCDCaseNumber(this.ccdCaseNumber);\n this.paymentLibComponent.viewName = 'refundstatuslist';\n this.paymentLibComponent.isRefundStatusView = true;\n this.refundlist = refundlist;\n this.OrderslistService.setnavigationPage(navigationpage);\n }\n\n loadCaseTransactionPage() {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n }\n\n loadRefundListPage() {\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n if (this.navigationpage === 'casetransactions') {\n this.loadCaseTransactionPage();\n } else {\n this.paymentLibComponent.viewName = 'refund-list';\n }\n }\n\n gotoReviewDetailsPage(event:any) {\n // event.preventDefault();\n this.errorMessage = false;\n this.paymentLibComponent.isRefundStatusView = true;\n this.ngOnInit();\n }\n\n gotoReviewAndReSubmitPage() {\n this.viewName = 'reviewandsubmitview';\n this.oldRefundReason = this.refundlist.reason;\n this.changedAmount = this.refundlist.amount;\n this.refundreason = this.refundStatusHistories.filter(data => data.status.toLowerCase() === 'update required')[0].notes;\n this.refundService.getRefundReasons().subscribe(\n refundReasons => {\n this.refundReasons = refundReasons;\n });\n }\n gotoRefundReasonPage() {\n this.isRefundBtnDisabled = false;\n this.paymentLibComponent.REFUNDLIST = \"true\";\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.errorMessage = false;\n this.viewName = 'issuerefund';\n }\n\n gotoAmountPage() {\n this.errorMessage = false;\n this.paymentLibComponent.REFUNDLIST = \"true\";\n this.isRefundBtnDisabled = false;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.viewName = 'processretroremissonpage';\n }\n\n goToReviewAndSubmitView() {\n const remissionctrls = this.refundStatusForm.controls\n if (this.refundStatusForm.dirty) {\n if (remissionctrls['amount'].value == '') {\n this.resetRemissionForm([true, false, false, false], 'amount');\n }\n else if (remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid) {\n this.resetRemissionForm([false, true, false, false], 'amount');\n }\n else if (remissionctrls['reason'].value == '') {\n this.resetRemissionForm([false, false, false, true], 'reason');\n } else {\n this.refundlist.reason = remissionctrls['reason'].value;\n this.viewName = 'reviewandsubmitview';\n }\n }\n\n }\n\n resetRemissionForm(val, field) {\n if (field === 'All') {\n this.isAmountEmpty = val[0];\n this.amountHasError = val[1];\n this.isRemissionLessThanFeeError = val[2];\n this.isReasonEmpty = val[3];\n } else if (field === 'amount' || field === 'All') {\n this.isAmountEmpty = val[0];\n this.amountHasError = val[1];\n this.isRemissionLessThanFeeError = val[2];\n } else if (field === 'reason' || field === 'All') {\n this.isReasonEmpty = val[3];\n }\n }\n\n selectRadioButton(key, value) {\n this.refundHasError = false;\n this.selectedRefundReason = key;\n if (key === 'Other') {\n this.refundHasError = false;\n this.refundReason = key;\n }\n }\n\n getRefundListReason(refundListReason: any) {\n if (this.paymentLibComponent.isFromRefundStatusPage && !this.paymentLibComponent.iscancelClicked) {\n this.refundlist.reason = refundListReason.reason;\n this.refundCode = refundListReason.code;\n } else {\n this.isRefundBtnDisabled = true;\n }\n this.viewName = 'reviewandsubmitview';\n this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;\n }\n\n getRefundAmount(amount: number) {\n if (this.paymentLibComponent.isFromRefundStatusPage && !this.paymentLibComponent.iscancelClicked) {\n if (amount > 0) {\n this.changedAmount = amount;\n // this.refundlist.amount = amount;\n }\n } else {\n this.isRefundBtnDisabled = true;\n }\n this.viewName = 'reviewandsubmitview';\n this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;\n }\n\n gotoReviewRefundConfirmationPage() {\n if (this.oldRefundReason === this.refundlist.reason) {\n this.refundCode = '';\n }\n const resubmitRequest = new IResubmitRefundRequest(this.refundCode, this.changedAmount);\n this.refundService.patchResubmitRefund(resubmitRequest, this.refundlist.refund_reference).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n this.viewName = 'reviewrefundconfirmationpage';\n }\n },\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n }\n );\n\n }\n\n goToRefundProcessComponent(refundReference: string, refundList: IRefundList) {\n this.paymentLibComponent.refundlistsource = refundList;\n this.paymentLibComponent.refundReference = refundReference;\n this.paymentLibComponent.viewName = 'process-refund';\n }\n\n}\n","import { THIS_EXPR } from '@angular/compiler/src/output/output_ast';\nimport { Component, Input, OnInit, Output, EventEmitter } from '@angular/core';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IPaymentView } from '../../interfaces/IPaymentView';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { Router } from '@angular/router';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-service-request',\n templateUrl: './service-request.component.html',\n styleUrls: ['./service-request.component.css']\n})\nexport class ServiceRequestComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input('viewStatus') viewStatus: string;\n @Input('orderDetail') orderDetail: any[];\n @Input('orderRef') orderRef: string;\n @Input('orderStatus') orderStatus: string;\n @Input('orderParty') orderParty: string;\n @Input('orderCreated') orderCreated: Date;\n @Input('orderCCDEvent') orderCCDEvent: string;\n @Input('orderFeesTotal') orderFeesTotal: number;\n @Input('orderTotalPayments') orderTotalPayments: number;\n @Input('orderRemissionTotal') orderRemissionTotal: number;\n @Input('takePayment') takePayment: boolean;\n @Input('ccdCaseNumber') ccdCaseNumber: boolean;\n @Input(\"isServiceRequest\") isServiceRequest: string;\n @Output() goToServiceRquestComponent: EventEmitter<any> = new EventEmitter();\n\n\n servicerequest: string;\n // ccdCaseNumber: string;\n excReference: string;\n paymentGroups: any[] = [];\n payments: IPayment[] = [];\n nonPayments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n fees: IFee[] = [];\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalNonOffPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n paymentRef: string;\n isTurnOff: boolean;\n isNewPcipalOff: boolean;\n isRefundRemission: boolean = true;\n isOldPcipalOff: boolean;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = true;\n isExceptionRecord: boolean = false;\n isUnprocessedRecordSelected: boolean = false;\n exceptionRecordReference: string;\n isAnyFeeGroupAvilable: boolean = true;\n isHistoricGroupAvailable: boolean = false;\n isBulkScanEnable;\n isRemissionsMatch: boolean;\n isRemoveBtnDisabled: boolean = false;\n feeId: IFee;\n clAmountDue: number = 0;\n unprocessedRecordCount: number;\n isFeeRecordsExist: boolean = false;\n isGrpOutstandingAmtPositive: boolean = false;\n totalRefundAmount: Number;\n caseType: String;\n // lsCcdNumber: any = ls.get<any>('ccdNumber');\n payment: IPayment;\n paymentGroup: IPaymentGroup;\n paymentView: IPaymentView;\n\n\n isAddRemissionEnable: boolean = false;\n orderRemissionDetails: any[] = [];\n orderLevelFees: IOrderReferenceFee[] = [];\n cpoDetails: any = null;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n\n isCPODown: boolean;\n test: boolean;\n isPBA: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n isAddRemissionBtnEnabled: boolean = false;\n isRefundRemissionBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n isFromServiceRequestPage: boolean;\n navigationpage: string;\n remissionFeeAmt: number;\n\n constructor(\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private OrderslistService: OrderslistService,\n private router: Router) { }\n\n ngOnInit() {\n if (this.viewStatus === undefined) {\n this.viewStatus = this.paymentLibComponent.viewName;\n }\n if(this.paymentLibComponent.isFromServiceRequestPage && this.paymentLibComponent.isFromPaymentDetailPage) {\n if(this.paymentLibComponent.isFromPaymentDetailPage && this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.getorderRefs().subscribe((data) => this.orderRef = data);\n this.OrderslistService.getorderCCDEvents().subscribe((data) => this.orderCCDEvent = data);\n this.OrderslistService.getorderCreateds().subscribe((data) => this.orderCreated = data);\n this.OrderslistService.getorderDetail().subscribe((data) => this.orderDetail = data);\n this.OrderslistService.getorderPartys().subscribe((data) => this.orderParty = data);\n this.OrderslistService.getorderRemissionTotals().subscribe((data) => this.orderRemissionTotal = data);\n this.OrderslistService.getorderFeesTotals().subscribe((data) => this.orderFeesTotal = data);\n this.OrderslistService.getoorderTotalPaymentss().subscribe((data) => this.orderTotalPayments = data);\n }\n }\n // if (this.takePayment) {\n // this.paymentLibComponent.TAKEPAYMENT = this.takePayment;\n // }\n }\n goToServiceRequestPage() {\n this.goToServiceRquestComponent.emit();\n }\n\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n this.OrderslistService.setnavigationPage('servicerequestpage');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isTakePayment = this.paymentLibComponent.TAKEPAYMENT;\n if (this.takePayment) {\n this.paymentLibComponent.isTakePayment = this.takePayment;\n }\n this.paymentLibComponent.SERVICEREQUEST = \"true\";\n this.paymentLibComponent.isFromServiceRequestPage = false;\n if(this.isServiceRequest !== 'false') {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n }\n this.paymentLibComponent.isFromRefundStatusPage = false;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.resetOrderData();\n let partUrl = this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n if(this.isServiceRequest === 'false') {\n partUrl += this.paymentLibComponent.TAKEPAYMENT ? '&takePayment=true' : '&takePayment=false';\n }\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += this.isServiceRequest !== 'false' ? '&servicerequest=true' : '&servicerequest=false';\n partUrl += `&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n const url = `/payment-history/${this.paymentLibComponent.CCD_CASE_NUMBER}?view=case-transactions&selectedOption=${this.paymentLibComponent.SELECTED_OPTION}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund()) {\n if (this.orderDetail[0]['remissions'].length > 0) {\n for (const remission of this.orderDetail[0]['remissions']) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n }\n return true;\n } else {\n return false;\n }\n }\n\n chkForPBAPayment(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n this.paymentLibComponent.paymentReference = payment.reference;\n this.isPBA = true;\n }\n });\n }\n });\n if (this.isPBA) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n addRemission(fee: IFee) {\n if(this.chkForAddRemission(fee.code)) {\n this.feeId = fee;\n this.viewStatus = 'addremission';\n this.payment = this.orderDetail[0].payments[0];\n this.paymentViewService.getApportionPaymentDetails(this.orderDetail[0].payments[0].reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n this.viewStatus = 'addrefundforremission';\n \n this.payment = payment;\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.payment.reference));\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n cancelRemoval() {\n this.viewStatus = 'main';\n }\n\n removeFee(fee: any) {\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n window.location.reload();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n this.isIssueRefunfBtnEnable = true;\n }\n if (this.isIssueRefunfBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n if (payment !== null && payment !== undefined) {\n let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\n }\n }\n\n issueRefund(payment: IPayment) {\n if (payment !== null && payment !== undefined) {\n if(this.chkIssueRefundBtnEnable(payment)) {\n this.viewStatus = 'issuerefund';\n this.payment = payment;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.isRefundRemission = true;\n }\n }\n }\n\n goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent({ paymentGroupReference, paymentReference, paymentMethod });\n }\n\n goToPaymentViewComponent(paymentGroup: any) {\n this.paymentLibComponent.paymentMethod = paymentGroup.paymentMethod;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentGroup.paymentReference;\n this.OrderslistService.setOrderRef(this.orderRef);\n this.OrderslistService.setorderCCDEvent(this.orderCCDEvent);\n this.OrderslistService.setorderCreated(this.orderCreated);\n this.OrderslistService.setorderDetail(this.orderDetail);\n this.OrderslistService.setorderParty(this.orderParty);\n this.OrderslistService.setorderTotalPayments(this.orderTotalPayments);\n this.OrderslistService.setorderRemissionTotal(this.orderRemissionTotal);\n this.OrderslistService.setorderFeesTotal(this.orderFeesTotal);\n this.viewStatus = 'payment-view';\n }\n\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n}\n","export class IserviceRequestCardPayment {\n amount: string\n currency: string\n language: string\n \n constructor(amount : string) {\n this.amount = amount;\n this.currency = 'GBP';\n this.language = 'string';\n } \n}\n ","export class IserviceRequestPbaPayment {\n account_number: string;\n amount: string\n currency: string\n customer_reference: string\n organisation_name: string\n \n constructor(account_number : string, amount : string, customer_reference: string, orgName: string) {\n this.account_number = account_number;\n this.amount = amount;\n this.currency = 'GBP';\n this.customer_reference = customer_reference;\n this.organisation_name = orgName;\n } \n}\n ","import { Component, OnInit, Input} from '@angular/core';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IserviceRequestCardPayment } from '../../interfaces/IserviceRequestCardPayment';\nimport { IserviceRequestPbaPayment } from '../../interfaces/IserviceRequestPbaPayment';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-pba-payment',\n templateUrl: './pba-payment.component.html',\n styleUrls: ['./pba-payment.component.scss']\n})\nexport class PbaPaymentComponent implements OnInit {\n @Input() pbaPayOrderRef: any;\n viewStatus: string;\n pbaAccountList: string[];\n isPBAAccountHold: boolean = false;\n errorMsg: any;\n isCardPaymentSuccess: boolean = true;\n isInSufficiantFund: boolean = false;\n isPBAAccountNotExist: boolean = false;\n isPBAServerError: boolean = false;\n isGetPBAAccountSucceed: boolean = false;\n selectedPbaAccount: string = '';\n pbaAccountRef: string = '';\n isPbaAccountSelected: boolean = false;\n isCardPaymentSelected: boolean = false;\n isPBADropdownSelected: boolean = false;\n isContinueButtondisabled: boolean = true;\n isPBAAccountPaymentSuccess: boolean = false;\n pbaAccountrPaymentResult: any;\n orgName: string = '';\n\n constructor(private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService) {}\n\n ngOnInit() {\n this.pbaPayOrderRef = this.paymentLibComponent.pbaPayOrderRef;\n this.viewStatus = 'pba-payment';\n this.errorMsg = null;\n this.paymentViewService.getPBAaccountDetails()\n .subscribe(\n result => {\n this.isGetPBAAccountSucceed = true;\n this.orgName = result.organisationEntityResponse.name;\n this.pbaAccountList = result.organisationEntityResponse.paymentAccount;\n },\n error => {\n this.errorMsg = error;\n }\n );\n\n }\n selectpbaaccount(args) {\n if(args.currentTarget.id === 'pbaAccountNumber') {\n this.isPBADropdownSelected = true;\n this.selectedPbaAccount = args.target.value; \n }\n if(args.currentTarget.id === 'pbaAccountRef') {\n this.pbaAccountRef = args.target.value; \n }\n if(this.selectedPbaAccount !== '' && this.pbaAccountRef !== \"\") {\n this.isContinueButtondisabled = false;\n } else {\n this.isContinueButtondisabled = true;\n }\n }\n\n saveAndContinue() {\n\n if(this.isPbaAccountSelected) {\n this.isInSufficiantFund = false;\n this.isPBAAccountNotExist = false;\n this.isPBAServerError = false;\n this.isPBAAccountPaymentSuccess = false;\n if ( this.pbaAccountList.indexOf(this.selectedPbaAccount) !== -1 ) {\n const requestBody = new IserviceRequestPbaPayment(\n this.selectedPbaAccount, this.pbaPayOrderRef.orderTotalFees, this.pbaAccountRef, this.orgName);\n this.paymentViewService.postPBAaccountPayment(this.pbaPayOrderRef.orderRefId, requestBody)\n .subscribe(\n r => {\n try {\n this.pbaAccountrPaymentResult = JSON.parse(r);\n } catch(e) {\n this.pbaAccountrPaymentResult = r;\n }\n this.isPBAAccountPaymentSuccess = true;\n },\n e => {\n if(e.status == '402') {\n this.isInSufficiantFund = true; \n } else if(e.status == '410') {\n this.isPBAAccountNotExist = true;\n } else if(e.status == '412') {\n this.isPBAAccountHold = true;\n } else {\n this.isPBAServerError = true;\n }\n }\n );\n } else {\n this.isPBAServerError = true;\n }\n } else if (this.isCardPaymentSelected) {\n this.cardPayment();\n }\n\n }\n cardPayment() {\n this.isCardPaymentSuccess = true;\n const requestBody = new IserviceRequestCardPayment (\n this.pbaPayOrderRef.orderTotalFees);\n this.paymentViewService.postWays2PayCardPayment(this.pbaPayOrderRef.orderRefId, requestBody)\n .subscribe(\n result => {\n const paymentUrl = JSON.parse(result).next_url;\n window.location.href = paymentUrl;\n },\n error => {\n this.isCardPaymentSuccess = false;\n }\n );\n\n }\n selectPaymentMethod(type: string) {\n if(type === 'PBA') {\n this.isPbaAccountSelected = true;\n this.isCardPaymentSelected = false;\n this.isPBADropdownSelected = false\n this.isContinueButtondisabled = true;\n this.selectedPbaAccount = null;\n } else if (type === 'CARD') {\n this.isPbaAccountSelected = false;\n this.isCardPaymentSelected = true;\n this.isPBADropdownSelected = false\n this.isContinueButtondisabled = false;\n }\n }\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = false;\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n }\n}\n","import { NgModule } from '@angular/core';\nimport { HttpClientModule } from '@angular/common/http';\nimport { CommonModule } from '@angular/common';\n\nimport { PaymentListComponent } from './components/payment-list/payment-list.component';\nimport { PaymentViewComponent } from './components/payment-view/payment-view.component';\nimport { ProcessRefundComponent } from './components/process-refund/process-refund.component';\nimport { RefundListComponent } from './components/refund-list/refund-list.component';\n\nimport { CardDetailsComponent } from './components/card-details/card-details.component';\nimport { PageNotFoundComponent } from './components/page-not-found.component';\nimport { PaymentLibComponent } from './payment-lib.component';\nimport { StatusHistoryComponent } from './components/status-history/status-history.component';\nimport { PbaDetailsComponent } from './components/pba-details/pba-details.component';\nimport { LoggerService } from './services/shared/logger/logger.service';\nimport { ConsoleLoggerService } from './services/shared/logger/console-logger.service';\nimport { WebComponentHttpClient } from './services/shared/httpclient/webcomponent.http.client';\nimport { CaseTransactionsComponent } from './components/case-transactions/case-transactions.component';\nimport { FeeSummaryComponent } from './components/fee-summary/fee-summary.component';\nimport { ErrorBannerComponent } from './components/error-banner/error-banner.component';\nimport { MarkUnidentifiedPaymentComponent } from './components/mark-unidentified-payment/mark-unidentified-payment.component';\nimport { MarkUnsolicitedPaymentComponent } from './components/mark-unsolicited-payment/mark-unsolicited-payment.component';\nimport { UnprocessedPaymentsComponent } from './components/unprocessed-payments/unprocessed-payments.component';\nimport { ProcessedPaymentsComponent } from './components/processed-payments/processed-payments.component';\nimport { AllocatePaymentsComponent } from './components/allocate-payments/allocate-payments.component';\nimport { AddRemissionComponent } from './components/add-remission/add-remission.component';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { CcdHyphensPipe } from './pipes/ccd-hyphens.pipe';\nimport { CapitalizePipe } from './pipes/capitalize.pipe';\nimport { keyValuePipe } from './pipes/key-value.pipe';\nimport { SanitizeHtmlPipe } from './pipes/sanitize-html.pipe';\nimport { ReportsComponent } from './components/reports/reports.component';\nimport { XlFileService } from './services/xl-file/xl-file.service';\nimport { TableComponent } from './components/table/table.component';\nimport { MatTableModule } from '@angular/material/table';\nimport { MatPaginatorModule } from '@angular/material/paginator';\nimport { MatSortModule } from '@angular/material/sort';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\n// import { BrowserAnimationsModule } from '@angular/platform-browser/animations';\n// import { NoopAnimationsModule } from '@angular/platform-browser/animations';\nimport { RefundStatusComponent } from './components/refund-status/refund-status.component';\nimport { ServiceRequestComponent } from './components/service-request/service-request.component';\nimport { PbaPaymentComponent } from './components/pba-payment/pba-payment.component';\n\n@NgModule({\n imports: [\n CommonModule,\n HttpClientModule,\n FormsModule,\n ReactiveFormsModule,\n MatTableModule,\n MatPaginatorModule,\n MatSortModule,\n MatFormFieldModule,\n MatInputModule,\n // BrowserAnimationsModule,\n // NoopAnimationsModule\n ],\n declarations: [\n PaymentLibComponent,\n PaymentListComponent,\n PaymentViewComponent,\n PbaPaymentComponent,\n ProcessRefundComponent,\n RefundListComponent,\n CardDetailsComponent,\n PageNotFoundComponent,\n StatusHistoryComponent,\n MarkUnidentifiedPaymentComponent,\n MarkUnsolicitedPaymentComponent,\n UnprocessedPaymentsComponent,\n ProcessedPaymentsComponent,\n AllocatePaymentsComponent,\n PbaDetailsComponent,\n CaseTransactionsComponent,\n FeeSummaryComponent,\n AddRemissionComponent,\n CcdHyphensPipe,\n CapitalizePipe,\n keyValuePipe,\n SanitizeHtmlPipe,\n ReportsComponent,\n ErrorBannerComponent,\n TableComponent,\n RefundStatusComponent,\n ServiceRequestComponent\n ],\n exports: [PaymentLibComponent],\n providers: [\n { provide: LoggerService, useClass: ConsoleLoggerService },\n XlFileService,\n WebComponentHttpClient\n ]\n})\n\nexport class PaymentLibModule { }\n"],"names":["PaymentLibService","prototype","setApiRootUrl","apiRoot","this","API_ROOT","getApiRootUrl","setBulkScanApiRootUrl","bulkscanapiRoot","BULKSCAN_API_ROOT","getBulkScanApiRootUrl","setRefundndsApiRootUrl","refundsapiRoot","REFUNDS_API_ROOT","getRefundsApiRootUrl","setCardPaymentReturnUrl","cardPaymentReturnUrl","CARDPAYMENTRETURNURL","getCardPaymentReturnUrl","Injectable","args","providedIn","OrderslistService","setOrdersList","orderLevelFees","ordersList","next","Object","assign","getOrdersList","setRefundView","refundList","refundView","getRefundView","setCaseType","caseType","getCaseType","setCCDCaseNumber","ccdCaseNumber","getCCDCaseNumber","setFeeExists","feeExists","getFeeExists","setisFromServiceRequestPage","isFromServiceRequestPage","getisFromServiceRequestPages","setOrderRefId","OrderRefId","getSelectedOrderRefId","setnavigationPage","navigationPage","getnavigationPageValue","setpaymentPageView","paymentpageList","paymentPageView","getpaymentPageView","setUserRolesList","rolesList","getUserRolesList","setorderDetail","orderDetail","getorderDetail","setOrderRef","orderRef","getorderRefs","setorderCCDEvent","orderCCDEvent","getorderCCDEvents","setorderCreated","orderCreated","getorderCreateds","setorderParty","orderParty","getorderPartys","setorderRemissionTotal","orderRemissionTotal","getorderRemissionTotals","setorderFeesTotal","orderFeesTotal","getorderFeesTotals","setorderTotalPayments","orderTotalPayments","getoorderTotalPaymentss","BehaviorSubject","getcaseType","asObservable","getFeeExist","getCCDCaseNumberforRefund","getisFromServiceRequestPage","getOrderRefId","getnavigationPage","getorderRef","getorderCCDEvent","getorderCreated","getorderParty","getorderRemissionTotal","getorderFeesTotal","getorderTotalPayments","PaymentLibComponent","ngAfterContentChecked","cd","detectChanges","ngOnInit","paymentLibService","LOGGEDINUSERROLES","length","PAYMENT_GROUP_REF","paymentGroupReference","DCN_NUMBER","bspaymentdcn","REFUNDLIST","VIEW","viewName","isTakePayment","TAKEPAYMENT","Component","selector","template","ChangeDetectorRef","Input","unProcessedPaymentServiceId","unProcessedPayment","orderPendingPayments","ErrorHandlerService","handleError","err","errorMessage","error","Error","message","status","undefined","JSON","parse","statusCode","messsage","stringify","_throw","getServerErrorMessage","isErrorExist","title","body","showError","LoggerService","invokeConsoleMethod","type","PaymentListService","getPaymentByCcdCaseNumber","paymentMethod","logger","info","http","get","withCredentials","pipe","catchError","errorHandlerService","HttpClient","PaymentListComponent","_this","paymentListService","paymentLibComponent","CCD_CASE_NUMBER","PAYMENT_METHOD","subscribe","payments","loadPaymentViewComponent","paymentReference","__values","o","s","Symbol","iterator","m","i","call","value","done","TypeError","WebComponentHttpClient","post","url","options","opts","addHeaders","put","delete","patch","csrfToken","meta","getTag","headers","forEach","element","document","cookie","split","find","row","startsWith","content","HttpHeaders","responseType","Meta","PaymentViewService","getPaymentDetails","getPaymentGroupDetails","getApportionPaymentDetails","getPBAaccountDetails","postWays2PayCardPayment","serviceRef","rurl","replace","https","postPBAaccountPayment","randomKey","Math","random","toString","join","postBSPayments","postBSUnidentifiedPayments","postBSUnsolicitedPayments","postBSAllocationPayments","postPaymentGroupWithRemissions","feeId","deleteFeeFromPaymentGroup","postPaymentToPayHub","paymentGroupRef","postPaymentAntennaToPayHub","downloadSelectedReport","reportName","startDate","endDate","downloadFailureReport","getBSfeature","getSiteID","getPartyDetails","caseNumber","postRefundsReason","postPaymentGroupWithRetroRemissions","postRefundRetroRemission","getPaymentFailure","PaymentViewComponent","selectedOption","SELECTED_OPTION","dcnNumber","isTurnOff","ISTURNOFF","serviceReference","viewStatus","paymentViewService","paymentGroup","fees","fee","isRemissionsMatch","remissions","rem","fee_code","code","push","filter","paymentGroupObj","includes","paymentAllocation","payment_allocation","isStatusAllocated","allocation_status","res","payment_failure_list","reverse","allPaymentsFailure","payment_failure_initiated","payment_failure_closed","e","errorMsg","defineProperty","method","channel","goToPaymentList","goToServiceRequestPage","SERVICEREQUEST","window","location","reload","goToCaseTransationPage","event","preventDefault","data","ISBSENABLE","resetOrderData","addRemission","chkForAddRemission","reference","payment","isFromPaymentDetailPage","isRefundRemission","checkForFees","addRefundForRemission","remission","chkIsRefundRemissionBtnEnable","remissionFeeAmt","net_amount","toLocaleLowerCase","allowFurtherAccessAfter4Days","isRefundRemissionBtnEnable","issueRefund","paymentgrp","chkIssueRefundBtnEnable","getRemissionByFeeCode","feeCode","remissions_1","tslib_1.__values","remissions_1_1","check4AllowedRoles2AccessRefund","isIssueRefunfBtnEnable","chkForPBAPayment","_b","_c","goToPaymentFailuePage","selectedPaymentsStatus","goBackToPaymentView","isAddFeeBtnEnabled","allowedRolesToAccessRefund","some","role","indexOf","tmp4DayAgo","Date","setDate","getDate","date_created","RefundsService","getRefundReasons","getRefundRejectReasons","getRefundActions","refundReference","patchRefundActions","reviewerAction","getRefundList","refundstatus","selfexclusive","getRefundStatusHistory","getRefundStatusList","getUserDetails","postIssueRefund","patchResubmitRefund","refund_reference","ProcessRefundComponent","refundActionList","getErrorMessage","processRefundForm","formBuilder","group","refundActionField","FormControl","Validators","compose","required","refundRejectReasonField","sendMeBackField","minLength","maxLength","pattern","enterReasonField","refundlistsource","ccd_case_number","isFromRefundListPage","checkRefundActions","refundActionsHasError","isReasonFieldEmpty","isReasonEmpty","isReasonInvalid","refundRejectReasonHasError","isConfirmButtondisabled","isSendMeBackClicked","isRejectClicked","isOtherClicked","refundRejectReasonList","processRefundSubmit","processRefundRequest","resetForm","controls","processFormError","errors","dirty","valid","reason","response","isSuccesspageEnable","successMsg","invalid","minlength","actualLength","maxlength","bodyTxt","loadRefundListPage","navigationpage","isRefundStatusView","loadRefundsHomePage","redirecttoRefundListPage","vals","field","isReasonFieldInvalid","reasonFieldMinHasError","reasonFieldMaxHasError","goToCaseReview","router","navigate","relativeTo","activeRoute","FormBuilder","Router","ActivatedRoute","sendmeback","RefundListComponent","userLst","isAuthorized","isApproveTableVisible","tableApprovalHeader","tableRejectedHeader","refundService","approvalStatus","submittedRefundList","rejectStatus","rejectedRefundList","isRejectTableVisible","CardDetailsService","getCardDetails","CardDetailsComponent","cardDetailsService","cardDetails","pageTitle","PageNotFoundComponent","StatusHistoryService","getPaymentStatusesByReference","StatusHistoryComponent","statusHistoryService","statuses","PbaDetailsComponent","noop","ConsoleLoggerService","console","log","apply","CaseTransactionsService","getPaymentGroups","BulkScaningPaymentService","getBSPaymentsByCCD","getBSPaymentsByDCN","dcn","postBSAllocatePayment","paymentRef","postBSPaymentStrategic","postBSWoPGStrategic","patchBSChangeStatus","calculateOutStandingAmount","feesTotal","paymentsTotal","remissionsTotal","calculated_amount","toUpperCase","amount","hwf_amount","removeUnwantedString","input","replaceText","CaseTransactionsComponent","paymentView","payment_group_reference","goToPayementView","isGrpOutstandingAmtPositive","CASETYPE","EXC_REFERENCE","excReference","takePayment","serviceRequest","serviceRequestValue","isBulkScanEnable","isNewPcipalOff","ISNEWPCIPALOFF","isOldPcipalOff","ISOLDPCIPALOFF","isStrategicFixEnable","ISSFENABLE","caseTransactionsService","paymentGroups","isAnyFeeGroupAvilable","calculateAmounts","calculateOrderFeesAmounts","totalRefundAmount","calculateRefundAmount","cpoDetails","setDefaults","isCPODown","goToOrderViewDetailSection","checkForExceptionRecord","totalPayments","totalRemissions","totalNonOffPayments","totalFees","getAllocationStatus","bulkScaningPaymentService","recordData","exception_record_reference","ccd_reference","isExceptionRecord","case_reference","resetOrderVariables","service_request_status","orderStatus","orderAddBtnEnable","orderRefId","orderTotalFees","orderReferenceObj","x","redirectToOrderFeeSearchPage","orderef","nonOffLinePayment","a","b","amount_due","clAmountDue","allocationLen","nonPayments","allPayments","remisison","totalRefundAmount_1","isFeeAmountZero_1","grpOutstandingAmount","isFeeRecordsExist","isNewPaymentGroup_1","index","isHistoricGroupAvailable","getGroupOutstandingAmount","redirectToFeeSearchPage","navigateByUrl","redirectToremissionPage","redirectToReportsPage","loadFeeSummaryPage","goToPaymentViewComponent","selectedUnprocessedFeeEvent","unprocessedRecordId","isUnprocessedRecordSelected","getUnprocessedFeeCount","unProcessedRecordCount","unprocessedRecordCount","calculateAmountDue","confirmRemoveFee","isRemoveBtnDisabled","cancelRemoval","removeFee","success","isCheckAmountdueExist","amountDue","isPBA","loadPBAAccountPage","pbaPayOrderRef","isAddRemissionEnable","orderRemissionDetails","ispaymentGroupApisuccess","isAddRemissionBtnEnabled","isEligible4PBAPayment","currentDate","check4AllowedRoles2AccessPBApayment","PaymentToPayhubRequest","currency","description","provider","toFixed","case_type","PayhubAntennaRequest","BS_ENABLE_FLAG","FeeSummaryComponent","bsPaymentDcnNumber","platForm","features","result","feature","uid","enable","getUnassignedPaymentlist","getPaymentGroup","unassignedPayments","service","responsible_service_id","upPaymentErrorMessage","currentFee","isPaymentExist","isRemissionsExist","totalAfterRemission","isFeeAmountZero","outStandingAmount","loadCaseTransactionPage","partUrl","cancelRemission","page","isConfirmationBtnDisabled","requestBody","antennaReqBody","go","payhubHtml","isBackButtonEnable","href","goToAllocatePage","Location","ErrorBannerComponent","UnidentifiedPaymentsRequest","payment_reference","unidentified_reason","payment_allocation_status","name","AllocatePaymentRequest","unAllocatedPayment","exceptionRecord","allocatedRequest","banked_date","date_banked","exception_record","document_control_number","dcn_reference","external_provider","giro_slip_no","bgc_reference","payer_name","payment_channel","payment_status","payment_method","payment_allocation_dto","MarkUnidentifiedPaymentComponent","getUnassignedPayment","markPaymentUnidentifiedForm","investicationDetail","unassignedRecord","siteID","beCcdNumber","beExceptionNumber","exceptionReference","ccdReference","trimUnderscore","saveAndContinue","investicationField","formerror","investigationComment","val","isInvesticationDetailEmpty","investicationDetailHasError","investicationDetailMinHasError","investicationDetailMaxHasError","confirmPayments","postStrategicBody","res1","res2","response2","reqBody","res3","gotoCasetransationPage","user_id","cancelMarkUnidentifiedPayments","UnsolicitedPaymentsRequest","responsible_office","responsible_person","email_id","receiving_office","receiving_email_address","sending_email_address","MarkUnsolicitedPaymentComponent","siteids","isContinueButtondisabled","siteIDList","scrollTo","markPaymentUnsolicitedForm","responsibleOffice","responsiblePerson","emailId","selectedSiteId","reasonField","officeIdField","reasonHasError","reasonMinHasError","reasonMaxHasError","isResponsibleOfficeEmpty","responsibleOfficeHasError","cancelMarkUnsolicitedPayments","checkingFormValue","setValue","formFields","valueExists","hasOwnProperty","selectchange","target","selectedSiteName","selectedIndex","text","UnprocessedPaymentsComponent","isNewpcipaloff","isOldpcipaloff","isStFixEnable","FEE_RECORDS_EXISTS","setValuesForUnassignedRecord","emit","unassignedRecordList","unassignedRecordListLength","serviceId","isExceptionCase","unprocessedPaymentSelectEvent","formatUnassignedRecordId","ID","recordId","loadUnsolicitedPage","selectedRecordReference","validateButtons","resetButtons","isAllocateToExistingFeebtnEnabled","isMarkAsUnidentifiedbtnEnabled","isAllocatedToNewFeebtnEnabled","PAYMENTREF","IS_OS_AMT_AVAILABLE","unprocessedPaymentUnSelectEvent","showDetailRow","obj","unassignedRecordSelectedList","Output","EventEmitter","isRecordExist","ProcessedPaymentsComponent","redirectToPaymentViewPage","IAllocationPaymentsRequest","explanation","userName","user_name","AllocatePaymentsComponent","overUnderPaymentForm","moreDetails","fstCon","scndCn","selectedPaymentGroup","gotoSummaryPage","cancelAllocatePayment","confirmAllocatePayement","enCookieUserName","cookieUserName","decodeURIComponent","fullName","paymentDetailsField","paymentFormError","userNameField","isEmptyCondtion","paymentReason","paymentExplanation","isOtherOptionSelected","isRemainingAmountGtZero","isRemainingAmountLtZero","otherPaymentExplanation","finalServiceCall","paymentReasonHasError","paymentExplanationHasError","isPaymentDetailsEmpty","isPaymentDetailsInvalid","paymentDetailsMinHasError","paymentDetailsMaxHasError","isUserNameEmpty","isUserNameInvalid","GroupOutstandingAmount","remainingToBeAssigned","isMoreDetailsBoxHide","reset","paymentSectionLabel","feedbackUrlLabel","remainingAmount","afterFeeAllocateOutstanding","amountForAllocation","selectRadioButton","key","OrderListSelectEvent","reasonList","overPayment","hwfReward","wrongFee","notIssueCase","otherDeduction","shortFall","helpWithFee","other","explanationList","referRefund","noRefund","noCase","holdCase","heldCase","refund","duplicate","humanerror","caseWithdrawn","AddRemissionRequest","hwf_reference","AddRetroRemissionRequest","PostRefundRetroRemission","refund_reason","PostIssueRefundRetroRemission","remissionReference","AddRemissionComponent","default","pattern1","pattern2","viewCompStatus","volume","remessionPayment","isPaymentSuccess","option","remissionForm","remissionCode","refundReason","refundDDReason","onlySelf","refundReasons","recently_used","commonRefundReasons","sort","localeCompare","resetRemissionForm","remissionctrls","isRemissionLessThanFee","setErrors","confirmRemission","newNetAmount","remissionAmount","trim","id","LDUrl","routeReuseStrategy","shouldReuseRoute","onSameUrlNavigation","isRemissionCodeEmpty","remissionCodeHasError","isAmountEmpty","amountHasError","isRemissionLessThanFeeError","addRemissionCode","gotoAddRetroRemissionCodePage","iscancelClicked","refundListAmount","isFromRefundStatusPage","refundListReason","selectedRefundReason","selectedValue","gotoCheckRetroRemissionPage","gotoProcessRetroRemissionPage","confirmRetroRemission","retroRemission","remissionamt","isRemissionApplied","remission_reference","processRefund","refundAmount","refund_amount","gotoIssueRefundConfirmation","refundHasError","displayRefundReason","gotoIssueRefundPage","changeIssueRefundReason","confirmIssueRefund","confirmRetroRefund","localStorage","setItem","isRefundReasonsSelected","showReasonText","reasonLength","gotoServiceRequestPage","sendOrderDetail","sendOrderRef","gotoCasetransationPageCancelBtnClicked","getFormattedCurrency","concat","hasErrors","CcdHyphensPipe","transform","match","Pipe","CapitalizePipe","slice","keyValuePipe","keys","SanitizeHtmlPipe","sanitizer","bypassSecurityTrustHtml","DomSanitizer","XlFileService","exportAsExcelFile","json","excelFileName","worksheet","XLSX.utils","json_to_sheet","header","setDataLossReportHeaders","setUnprocessedReportHeaders","setProcessedUnallocatedReportHeaders","setPaymentFailureReportHeaders","setShortFallReportHeaders","autoFitColumns","excelBuffer","XLSX.write","Sheets","SheetNames","bookType","saveAsExcelFile","objectMaxLength","ColWidth","values","j","width","A1","v","B1","C1","D1","E1","F1","G1","H1","I1","J1","K1","L1","M1","N1","buffer","fileName","Blob","FileSaver.saveAs","ReportsComponent","fromValidation","getToday","toISOString","getSelectedFromDate","validateDates","reportsForm","selectedStartDate","tranformDate","selectedEndDate","isDateRangeMoreThanWeek","isDateRangeMoreThanMonth","isDateRangeBetnWeek","isDateBetwnMonth","isStartDateLesthanEndDate","selectedreport","downloadReport","isDownLoadButtondisabled","dataLossRptDefault","loss_resp","payment_asset_dcn","env_ref","env_item","resp_service_id","resp_service_name","bgc_batch","unProcessedRptDefault","exception_ref","ccd_ref","processedUnallocated","allocation_reason","ccd_exception_ref","ccd_case_ref","updated_by","shortFallsRptDefault","surplus_shortfall","balance","payment_amount","ccd_case_reference","ccd_exception_reference","processed_date","selectedReportName","applyDateFormat","substr","convertToFloatValue","Op","xlFileService","getFileName","toLowerCase","loc","stDt","formatDate","enDt","now","timestamp","getTwodigit","getHours","getMinutes","getSeconds","getCamelCaseString","strDate","parts","map","fmt","multiDateFormater","dateStr","date","amt","Number","parseFloat","TableComponent","STATUS","isApprovalFlow","DATASOURCE","dataSource","MatTableDataSource","actualcount","reduce","r","_a","user_full_name","ngAfterViewInit","paginator","cdRef","applyFilter","filterValue","goToRefundProcessComponent","refundData","goToRefundViewComponent","isCallFromRefundList","ViewChild","MatPaginator","MatSort","displayedColumns","IResubmitRefundRequest","RefundStatusComponent","refundlist","isEliginbleToAccess","refundStatusForm","getRefundsStatusHistoryList","isProcessRefund","refundButtonState","refund_status","statusHistoryList","refundStatusHistories","status_history_dto_list","isLastUpdatedByCurrentUser","last_updated_by_current_user","goToRefundView","gotoReviewDetailsPage","gotoReviewAndReSubmitPage","oldRefundReason","changedAmount","refundreason","notes","gotoRefundReasonPage","isRefundBtnDisabled","gotoAmountPage","goToReviewAndSubmitView","getRefundListReason","refundCode","getRefundAmount","gotoReviewRefundConfirmationPage","resubmitRequest","isFromPayBubble","ServiceRequestComponent","goToServiceRquestComponent","isServiceRequest","IserviceRequestCardPayment","language","IserviceRequestPbaPayment","account_number","customer_reference","orgName","organisation_name","PbaPaymentComponent","isGetPBAAccountSucceed","organisationEntityResponse","pbaAccountList","paymentAccount","selectpbaaccount","currentTarget","isPBADropdownSelected","selectedPbaAccount","pbaAccountRef","isPbaAccountSelected","isInSufficiantFund","isPBAAccountNotExist","isPBAServerError","isPBAAccountPaymentSuccess","pbaAccountrPaymentResult","isPBAAccountHold","isCardPaymentSelected","cardPayment","isCardPaymentSuccess","paymentUrl","next_url","selectPaymentMethod","NgModule","imports","CommonModule","HttpClientModule","FormsModule","ReactiveFormsModule","MatTableModule","MatPaginatorModule","MatSortModule","MatFormFieldModule","MatInputModule","declarations","exports","providers","provide","useClass","PaymentLibModule"],"mappings":"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"}
|