@hmcts/ccpay-web-component 5.0.10 → 5.0.12

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.
@@ -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/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 [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\" [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'\"\n [ISPAYMENTSTATUSENABLED] = \"ISPAYMENTSTATUSENABLED\"\n ></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('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 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, isDataNotExist = false, error='') {\n const bodyContent = isDataNotExist ? error : 'Try again later';\n return {\n title: \"There is a problem with the service\",\n body: bodyContent,\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() 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}\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 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 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 }\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 }\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 += `&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}\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 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\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, 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, false, '');\n this.paymentGroup = paymentGroup;\n this.saveAndContinue();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\n }\n );\n }else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false, 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, false, '');\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, 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, false, '');\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, 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, 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, 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, false, '');\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, false, '');\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\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, 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, false, '');\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() 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 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\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 // 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.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 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 // 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\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 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_reference','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, Input, 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 @Input() ISPAYMENTSTATUSENABLED: string;\n fmt = 'dd/MM/yyyy';\n loc = 'en-US';\n reportsForm: FormGroup;\n startDate: string;\n endDate: string;\n errorMeaagse: 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, 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, 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, false, '');\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, 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 if (res['data'][i]['representment_status'] === undefined) {\n res['data'][i]['representment_status'] = 'No representment received';\n }\n if (res['data'][i]['representment_date'] === undefined) {\n res['data'][i]['representment_date'] = 'N/A';\n }\n if (res['data'][i]['refund_reference'] === undefined) {\n res['data'][i]['refund_reference'] = 'No refund available';\n }\n if (res['data'][i]['refund_amount'] === undefined) {\n res['data'][i]['refund_amount'] = 'N/A';\n }\n if (res['data'][i]['refund_date'] === undefined) {\n res['data'][i]['refund_date'] = 'N/A';\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 const errorContent = error.replace(/[^a-zA-Z ]/g, '').trim();\n const statusCode = error.replace(/[^a-zA-Z0-9 ]/g, '').trim().split(' ')[0];\n if(statusCode === '404') {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, true, errorContent);\n }else {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\n }\n })\n\n } else {\n this.bulkScaningPaymentService.downloadSelectedReport(selectedReportName,selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false, 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, false, '');\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() 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\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 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 // 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 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","isDataNotExist","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","paymentAllocation","fee","isRemissionsMatch","remissions","rem","fee_code","code","push","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","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","controls","resetForm","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","serviceRequest","paymentView","payment_group_reference","goToPayementView","isGrpOutstandingAmtPositive","CASETYPE","EXC_REFERENCE","excReference","takePayment","serviceRequestValue","isBulkScanEnable","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","isNewPaymentGroup_1","isFeeRecordsExist","grpOutstandingAmount","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","antennaReqBody","isConfirmationBtnDisabled","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","requestBody","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","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","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","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","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","toLowerCase","errorContent","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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"}
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 [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\" [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'\"\n [ISPAYMENTSTATUSENABLED] = \"ISPAYMENTSTATUSENABLED\"\n ></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('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 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, isDataNotExist = false, error='') {\n const bodyContent = isDataNotExist ? error : 'Try again later';\n return {\n title: \"There is a problem with the service\",\n body: bodyContent,\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() 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}\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 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 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 }\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 }\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 } else if (paymentGroup.service_request_status === 'Disputed'){\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.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}\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 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\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, 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, false, '');\n this.paymentGroup = paymentGroup;\n this.saveAndContinue();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\n }\n );\n }else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false, 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, false, '');\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, 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, false, '');\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, 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, 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, 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, false, '');\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, false, '');\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\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, 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, false, '');\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() 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 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\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 // 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.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 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 // 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\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 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_reference','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, Input, 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 @Input() ISPAYMENTSTATUSENABLED: string;\n fmt = 'dd/MM/yyyy';\n loc = 'en-US';\n reportsForm: FormGroup;\n startDate: string;\n endDate: string;\n errorMeaagse: 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, 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, 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, false, '');\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, 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 if (res['data'][i]['representment_status'] === undefined) {\n res['data'][i]['representment_status'] = 'No representment received';\n }\n if (res['data'][i]['representment_date'] === undefined) {\n res['data'][i]['representment_date'] = 'N/A';\n }\n if (res['data'][i]['refund_reference'] === undefined) {\n res['data'][i]['refund_reference'] = 'No refund available';\n }\n if (res['data'][i]['refund_amount'] === undefined) {\n res['data'][i]['refund_amount'] = 'N/A';\n }\n if (res['data'][i]['refund_date'] === undefined) {\n res['data'][i]['refund_date'] = 'N/A';\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 const errorContent = error.replace(/[^a-zA-Z ]/g, '').trim();\n const statusCode = error.replace(/[^a-zA-Z0-9 ]/g, '').trim().split(' ')[0];\n if(statusCode === '404') {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, true, errorContent);\n }else {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\n }\n })\n\n } else {\n this.bulkScaningPaymentService.downloadSelectedReport(selectedReportName,selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false, 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, false, '');\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() 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\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 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 // 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 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","isDataNotExist","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","paymentAllocation","fee","isRemissionsMatch","remissions","rem","fee_code","code","push","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","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","controls","resetForm","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","serviceRequest","paymentView","payment_group_reference","goToPayementView","isGrpOutstandingAmtPositive","CASETYPE","EXC_REFERENCE","excReference","takePayment","serviceRequestValue","isBulkScanEnable","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","isNewPaymentGroup_1","isFeeRecordsExist","grpOutstandingAmount","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","antennaReqBody","isConfirmationBtnDisabled","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","requestBody","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","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","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","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","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","toLowerCase","errorContent","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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"}