@hmcts/ccpay-web-component 6.0.0-beta2 → 6.0.0-beta8

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\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}\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 [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'refundstatuslist'\"> </ccpay-refund-status >\n <ccpay-payment-view [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'payment-view'\"\n [isTurnOff]=\"ISTURNOFF\" [isTakePayment]=\"TAKEPAYMENT\" [caseType]=\"CASETYPE\"\n [isOldPcipalOff]=\"ISOLDPCIPALOFF\"\n [isNewPcipalOff]=\"ISNEWPCIPALOFF\"></ccpay-payment-view>\n\n <ccpay-process-refund *ngIf=\"viewName === 'process-refund'\"\n [refundReference]=\"refundReference\"\n [refundlistsource]=\"refundlistsource\"\n ></ccpay-process-refund>\n <ccpay-pba-payment *ngIf=\"viewName === 'pba-payment'\"\n [pbaPayOrderRef]=\"pbaPayOrderRef\"\n ></ccpay-pba-payment>\n <ccpay-case-transactions [isTakePayment]=\"isTakePayment\" [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'case-transactions'\"></ccpay-case-transactions>\n <app-mark-unidentified-payment *ngIf=\"viewName === 'unidentifiedPage'\"\n [caseType]=\"CASETYPE\"></app-mark-unidentified-payment>\n <app-mark-unsolicited-payment *ngIf=\"viewName === 'unsolicitedPage'\"\n [caseType]=\"CASETYPE\"></app-mark-unsolicited-payment>\n <app-allocate-payments *ngIf=\"viewName === 'allocate-payments'\"\n [isTurnOff]=\"ISTURNOFF\"\n [caseType]=\"CASETYPE\"\n ></app-allocate-payments>\n <ccpay-fee-summary *ngIf=\"viewName === 'fee-summary'\"\n [ccdCaseNumber]=\"CCD_CASE_NUMBER\" \n [paymentGroupRef]=\"paymentGroupReference\"\n [isTurnOff]=\"ISTURNOFF\"\n [caseType]=\"CASETYPE\"\n [isOldPcipalOff]=\"ISOLDPCIPALOFF\"\n [isNewPcipalOff]=\"ISNEWPCIPALOFF\"\n ></ccpay-fee-summary>\n <ccpay-reports *ngIf=\"viewName === 'reports'\"></ccpay-reports>\n `\n})\n\nexport class PaymentLibComponent implements OnInit {\n @Input('API_ROOT') API_ROOT: string;\n @Input('BULKSCAN_API_ROOT') BULKSCAN_API_ROOT: string;\n @Input('REFUNDS_API_ROOT') REFUNDS_API_ROOT: string;\n @Input('CCD_CASE_NUMBER') CCD_CASE_NUMBER: string;\n @Input('EXC_REFERENCE') EXC_REFERENCE: string;\n @Input('PAYMENT_METHOD') PAYMENT_METHOD: string;\n @Input('VIEW') VIEW: string;\n @Input('VIEWSERVICE') VIEWSERVICE: string;\n @Input('PAYMENT_GROUP_REF') PAYMENT_GROUP_REF?: string;\n @Input('TAKEPAYMENT') TAKEPAYMENT: boolean;\n @Input('SERVICEREQUEST') SERVICEREQUEST: string;\n @Input('DCN_NUMBER') DCN_NUMBER: string;\n @Input('SELECTED_OPTION') SELECTED_OPTION: string;\n @Input('ISBSENABLE') ISBSENABLE: Boolean;\n @Input('ISSFENABLE') ISSFENABLE: boolean;\n @Input('ISTURNOFF') ISTURNOFF: boolean;\n @Input('CASETYPE') CASETYPE: string;\n @Input('ISOLDPCIPALOFF') ISOLDPCIPALOFF: boolean;\n @Input('ISNEWPCIPALOFF') ISNEWPCIPALOFF: boolean;\n @Input('rootUrl') rootUrl: boolean;\n @Input('REFUNDLIST') REFUNDLIST: string;\n @Input('USERID') USERID: string;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: any[];\n @Input('LOGGEDINUSEREMAIL') LOGGEDINUSEREMAIL: string;\n @Input('isFromServiceRequestPage') isFromServiceRequestPage: boolean;\n\n paymentMethod: string;\n bspaymentdcn: string;\n unProcessedPaymentServiceId: string = null;\n paymentGroupReference: string;\n paymentReference: string;\n refundReference: string;\n refundlistsource: any;\n viewName: string;\n isTurnOff: boolean;\n caseType: string;\n isOldPcipalOff: boolean;\n isNewPcipalOff: boolean;\n unProcessedPayment: IBSPayments = null;\n isRefundStatusView: boolean;\n isRedirectFromCaseTransactionPage: string;\n isCallFromRefundList: boolean;\n isFromRefundStatusPage: boolean;\n iscancelClicked : boolean;\n isFromPaymentDetailPage: boolean;\n pbaPayOrderRef: IPayment;\n isTakePayment: boolean;\n\n orderDetail: any[];\n orderRef: string;\n orderStatus: string;\n orderParty: string;\n orderCreated: Date;\n orderCCDEvent: string;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n orderFeesTotal: number = 0.00;\n orderRemissionTotal: number = 0.00;\n orderTotalPayments: number = 0.00;\n orderPendingPayments: number = 0.00;\n\n constructor(private paymentLibService: PaymentLibService,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) { }\n ngAfterContentChecked(): void {\n this.cd.detectChanges();\n } \n\n\n ngOnInit() {\n this.paymentLibService.setApiRootUrl(this.API_ROOT);\n this.paymentLibService.setBulkScanApiRootUrl(this.BULKSCAN_API_ROOT);\n this.paymentLibService.setRefundndsApiRootUrl(this.REFUNDS_API_ROOT);\n if(this.LOGGEDINUSERROLES.length > 0) {\n this.OrderslistService.setUserRolesList(this.LOGGEDINUSERROLES);\n }\n if (this.PAYMENT_GROUP_REF) {\n this.paymentGroupReference = this.PAYMENT_GROUP_REF;\n }\n if (this.DCN_NUMBER) {\n this.bspaymentdcn = this.DCN_NUMBER;\n }\n if (this.REFUNDLIST === \"true\") {\n this.VIEW = 'refund-list';\n this.viewName = this.VIEW;\n }\n if (this.VIEW === 'fee-summary') {\n this.viewName = 'fee-summary';\n } else if (this.VIEW !== 'reports' && this.VIEW !== 'refund-list') {\n this.viewName = 'case-transactions';\n } else {\n this.viewName = this.VIEW;\n }\n\n if (this.isTakePayment) {\n this.TAKEPAYMENT = true;\n }\n }\n}\n","import { Injectable } from '@angular/core';\nimport { _throw } from 'rxjs/observable/throw';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { HttpErrorResponse } from '@angular/common/http';\nimport { stringify } from '@angular/core/src/util';\n\n@Injectable({\n providedIn: 'root'\n})\n\n\nexport class ErrorHandlerService {\n\n constructor() { }\n\n\n handleError(err: HttpErrorResponse): Observable<any> {\n let errorMessage: string;\n if (err.error instanceof Error) {\n // A client-side or network error occurred.\n errorMessage = `An error occurred: ${err.error.message}`;\n } else {\n // The backend returned an unsuccessful response code.\n if (err.status === 404) {\n\n if (typeof err.error === 'string' && err.error !== undefined) {\n \n if(err.error.length > 60) {\n if (JSON.parse(err.error).statusCode !== undefined && JSON.parse(err.error).statusCode === 500)\n {\n errorMessage = 'Internal server error';\n } else {\n if(err.error.length > 60) {\n errorMessage = JSON.parse(err.error).error;\n } else {\n errorMessage = err.error;\n }\n \n }\n } else {\n errorMessage = err.error;\n }\n } else {\n errorMessage = JSON.parse(err.error).error;\n }\n \n }\n else if (err.status === 500) {\n errorMessage = 'Internal server error';\n } else if (err.error.messsage === undefined) {\n if( typeof err.error === 'object') {\n errorMessage = JSON.parse(JSON.stringify(err.error)).error;\n } else {\n if (typeof err.error === 'string' && err.error !== undefined) {\n \n if(err.error.length > 60) {\n if (JSON.parse(err.error).statusCode !== undefined && JSON.parse(err.error).statusCode === 500)\n {\n errorMessage = 'Internal server error';\n } else {\n if(err.error.length > 60) {\n errorMessage = JSON.parse(err.error).error;\n } else {\n errorMessage = err.error;\n }\n \n }\n } else {\n errorMessage = err.error;\n }\n } else {\n errorMessage = JSON.parse(err.error).error;\n }\n \n }\n \n } else {\n if (err.error.message !== undefined) {\n errorMessage = `${err.error.message}`;\n } else {\n errorMessage = `${err.error}`;\n }\n \n }\n }\n return _throw(errorMessage);\n }\n\n\n getServerErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","import { Injectable } from '@angular/core';\n\nconst noop = (): any => undefined;\n\nexport abstract class Logger {\n\n info: any;\n warn: any;\n error: any;\n}\n\n@Injectable({\n providedIn: 'root'\n})\nexport class LoggerService implements Logger {\n\n info: any;\n warn: any;\n error: any;\n\n invokeConsoleMethod(type: string, args?: any): void {}\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\n\nimport { Observable } from 'rxjs/internal/Observable';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { IPayments } from '../../interfaces/IPayments';\nimport { catchError } from 'rxjs/operators';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PaymentListService {\n payments: IPayments;\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n\n getPaymentByCcdCaseNumber(ccdCaseNumber: string, paymentMethod: string): Observable<IPayments> {\n this.logger.info('Payment-list-service getPaymentByCcdCaseNumber for: ', ccdCaseNumber);\n\n return this.http.get<IPayments>(`${this.paymentLibService.API_ROOT}/cases/${ccdCaseNumber}/payments`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import {Component, OnInit} from '@angular/core';\n\nimport {PaymentListService} from '../../services/payment-list/payment-list.service';\nimport {IPayments} from '../../interfaces/IPayments';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport {IStatusHistory} from '../../interfaces/IStatusHistory';\n\n@Component({\n selector: 'ccpay-payment-list',\n templateUrl: './payment-list.component.html',\n styleUrls: ['./payment-list.component.css']\n})\nexport class PaymentListComponent implements OnInit {\n payments: IPayments;\n errorMessage: string;\n code: string;\n\n constructor(private paymentListService: PaymentListService,\n private paymentLibComponent: PaymentLibComponent) {\n }\n\n ngOnInit() {\n this.paymentListService.getPaymentByCcdCaseNumber(this.paymentLibComponent.CCD_CASE_NUMBER, this.paymentLibComponent.PAYMENT_METHOD)\n .subscribe(\n payments => this.payments = payments,\n (error: any) => this.errorMessage = <any>error\n );\n }\n\n loadPaymentViewComponent(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.paymentLibComponent.paymentMethod = paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n}\n","/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Meta } from '@angular/platform-browser';\nimport { Observable } from 'rxjs';\n\n@Injectable()\nexport class WebComponentHttpClient {\n constructor(\n private http: HttpClient,\n private meta: Meta\n ) { }\n\n post(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.post(url, body, opts);\n }\n\n put(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.put(url, body, opts);\n }\n\n get(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.get(url, opts);\n }\n\n delete(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.delete(url, opts);\n }\n \n patch(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.patch(url, body, opts);\n }\n\n addHeaders(options: any): any {\n const csrfToken = this.meta.getTag('name=csrf-token');\n const headers = {};\n \n if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n if (csrfToken === null) {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith(' XSRF-TOKEN')).split('=')[1];\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';\n\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 return this.https.post(url, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n \n postPBAaccountPayment(serviceRef: string, body: IserviceRequestPbaPayment): Observable<any> {\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 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}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\nimport { ChangeDetectorRef } from '@angular/core';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-payment-view',\n templateUrl: './payment-view.component.html',\n styleUrls: ['./payment-view.component.css']\n})\nexport class PaymentViewComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() isTakePayment: boolean;\n @Input() caseType: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() isOldPcipalOff: boolean;\n @Input() orderRef: string;\n @Input() orderStatus: string;\n @Input() orderTotalPayments: number;\n @Input() payment: IPayment;\n @Input() LOGGEDINUSERROLES: string[];\n @Input() orderParty: string;\n @Input() orderCreated: Date;\n @Input() orderCCDEvent: string;\n @Input() orderFeesTotal: number;\n @Input() orderRemissionTotal: number;\n @Input() orderDetail: any[];\n\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 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\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\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n\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}","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 headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith(' XSRF-TOKEN')).split('=')[1];\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';\nimport { ServiceRequestComponent } from '../../components/service-request/service-request.component';\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 servicerequest: string;\n ccdCaseNumber: string;\n excReference: string;\n paymentGroups: any[] = [];\n payments: IPayment[] = [];\n nonPayments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n fees: IFee[] = [];\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalNonOffPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n paymentRef: string;\n isTurnOff: boolean;\n isNewPcipalOff: boolean;\n isRefundRemission: boolean = true;\n isOldPcipalOff: boolean;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = true;\n isExceptionRecord: boolean = false;\n isUnprocessedRecordSelected: boolean = false;\n exceptionRecordReference: string;\n isAnyFeeGroupAvilable: boolean = true;\n isHistoricGroupAvailable: boolean = false;\n isBulkScanEnable;\n isRemissionsMatch: boolean;\n 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 \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 this.servicerequest = this.paymentLibComponent.SERVICEREQUEST;\n if (this.paymentLibComponent.SERVICEREQUEST === 'true') {\n this.serviceRequestValue = 'true';\n } else {\n this.serviceRequestValue = 'false';\n }\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isNewPcipalOff = this.paymentLibComponent.ISNEWPCIPALOFF;\n this.isOldPcipalOff = this.paymentLibComponent.ISOLDPCIPALOFF;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n if (!this.isTurnOff) {\n // if (this.lsCcdNumber !== this.ccdCaseNumber) {\n // this.router.navigateByUrl(`/ccd-search?takePayment=true`);\n // }\n\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.isAnyFeeGroupAvilable =true;\n this.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts();\n this.calculateOrderFeesAmounts();\n this.calculateRefundAmount();\n if (this.isFromServiceRequestPage) {\n this.OrderslistService.getSelectedOrderRefId().subscribe((data) => this.orderRef = data);\n this.goToOrderViewDetailSection(this.orderRef);\n } else {\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).content[0];\n \n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.isCPODown = true;\n }\n );\n \n }\n\n \n },\n (error: any) => {\n this.errorMessage = <any>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.replace(/\"/g,\"\");\n this.setDefaults();\n this.isCPODown = true;\n }\n );\n\n },\n (error: any) => {\n this.errorMessage = <any>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 (this.orderPendingPayments <= 0.00) {\n this.orderStatus = 'Paid';\n this.orderAddBtnEnable = false;\n } else if (this.orderFeesTotal > 0 && (this.orderTotalPayments > 0 || this.orderRemissionTotal > 0) && (this.orderTotalPayments < this.orderPendingPayments)) {\n this.orderStatus = 'Partially paid'\n this.orderAddBtnEnable = true;\n } else {\n this.orderStatus = 'Not paid'\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 });\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 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 paymentGroup.remissions.forEach(rem => {\n if (rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n // if(!fees.find(k => k.code=fee.code))\n // {\n fees.push(fee);\n //}\n }\n });\n\n if (!this.isRemissionsMatch) {\n fees.push(fee);\n }\n\n if (fee.date_created) {\n isNewPaymentGroup = true;\n } else {\n this.isHistoricGroupAvailable = true;\n this.paymentGroups[index]['old'] = true;\n }\n });\n this.paymentGroups[index].fees = fees;\n }\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n }\n grpOutstandingAmount = (feesTotal - remissionsTotal) - paymentsTotal;\n if (grpOutstandingAmount > 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = true;\n this.isFeeRecordsExist = true;\n this.paymentRef = paymentGroup.payment_group_reference;\n }\n if (paymentGroup.fees && paymentGroup.fees.length > 0 && grpOutstandingAmount <= 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = false;\n }\n });\n if ((!isNewPaymentGroup && this.isHistoricGroupAvailable) || (!isNewPaymentGroup && !this.isHistoricGroupAvailable)) {\n this.isAnyFeeGroupAvilable = false;\n }\n } else {\n let totalRefundAmount = 0,\n isFeeAmountZero = false;\n this.paymentGroups.forEach(paymentGroup => {\n let grpOutstandingAmount = 0.00,\n feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00;\n if (paymentGroup.fees) {\n this.isFeeRecordsExist = true;\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n if (fee.calculated_amount === 0) {\n isFeeAmountZero = true\n }\n });\n\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n }\n grpOutstandingAmount = (feesTotal - remissionsTotal) - paymentsTotal;\n if (grpOutstandingAmount < 0) {\n if (totalRefundAmount === 0) {\n totalRefundAmount = grpOutstandingAmount;\n } else {\n totalRefundAmount = (totalRefundAmount + grpOutstandingAmount);\n }\n }\n else if (grpOutstandingAmount > 0 || (grpOutstandingAmount === 0 && isFeeAmountZero)) {\n this.isGrpOutstandingAmtPositive = true;\n }\n });\n return totalRefundAmount * -1;\n }\n }\n\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n }\n\n redirectToFeeSearchPage(event: any) {\n event.preventDefault();\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n url += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n url += `&caseType=${this.caseType}`\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}${url}`);\n }\n\n addRemission(fee: IFee) {\n if(this.chkForAddRemission(fee.code)) {\n this.feeId = fee;\n this.viewStatus = 'addremission';\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error.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\n redirectToReportsPage(event: any) {\n event.preventDefault();\n this.router.navigateByUrl(`/reports?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}`);\n }\n\n loadFeeSummaryPage(paymentGroup: IPaymentGroup) {\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.payment_group_reference;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n\n goToPaymentViewComponent(paymentGroup: any) {\n this.paymentLibComponent.paymentMethod = paymentGroup.paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentGroup.paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n\n goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent({ paymentGroupReference, paymentReference, paymentMethod });\n }\n\n selectedUnprocessedFeeEvent(unprocessedRecordId: string) {\n if (unprocessedRecordId) {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = false;\n }\n this.isUnprocessedRecordSelected = true;\n } else {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = true;\n }\n this.isUnprocessedRecordSelected = false;\n }\n }\n\n getUnprocessedFeeCount(unProcessedRecordCount: number) {\n this.unprocessedRecordCount = unProcessedRecordCount;\n }\n\n calculateAmountDue(fee: IFee) {\n\n if (fee.date_created) {\n return fee.amount_due !== undefined ? fee.amount_due : fee.net_amount;\n } else {\n return \"0.00\";\n }\n }\n\n confirmRemoveFee(fee: IFee) {\n this.isRemoveBtnDisabled = false;\n this.feeId = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n cancelRemoval() {\n this.viewStatus = 'main';\n }\n\n removeFee(fee: any) {\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n window.location.reload();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n\n issueRefund(payment: IPayment) {\n if (payment !== null && payment !== undefined) {\n if(this.chkIssueRefundBtnEnable(payment)) {\n this.viewStatus = 'issuerefund';\n this.payment = payment;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.isRefundRemission = true;\n }\n }\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund()) {\n if (this.orderDetail[0]['remissions'].length > 0) {\n for (const remission of this.orderDetail[0]['remissions']) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n }\n return true;\n } else {\n return false;\n }\n }\n\n chkForPBAPayment(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isPBA = true;\n }\n });\n }\n });\n if (this.isPBA) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n this.isIssueRefunfBtnEnable = true;\n }\n if (this.isIssueRefunfBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n check4AllowedRoles2AccessPBApayment = (): boolean => {\n return this.isEligible4PBAPayment.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n if (payment !== null && payment !== undefined) {\n let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\n }\n }\n\n loadPBAAccountPage(orderRef: IPayment) {\n this.paymentLibComponent.pbaPayOrderRef = orderRef;\n this.paymentLibComponent.viewName = 'pba-payment';\n }\n}","export class PaymentToPayhubRequest {\n currency = 'GBP';\n description = 'PayBubble payment';\n channel = 'telephony';\n provider = 'pci pal';\n case_type: string;\n\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.case_type= caseType;\n }\n}\n","export class PayhubAntennaRequest {\n currency = 'GBP';\n case_type: string;\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.case_type= caseType;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IFee } from '../../interfaces/IFee';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { PayhubAntennaRequest } from '../../interfaces/PayhubAntennaRequest';\nimport { SafeHtml } from '@angular/platform-browser';\nimport {Router} from '@angular/router';\nimport {Location} from '@angular/common';\nimport { OrderslistService } from '../../services/orderslist.service';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-fee-summary',\n templateUrl: './fee-summary.component.html',\n styleUrls: ['./fee-summary.component.scss']\n})\n\nexport class FeeSummaryComponent implements OnInit {\n @Input() paymentGroupRef: string;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: string;\n @Input() caseType: string;\n @Input() isOldPcipalOff: string;\n @Input() isNewPcipalOff: string;\n\n\n bsPaymentDcnNumber: string;\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n viewStatus = 'main';\n currentFee: IFee;\n totalFee: number;\n payhubHtml: SafeHtml;\n service: string = \"\";\n platForm: string = \"\";\n upPaymentErrorMessage: string;\n selectedOption:string;\n isBackButtonEnable: boolean = true;\n outStandingAmount: number;\n isFeeAmountZero: boolean = false;\n totalAfterRemission: number = 0;\n isConfirmationBtnDisabled: boolean = false;\n isRemoveBtnDisabled: boolean = false;\n isPaymentExist: boolean = false;\n isRemissionsExist: Boolean = false;\n isRemissionsMatch = false;\n isStrategicFixEnable: boolean;\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private location: Location,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private OrderslistService: OrderslistService\n ) {}\n\n ngOnInit() {\n this.viewStatus = 'main';\n this.caseType = this.paymentLibComponent.CASETYPE;\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.setCaseType(this.paymentLibComponent.CASETYPE);\n if ((!this.isOldPcipalOff && this.isNewPcipalOff)) {\n this.platForm = '8x8';\n } else if ((this.isOldPcipalOff && !this.isNewPcipalOff)) {\n this.platForm = 'Antenna';\n } else if ((this.isOldPcipalOff && this.isNewPcipalOff)){\n this.platForm = '8x8';\n }\n\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n if (this.bsPaymentDcnNumber) {\n this.getUnassignedPaymentlist();\n }\n this.getPaymentGroup();\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.paymentLibComponent.DCN_NUMBER).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error';\n }\n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error'; \n } \n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n }\n\n }\n\n getRemissionByFeeCode(feeCode: string): IRemission {\n if (this.paymentGroup && this.paymentGroup.remissions && this.paymentGroup.remissions.length > 0) {\n for (const remission of this.paymentGroup.remissions) {\n if (remission.fee_code === feeCode) {\n return remission;\n }\n }\n }\n return null;\n }\n\n addRemission(fee: IFee) {\n this.currentFee = fee;\n this.viewStatus = 'add_remission';\n }\n\n getPaymentGroup() {\n let fees = [];\n this.paymentViewService.getPaymentGroupDetails(this.paymentGroupRef).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n this.isPaymentExist = paymentGroup.payments ? paymentGroup.payments.length > 0 : false;\n this.isRemissionsExist = paymentGroup.remissions ? paymentGroup.remissions.length > 0 : false;\n\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.totalAfterRemission = this.totalAfterRemission + fee.net_amount;\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true;\n }\n this.isRemissionsMatch = false;\n paymentGroup.remissions.forEach(rem => {\n if(rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n \n if(!this.isRemissionsMatch) {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees;\n }\n\n this.outStandingAmount = this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n\n confirmRemoveFee(fee: IFee){\n this.isRemoveBtnDisabled = false;\n this.currentFee = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n removeFee(fee: any){\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n if (this.paymentGroup.fees && this.paymentGroup.fees.length > 1){\n this.totalAfterRemission = 0;\n this.getPaymentGroup();\n this.viewStatus = 'main';\n return;\n }\n this.loadCaseTransactionPage();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n loadCaseTransactionPage() {\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n\n let partUrl = `selectedOption=${this.paymentLibComponent.SELECTED_OPTION}`;\n partUrl +=this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl +=this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl +=this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n\n let url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=true&${partUrl}`;\n this.router.navigateByUrl(url);\n }\n cancelRemission() {\n this.viewStatus = 'main';\n }\n redirectToFeeSearchPage(event: any, page?: string) {\n event.preventDefault();\n let partUrl =this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl +=this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl +=this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n\n if(this.viewStatus === 'feeRemovalConfirmation' || this.viewStatus === 'add_remission') {\n this.viewStatus = 'main';\n return;\n }\n let url = `/fee-search?ccdCaseNumber=${this.ccdCaseNumber}&selectedOption=${this.paymentLibComponent.SELECTED_OPTION}&paymentGroupRef=${this.paymentGroupRef}${partUrl}`;\n this.router.navigateByUrl(url);\n }\n takePayment() {\n this.isConfirmationBtnDisabled = true;\n const requestBody = new PaymentToPayhubRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType),\n antennaReqBody = new PayhubAntennaRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType);\n\n if(this.platForm === '8x8') {\n this.paymentViewService.postPaymentToPayHub(requestBody, this.paymentGroupRef).subscribe(\n response => {\n this.location.go(`payment-history?view=fee-summary`);\n this.payhubHtml = response;\n this.viewStatus = 'payhub_view';\n this.isBackButtonEnable=false;\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.router.navigateByUrl('/pci-pal-failure');\n }\n );\n } else if(this.platForm === 'Antenna') {\n\n this.paymentViewService.postPaymentAntennaToPayHub(antennaReqBody, this.paymentGroupRef).subscribe(\n response => {\n this.isBackButtonEnable=false;\n window.location.href = '/makePaymentByTelephoneyProvider';\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.router.navigateByUrl('/pci-pal-failure');\n }\n );\n }\n\n }\n\n goToAllocatePage(outStandingAmount: number, isFeeAmountZero: Boolean) {\n if (outStandingAmount > 0 || (outStandingAmount === 0 && isFeeAmountZero)) {\n this.paymentLibComponent.paymentGroupReference = this.paymentGroupRef;\n this.paymentLibComponent.viewName = 'allocate-payments';\n } else {\n this.loadCaseTransactionPage();\n }\n }\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\n\n\n\n@Component({\n selector: 'ccpay-error-banner',\n templateUrl: './error-banner.component.html',\n styleUrls: ['./error-banner.component.scss']\n})\n\nexport class ErrorBannerComponent implements OnInit {\n @Input('errorMessage') errorMessage;\n\n constructor(\n ) {}\n\n ngOnInit() {\n\n }\n}\n","\nexport class UnidentifiedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n unidentified_reason: string;\n\n constructor(payment_group_reference: string, payment_reference : string, unidentified_reason: any) {\n this.payment_allocation_status = {\n description: '',\n name: \"Unidentified\"\n };\n this.payment_group_reference = payment_group_reference ;\n this.payment_reference= payment_reference;\n this.unidentified_reason= unidentified_reason;\n\n }\n\n\n\n}\n","import { IBSPayments } from \"./IBSPayments\";\n\nexport class AllocatePaymentRequest {\n amount: Number;\n banked_date: String;\n ccd_case_number: String;\n exception_record: string;\n currency: String;\n document_control_number: String;\n external_provider: String;\n giro_slip_no: String;\n payer_name: String;\n payment_channel: Object;\n payment_status: Object;\n payment_method: String;\n case_type: String;\n payment_allocation_dto?: {\n allocation_reason: String,\n allocation_status: String,\n explanation: String,\n payment_allocation_status: Object,\n payment_group_reference: String,\n payment_reference: String,\n reason: String,\n receiving_office: String,\n unidentified_reason: String,\n user_id: String,\n user_name: String,\n case_type: String\n }\n\n constructor(ccd_case_number : string, unAllocatedPayment: IBSPayments, caseType: string, exceptionRecord: string, allocatedRequest?: any) {\n this.amount = unAllocatedPayment.amount;\n this.banked_date = unAllocatedPayment.date_banked;\n this.ccd_case_number = ccd_case_number;\n this.exception_record = exceptionRecord;\n this.currency= unAllocatedPayment.currency;\n this.document_control_number = unAllocatedPayment.dcn_reference;\n this.external_provider = 'exela';\n this.giro_slip_no = unAllocatedPayment.bgc_reference;\n this.payer_name = unAllocatedPayment.payer_name;\n this.payment_channel = {\n description: '',\n name: 'bulk scan'\n };\n this.payment_status ={\n description: 'bulk scan payment completed',\n name: 'success'\n }\n this.payment_method = unAllocatedPayment.payment_method;\n this.case_type= caseType;\n if(allocatedRequest) {\n this.payment_allocation_dto = allocatedRequest;\n }\n\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\n\n@Component({\n selector: 'app-mark-unidentified-payment',\n templateUrl: './mark-unidentified-payment.component.html',\n styleUrls: ['./mark-unidentified-payment.component.scss']\n})\nexport class MarkUnidentifiedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnidentifiedForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n isInvesticationDetailEmpty: boolean = false;\n investicationDetailHasError: boolean = false;\n investicationDetailMinHasError: boolean = false;\n investicationDetailMaxHasError: boolean = false;\n errorMessage = this.getErrorMessage(false);\n unassignedRecord:IBSPayments;\n siteID: string = null;\n investigationComment: string;\n isConfirmButtondisabled:Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n isStrategicFixEnable: boolean = true;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.markPaymentUnidentifiedForm = this.formBuilder.group({\n investicationDetail: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ]))\n });\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.getErrorMessage(false);\n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n saveAndContinue() {\n this.resetForm([false, false, false, false]);\n const investicationField = this.markPaymentUnidentifiedForm.controls.investicationDetail;\n const formerror = investicationField.errors;\n if (this.markPaymentUnidentifiedForm.dirty && this.markPaymentUnidentifiedForm.valid) {\n this.investigationComment = this.markPaymentUnidentifiedForm.controls.investicationDetail.value;\n this.viewStatus = 'unidentifiedContinueConfirm';\n }else {\n if(investicationField.value == '' ) {\n this.resetForm([true, false, false, false]);\n }\n if(investicationField.value != '' && investicationField.invalid ) {\n this.resetForm([false, true, false, false]);\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false, false, true, false]);\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, true]);\n }\n }\n }\n resetForm(val) {\n this.isInvesticationDetailEmpty = val[0];\n this.investicationDetailHasError = val[1];\n this.investicationDetailMinHasError = val[2];\n this.investicationDetailMaxHasError = val[3];\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const reason = this.markPaymentUnidentifiedForm.get('investicationDetail').value;\n\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Unidentified',\n payment_allocation_status: {\n description: '',\n name: 'Unidentified'\n },\n unidentified_reason: reason,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnidentifiedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, reason);\n if (response2.success) {\n this.paymentViewService.postBSUnidentifiedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n cancelMarkUnidentifiedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.markPaymentUnidentifiedForm.get('investicationDetail').value!==\"\"){\n this.viewStatus = 'unidentifiedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.viewStatus = 'mainForm';\n }\n }\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","\nexport class UnsolicitedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n receiving_office: string;\n receiving_email_address: string;\n sending_email_address: string;\n unidentified_reason: string;\n constructor(payment_group_reference: string, payment_reference : string, reason: string,responsible_office: string, responsible_person:string,email_id: string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Transferred\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.unidentified_reason= reason;\n this.receiving_office= responsible_office;\n this.receiving_email_address= email_id;\n this.sending_email_address= responsible_person;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\n\n\n@Component({\n selector: 'app-mark-unsolicited-payment',\n templateUrl: './mark-unsolicited-payment.component.html',\n styleUrls: ['./mark-unsolicited-payment.component.scss']\n})\nexport class MarkUnsolicitedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnsolicitedForm: FormGroup;\n viewStatus: string;\n reasonHasError: boolean = false;\n isReasonEmpty: boolean = false;\n reasonMinHasError: boolean = false;\n reasonMaxHasError: boolean = false;\n responsibleOfficeHasError: boolean = false;\n isResponsibleOfficeEmpty: boolean = false;\n errorMessage = this.getErrorMessage(false);\n ccdCaseNumber: string;\n bspaymentdcn: string;\n unassignedRecord: IBSPayments;\n siteID: string = null;\n reason: string;\n responsiblePerson: string;\n responsibleOffice: string;\n emailId: string;\n isConfirmButtondisabled: Boolean = false;\n isContinueButtondisabled: Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n selectedSiteId: string;\n selectedSiteName: string;\n isStrategicFixEnable: boolean = true;\n siteIDList;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.resetForm([false,false,false,false,false,false], 'all');\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.paymentViewService.getSiteID().subscribe(\n siteids => {\n this.isContinueButtondisabled = false;\n this.errorMessage = this.getErrorMessage(false);\n this.siteIDList = JSON.parse(siteids);\n },\n err => {\n window.scrollTo(0, 0);\n this.isContinueButtondisabled = true;\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n \n this.markPaymentUnsolicitedForm = this.formBuilder.group({\n reason: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n responsibleOffice: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s\\\\n,\\\\.-:]*)$')\n ])),\n responsiblePerson: new FormControl(''),\n emailId: new FormControl('')\n });\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const controls = this.markPaymentUnsolicitedForm.controls;\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Transferred',\n payment_allocation_status: {\n description: '',\n name: 'Transferred'\n },\n unidentified_reason: controls.reason.value,\n receiving_office: this.selectedSiteId,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n // controls.responsibleOffice.setValue('P219');\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const response1 = JSON.parse(res1),\n requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnsolicitedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, controls.reason.value, this.selectedSiteId, controls.responsiblePerson.value, controls.emailId.value);\n if (response2.success) {\n this.paymentViewService.postBSUnsolicitedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n saveAndContinue() {\n this.resetForm([false,false,false,false,false,false], 'all');\n const formerror = this.markPaymentUnsolicitedForm.controls.reason.errors;\n const reasonField = this.markPaymentUnsolicitedForm.controls.reason;\n //const officeIdField = this.selectedSiteId;\n const officeIdField = this.markPaymentUnsolicitedForm.controls.responsibleOffice;\n if (this.markPaymentUnsolicitedForm.dirty && this.markPaymentUnsolicitedForm.valid) {\n const controls = this.markPaymentUnsolicitedForm.controls;\n this.emailId = controls.emailId.value;\n this.responsibleOffice = officeIdField.value;\n this.responsiblePerson = controls.responsiblePerson.value;\n this.reason = controls.reason.value;\n this.viewStatus = 'unsolicitedContinueConfirm';\n }else {\n if( reasonField.value == '' ) {\n this.resetForm([true,false,false,false,false,false], 'reason');\n }\n if(reasonField.value != '' && this.markPaymentUnsolicitedForm.controls.reason.invalid ) {\n this.resetForm([false,true,false,false,false,false], 'reason');\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false,false,true,false,false,false], 'reason');\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false,false,false,true,false,false], 'reason');\n }\n if(officeIdField.value == '') {\n this.resetForm([false,false,false,false,true,false], 'responsibleOffice');\n }\n if(officeIdField.value != '' && officeIdField.invalid) {\n this.resetForm([false,false,false,false,false,true],'responsibleOffice');\n }\n }\n }\n resetForm(val, field) {\n if(field==='reason' || field==='all') {\n this.isReasonEmpty = val[0];\n this.reasonHasError = val[1];\n this.reasonMinHasError = val[2];\n this.reasonMaxHasError = val[3];\n }\n if(field==='responsibleOffice' || field==='all') {\n this.isResponsibleOfficeEmpty = val[4];\n this.responsibleOfficeHasError = val[5];\n }\n }\n\ncancelMarkUnsolicitedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.checkingFormValue()){\n this.viewStatus = 'unsolicitedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.markPaymentUnsolicitedForm.controls.responsibleOffice.setValue('');\n this.viewStatus = 'mainForm';\n }\n }\n checkingFormValue(){\n const formFields = this.markPaymentUnsolicitedForm.value;\n let valueExists = false;\n\n for (var field in formFields) {\n if (formFields.hasOwnProperty(field) && formFields[field] !==\"\") {\n valueExists = true;\n break;\n }\n }\n return valueExists;\n }\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n \n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n\n getErrorMessage(isErrorExist) {\n return {\n title: \"Something went wrong.\",\n body: \"Please try again later.\",\n showError: isErrorExist\n };\n }\n\n selectchange(args){ \n this.selectedSiteId = args.target.value; \n this.selectedSiteName = args.target.options[args.target.selectedIndex].text; \n } \n\n}\n","import { Component, OnInit, Output,Input, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport {Router} from '@angular/router';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-app-unprocessed-payments',\n templateUrl: './unprocessed-payments.component.html',\n styleUrls: ['./unprocessed-payments.component.scss']\n})\nexport class UnprocessedPaymentsComponent implements OnInit {\n\n @Input('FEE_RECORDS_EXISTS') FEE_RECORDS_EXISTS: boolean;\n @Input('PAYMENTREF') PAYMENTREF: string;\n @Input('ISTURNOFF') ISTURNOFF: boolean;\n @Input('IS_BUTTON_ENABLE') IS_BUTTON_ENABLE: boolean;\n @Input('IS_OS_AMT_AVAILABLE') IS_OS_AMT_AVAILABLE: boolean;\n @Input('ISNEWPCIPALOFF') ISNEWPCIPALOFF: boolean;\n @Input('ISOLDPCIPALOFF') ISOLDPCIPALOFF: boolean;\n @Input('ISSFENABLE') ISSFENABLE: boolean;\n @Input('PAYMENTSLENGTH') PAYMENTSLENGTH:Number;\n @Input('LEVEL')LEVEL:Number;\n\n @Output() selectedUnprocessedFeeEvent: EventEmitter<string> = new EventEmitter();\n @Output() getUnprocessedFeeCount: EventEmitter<string> = new EventEmitter();\n\n viewStatus = 'main';\n unassignedRecordList: IBSPayments;\n upPaymentErrorMessage: string = null;\n ccdCaseNumber: string;\n recordId: string = null;\n isRecordExist: boolean = false;\n dcnNumber: string = null;\n selectedOption: string;\n isUnprocessedRecordSelected: boolean = true;\n isAllocateToExistingFeebtnEnabled: boolean = false;\n isMarkAsUnidentifiedbtnEnabled: boolean = false;\n isAllocatedToNewFeebtnEnabled: boolean = false;\n isExceptionCase: boolean = false;\n serviceId: string = null;\n isBulkScanEnable;\n isNewpcipaloff;\n isOldpcipaloff;\n isTurnOff: boolean = true;\n isStFixEnable;\n unassignedRecordSelectedList: IBSPayments;\n unassignedRecordListLength: number = 0;\n showContent: boolean;\n\n constructor(private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private OrderslistService: OrderslistService\n ) { }\n\n ngOnInit() {\n // Todo ...\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isNewpcipaloff = this.paymentLibComponent.ISNEWPCIPALOFF;\n this.isOldpcipaloff = this.paymentLibComponent.ISOLDPCIPALOFF;\n this.isStFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.getFeeExists().subscribe( (data) => this.FEE_RECORDS_EXISTS = data);\n this.getUnassignedPaymentlist();\n\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.dcnNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n }\n\n }\n\n setValuesForUnassignedRecord(unassignedPayments) {\n \n this.unassignedRecordList = unassignedPayments.payments;\n if(this.unassignedRecordList){\n this.unassignedRecordListLength = unassignedPayments.payments.length\n }\n this.serviceId = unassignedPayments.responsible_service_id;\n if (unassignedPayments['ccd_reference'] === undefined) {\n this.isExceptionCase = true;\n }\n // this.isRecordExist = this.unassignedRecordList.length === 0;\n this.getUnprocessedFeeCount.emit(<any>this.unassignedRecordList.length);\n this.unprocessedPaymentSelectEvent(this.unassignedRecordList);\n }\n\n formatUnassignedRecordId(ID: Number) {\n return `unassignrecord-${ID}`;\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n\n redirectToFeeSearchPage(event: any, dcn_reference:any) {\n event.preventDefault();\n this.recordId = dcn_reference;\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n url += this.isOldpcipaloff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n url += this.isNewpcipaloff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}&dcn=${this.recordId}${url}`);\n }\n\n loadUnsolicitedPage(viewName: string, dcn_reference:any) {\n this.recordId = dcn_reference;\n this.paymentLibComponent.bspaymentdcn = this.recordId;\n this.paymentLibComponent.viewName = viewName;\n }\n\n unprocessedPaymentSelectEvent(selectedRecordReference: any) {\n this.isUnprocessedRecordSelected = true;\n this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit(selectedRecordReference);\n }\n\n resetButtons() {\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n }\n\n goToAllocatePage(dcn_reference:any) {\n this.paymentLibComponent.bspaymentdcn = dcn_reference;\n this.paymentLibComponent.unProcessedPaymentServiceId = this.serviceId\n this.paymentLibComponent.isTurnOff = this.ISTURNOFF;\n this.paymentLibComponent.isNewPcipalOff = this.ISNEWPCIPALOFF;\n this.paymentLibComponent.isOldPcipalOff = this.ISOLDPCIPALOFF;\n this.paymentLibComponent.ISSFENABLE = this.isStFixEnable;\n\n if(this.ISTURNOFF) {\n this.paymentLibComponent.paymentGroupReference = this.PAYMENTREF;\n this.paymentLibComponent.viewName = 'fee-summary';\n }else {\n this.paymentLibComponent.paymentGroupReference = null;\n this.paymentLibComponent.viewName = 'allocate-payments';\n }\n\n }\n\n validateButtons() {\n if ( this.isUnprocessedRecordSelected && this.isExceptionCase) {\n this.isMarkAsUnidentifiedbtnEnabled = true;\n } else if ( this.isUnprocessedRecordSelected && !this.isExceptionCase && !this.FEE_RECORDS_EXISTS) {\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = true;\n } else if( this.isUnprocessedRecordSelected && !this.isExceptionCase && this.FEE_RECORDS_EXISTS ) {\n if(!this.ISTURNOFF) {\n this.isAllocateToExistingFeebtnEnabled = true;\n this.isAllocatedToNewFeebtnEnabled = false;\n } else {\n this.isAllocateToExistingFeebtnEnabled = this.IS_OS_AMT_AVAILABLE;\n this.isAllocatedToNewFeebtnEnabled = true;\n }\n }\n }\n\n unprocessedPaymentUnSelectEvent(event: any) {\n event.preventDefault();\n this.recordId = null;\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n //this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit('');\n }\n\n showDetailRow(event: any,obj: any, i: any) {\n event.preventDefault();\n \n this.unassignedRecordSelectedList = obj;\n \n }\n}\n","import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport {IPayment} from '../../interfaces/IPayment';\nimport {Router} from '@angular/router';\n\n@Component({\n selector: 'ccpay-app-processed-payments',\n templateUrl: './processed-payments.component.html',\n styleUrls: ['./processed-payments.component.scss']\n})\nexport class ProcessedPaymentsComponent implements OnInit {\n\n @Input('NONPAYMENTS') NONPAYMENTS: IPayment[];\n @Output() goToPaymentViewComponent: EventEmitter<any> = new EventEmitter();\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService\n ) { }\n ngOnInit() {\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n redirectToPaymentViewPage(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent.emit({paymentGroupReference, paymentReference, paymentMethod});\n }\n}\n","\nexport class IAllocationPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n reason: string;\n explanation: string;\n user_name: string;\n constructor(payment_group_reference: string, payment_reference : string, reason? : string, explanation? : string, userName? : string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Allocated\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.reason = reason ? reason : null;\n this.explanation = explanation ? explanation : null;\n this.user_name = userName ? userName : null;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {CaseTransactionsService} from '../../services/case-transactions/case-transactions.service'; \nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport {IBSPayments} from '../../interfaces/IBSPayments';\nimport {AllocatePaymentRequest} from '../../interfaces/AllocatePaymentRequest';\nimport {IAllocationPaymentsRequest} from '../../interfaces/IAllocationPaymentsRequest';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n\n\n@Component({\n selector: 'app-allocate-payments',\n templateUrl: './allocate-payments.component.html',\n styleUrls: ['./allocate-payments.component.scss']\n})\nexport class AllocatePaymentsComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() caseType: string;\n\n overUnderPaymentForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n recordId:string;\n feedbackUrlLabel:string;\n unAllocatedPayment: IBSPayments = {\n amount: 0\n };\n siteID: string = null;\n errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n paymentGroup: IPaymentGroup;\n paymentGroups: IPaymentGroup[] = [];\t\n remainingAmount: number;\n isRemainingAmountGtZero: boolean;\n isMoreDetailsBoxHide: boolean = true;\n isRemainingAmountLtZero: boolean;\n afterFeeAllocateOutstanding: number;\n amountForAllocation: number;\n isConfirmButtondisabled: boolean = false;\n isContinueButtondisabled: boolean = true;\n otherPaymentExplanation: string = null;\n selectedOption: string = null;\n isFeeAmountZero: boolean = false;\t\n\n paymentReasonHasError: boolean = false;\n paymentExplanationHasError: boolean = false;\n isPaymentDetailsEmpty: boolean = false;\n isPaymentDetailsInvalid: boolean = false;\n paymentDetailsMinHasError: boolean = false;\n paymentDetailsMaxHasError: boolean = false;\n isUserNameEmpty: boolean = false;\n isUserNameInvalid: boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n paymentReason: string = null;\n paymentExplanation: string = null;\n userName: string = null;\n paymentSectionLabel: any;\n paymentRef: string = null;\n isStrategicFixEnable: boolean = true;\n orderLevelFees: IOrderReferenceFee[] = [];\n cookieUserName: string[] = [];\n enCookieUserName: any;\n userNameField: string = null;\n\n reasonList: { [key: string]: { [key: string]: string } }= {\n overPayment: {\n hwfReward: 'Help with Fees (HWF) awarded. Please include the HWF reference number in the explanatory note',\n wrongFee: 'Incorrect payment received',\n notIssueCase: 'Unable to issue case',\n otherDeduction: 'Other'\n },\n shortFall: {\n helpWithFee: 'Help with Fees (HWF) application declined',\n wrongFee: 'Incorrect payment received',\n other: 'Other'\n }\n }\n explanationList = {\n overPayment: {\n referRefund: 'Details in case notes. Refund due',\n noRefund: 'Details in case notes. No refund due',\n noCase: 'No case created. Refund due',\n other: 'Other'\n },\n shortFall: {\n holdCase: 'I have put a stop on the case and contacted the applicant requesting the balance of payment',\n heldCase: 'I have put a stop on the case. The applicant needs to be contacted to request the balance of payment',\n other: 'Other'\n }\n }\n\n refund = {\n reason: {\n duplicate: 'Duplicate payment',\n humanerror: 'Human error',\n caseWithdrawn: 'Case withdrawn',\n other: 'Other'\n }\n }\n\n\n constructor(\n private errorHandlerService: ErrorHandlerService,\n private caseTransactionsService: CaseTransactionsService,\n private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n if (this.paymentLibComponent.paymentGroupReference !== null) {\n this.viewStatus = 'allocatePaymentConfirmation';\n }\n \n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.paymentRef = this.paymentLibComponent.paymentGroupReference;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.isTurnOff = this.paymentLibComponent.isTurnOff;\n this.overUnderPaymentForm = this.formBuilder.group({\n moreDetails: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n userName: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s]*)$')\n ])),\n });\n this.OrderslistService.getOrdersList().subscribe( (data) =>\n this.orderLevelFees = data.filter(data => data.orderStatus !== 'Paid'));\n this.OrderslistService.getCaseType().subscribe( (data) => this.caseType = data);\n this.getUnassignedPayment();\n }\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n }\n\n getPaymentGroupDetails(){\n\n if(!this.isTurnOff){\n this.paymentViewService.getPaymentGroupDetails(this.paymentRef).subscribe(\n paymentGroup => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.paymentGroup = paymentGroup;\n this.saveAndContinue();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.paymentGroups = paymentGroups['payment_groups'].filter(paymentGroup => {\n paymentGroup.fees.forEach(fee => {\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true\n }\n });\n let fstCon = this.getGroupOutstandingAmount(<IPaymentGroup>paymentGroup),\n scndCn = fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero) && paymentGroup.payment_group_reference === this.paymentRef;\n return this.paymentRef ? scndCn : fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero);\n });\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }\n\n }\n\n selectedPaymentGroup(paymentGroup: IPaymentGroup) {\t\n this.isContinueButtondisabled = false;\t\n this.paymentGroup = paymentGroup;\t\n }\t\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n\n gotoSummaryPage(event: any) { \n event.preventDefault();\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n\n cancelAllocatePayment(event: any){\n event.preventDefault();\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n if(!this.isTurnOff){\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n } else {\n this.viewStatus = 'mainForm';\t\n }\n }\n confirmAllocatePayement(){\n this.enCookieUserName = document.cookie.split(\";\").find(row => row.includes(\"user-info\")).split(\"=\")[1].split(\";\");\n this.cookieUserName = JSON.parse(decodeURIComponent(this.enCookieUserName));\n \n const fullName = this.cookieUserName['forename'] + ' ' + this.cookieUserName['surname'];\n\n const paymentDetailsField = this.overUnderPaymentForm.controls.moreDetails,\n paymentFormError = this.overUnderPaymentForm.controls.moreDetails.errors,\n userNameField = fullName,\n isEmptyCondtion = this.paymentReason && this.paymentExplanation,\n isOtherOptionSelected = this.paymentExplanation === 'Other';\n\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n if ( (!this.isRemainingAmountGtZero && !this.isRemainingAmountLtZero) || isEmptyCondtion && (!isOtherOptionSelected && userNameField.length > 0 || isOtherOptionSelected && userNameField.length > 0 && paymentDetailsField.valid)) {\n this.isConfirmButtondisabled = true;\n this.otherPaymentExplanation = this.paymentExplanation === 'Other' ? paymentDetailsField.value : this.paymentExplanation;\n this.userName = userNameField;\n this.finalServiceCall();\n }else {\n if(!this.paymentReason) {\n this.resetForm([true, false, false, false, false, false, false, false], 'reason');\n }\n if(!this.paymentExplanation) {\n this.resetForm([false, true, false, false, false, false, false, false], 'explanation');\n }\n if(this.paymentExplanation && isOtherOptionSelected) {\n if(paymentDetailsField.value == '' ) {\n this.resetForm([false, false, true, false, false, false, false, false], 'other');\n }\n if(paymentDetailsField.value != '' && paymentDetailsField.invalid ) {\n this.resetForm([false, false, false, true, false, false, false, false], 'other');\n }\n if(paymentFormError && paymentFormError.minlength && paymentFormError.minlength.actualLength < 3 ) {\n this.resetForm([false, false, false, false, true, false, false, false], 'other');\n }\n if(paymentFormError && paymentFormError.maxlength && paymentFormError.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, false, false, true, false, false], 'other');\n }\n }\n if(userNameField.length === 0) {\n this.resetForm([false, false, false, false, false, false, true, false], 'username');\n }\n }\n }\n resetForm(vals, field) {\n if(field==='reason' || field==='all') {\n this.paymentReasonHasError = vals[0];\n }\n if(field==='explanation' || field==='all') {\n this.paymentExplanationHasError = vals[1];\n }\n if(field==='other' || field==='all') {\n this.isPaymentDetailsEmpty = vals[2];\n this.isPaymentDetailsInvalid = vals[3];\n this.paymentDetailsMinHasError = vals[4];\n this.paymentDetailsMaxHasError = vals[5];\n }\n if(field==='username' || field==='all') {\n this.isUserNameEmpty = vals[6];\n this.isUserNameInvalid = vals[7];\n }\n }\n finalServiceCall() {\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n reason: this.paymentReason,\n allocation_status:'Allocated',\n explanation: this.otherPaymentExplanation,\n payment_allocation_status: {\n description: '',\n name: 'Allocated'\n },\n payment_group_reference: this.paymentGroup.payment_group_reference,\n case_type: this.caseType,\n user_name: this.userName\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unAllocatedPayment, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSPaymentStrategic(postStrategicBody , this.paymentGroup.payment_group_reference).subscribe(\n res => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n });\n\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response1 = JSON.parse(res1);\n if (response1.success) {\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unAllocatedPayment, this.siteID, this.exceptionReference);\n this.bulkScaningPaymentService.postBSAllocatePayment(requestBody, this.paymentGroup.payment_group_reference).subscribe(\n res2 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response2 = JSON.parse(res2);\n const reqBody = new IAllocationPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, this.paymentReason, this.otherPaymentExplanation, this.userName);\n if (response2.success) {\n this.paymentViewService.postBSAllocationPayments(reqBody).subscribe(\n \n res3 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n ); \n }\n }\n\n saveAndContinue(){\n if(this.paymentGroup) {\n this.isMoreDetailsBoxHide = true;\n this.overUnderPaymentForm.get('moreDetails').reset();\n this.overUnderPaymentForm.get('moreDetails').setValue('');\n this.overUnderPaymentForm.get('userName').reset();\n this.overUnderPaymentForm.get('userName').setValue('');\n this.paymentReason = '';\n this.paymentExplanation = '';\n let GroupOutstandingAmount = this.getGroupOutstandingAmount(this.paymentGroup);\n const remainingToBeAssigned = this.unAllocatedPayment.amount - GroupOutstandingAmount;\n this.isRemainingAmountGtZero = remainingToBeAssigned > 0;\n this.isRemainingAmountLtZero = remainingToBeAssigned < 0;\n this.paymentSectionLabel = this.isRemainingAmountGtZero ? { \n title: 'There is an Over payment of',\n reason: 'Provide a reason. This will be used in the Refund process.',\n }: this.isRemainingAmountLtZero ? { \n title: 'There is an Under payment of',\n reason: 'Provide a reason',\n }: { \n title:'Amount left to be allocated',\n reason:'',\n };\n this.feedbackUrlLabel = this.isRemainingAmountGtZero ? 'CONFIRMALLOCATION_SURPLUS' : this.isRemainingAmountLtZero ? 'CONFIRMALLOCATION_SHORTFALL' : 'CONFIRMALLOCATION';\n this.remainingAmount = this.isRemainingAmountGtZero ? remainingToBeAssigned : this.isRemainingAmountLtZero ? remainingToBeAssigned * -1 : 0;\n this.afterFeeAllocateOutstanding = remainingToBeAssigned >= 0 ? 0 : (remainingToBeAssigned * -1);\n this.amountForAllocation = GroupOutstandingAmount >= this.unAllocatedPayment.amount ? this.unAllocatedPayment.amount : GroupOutstandingAmount;\n if(this.isTurnOff){\n this.viewStatus = 'allocatePaymentConfirmation';\t\n }\n }\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.unAllocatedPayment = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n this.getPaymentGroupDetails();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }\n selectRadioButton(key, type) {\n this.isMoreDetailsBoxHide = true;\n if( type === 'explanation' && key === 'other' ){\n this.isPaymentDetailsEmpty = false;\n this.isPaymentDetailsInvalid = false;\n this.paymentDetailsMinHasError = false;\n this.paymentDetailsMaxHasError = false;\n this.isMoreDetailsBoxHide = false;\n }\n }\n OrderListSelectEvent(orderef: any){\n this.isContinueButtondisabled = false;\n this.recordId= orderef;\n }\n\n redirectToOrderFeeSearchPage() {\n // this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = this.recordId;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n}\n}\n","import { IFee } from './IFee';\n\nexport class AddRemissionRequest {\n beneficiary_name: string;\n ccd_case_number: string;\n fee: IFee;\n hwf_amount: number;\n hwf_reference: string;\n payment_group_reference: string;\n case_type: string;\n\n constructor(ccd_case_number: string, fee: IFee, hwf_amount: number, hwf_reference: string, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.fee = fee;\n this.hwf_amount = hwf_amount;\n this.hwf_reference = hwf_reference;\n this.case_type = caseType;\n }\n}\n","export class AddRetroRemissionRequest {\n hwf_amount: number;\n hwf_reference: string;\n\n constructor(hwf_amount: number, hwf_reference: string) {\n this.hwf_amount = hwf_amount;\n this.hwf_reference = hwf_reference;\n }\n}\n","export class PostRefundRetroRemission {\n payment_reference: string;\n refund_reason: string;\n \n constructor(payment_reference : string, refund_reason : string) {\n this.payment_reference= payment_reference;\n this.refund_reason = refund_reason;\n } \n}","export class PostIssueRefundRetroRemission {\n remissionReference: string;\n \n constructor(remissionReference : string) {\n this.remissionReference= remissionReference;\n } \n}","import { Component, OnInit, Input, Output, EventEmitter} from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl, RequiredValidator } from '@angular/forms';\nimport { IFee } from '../../interfaces/IFee';\nimport {Router} from '@angular/router';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { RefundsRequest } from '../../interfaces/RefundsRequest';\nimport { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';\nimport { IssueRefundRequest } from '../../interfaces/IssueRefundRequest';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\nimport { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';\nimport {ChangeDetectorRef} from '@angular/core';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { OrderslistService } from '../../services/orderslist.service';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-add-remission',\n templateUrl: './add-remission.component.html',\n styleUrls: ['./add-remission.component.scss']\n})\nexport class AddRemissionComponent implements OnInit {\n @Input() fee: IFee;\n @Input() payment: IPayment;\n @Input() remission: IRemission;\n @Input() ccdCaseNumber: string;\n @Input() caseType: string;\n @Input() viewCompStatus: string;\n @Input() paymentGroupRef: string;\n @Input() isTurnOff: boolean;\n @Input() isRefundRemission: boolean;\n @Input() isOldPcipalOff: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() isStrategicFixEnable: boolean;\n @Input() paidAmount: any;\n @Input() isFromRefundListPage: boolean;\n @Input() isFromPaymentDetailPage: boolean;\n @Input() isFromServiceRequestPage: boolean;\n @Input() feeamount: number;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input('orderDetail') orderDetail: any[];\n @Input('orderRef') orderRef: string;\n @Input('orderStatus') orderStatus: string;\n @Input('orderParty') orderParty: string;\n @Input('orderCreated') orderCreated: Date;\n @Input('orderCCDEvent') orderCCDEvent: string;\n @Input('takepayment') takePayment: boolean;\n @Input('orderFeesTotal') orderFeesTotal: number;\n @Input('orderTotalPayments') orderTotalPayments: number;\n @Input('orderRemissionTotal') orderRemissionTotal: number;\n @Output() cancelRemission: EventEmitter<void> = new EventEmitter();\n //@Output() refundListReason: EventEmitter<any> = new EventEmitter({reason:string, code:string});\n @Output() refundListReason = new EventEmitter<{reason: string, code: string}>();\n @Output() refundListAmount: EventEmitter<string> = new EventEmitter();\n\n refund = {\n reason: {\n duplicate: 'Duplicate payment',\n humanerror: 'Human error',\n caseWithdrawn: 'Case withdrawn',\n other: 'Other'\n }\n }\n\n remissionForm: FormGroup;\n hasErrors = false;\n viewStatus = 'main';\n errorMessage = null;\n option: string = null;\n isConfirmationBtnDisabled: boolean = false;\n bsPaymentDcnNumber: string;\n selectedValue = 'yes';\n amount: any;\n retroRemission: boolean = false;\n remissionReference: string = '';\n refundReference: string;\n refundAmount: string;\n paymentExplanationHasError: boolean = false;\n refundReason:string;\n selectedRefundReason: string;\n displayRefundReason: string;\n refundCode:string;\n remessionPayment:IPayment;\n isRemissionCodeEmpty: boolean = false;\n remissionCodeHasError: boolean = false;\n isAmountEmpty: boolean = false;\n isReasonEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n refundHasError:boolean = false;\n isPaymentSuccess: boolean = false;\n isRemissionApplied: boolean = false;\n remissionamt:number;\n // refundReasons: any[] = [];\n commonRefundReasons: any[] = [];\n showReasonText: boolean;\n isRefundReasonsSelected: boolean;\n default: string;\n reasonLength: number;\n refundReasons:IRefundReasons[];\n pattern1: string;\n pattern2: string;\n sendOrderDetail: any[];\n sendOrderRef: string;\n component: { account_number: string; amount: number; case_reference: string; ccd_case_number: string; channel: string; currency: string; customer_reference: string; date_created: string; date_updated: string; description: string; method: string; organisation_name: string; payment_allocation: any[]; reference: string; service_name: string; site_id: string; status: string; };\n\n constructor(private formBuilder: FormBuilder,\n private router: Router,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private refundService: RefundsService,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.default = 'Select a different reason';\n this.pattern1 = '^([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})$';\n this.pattern2 = '^([A-Za-z]{2}[0-9]{2})-([0-9]{6})$';\n if(this.viewCompStatus !== '' && this.viewCompStatus !== undefined){\n this.viewStatus = '';\n }\n if(this.remission) {\n }\n if(this.fee) {\n this.amount = (this.fee.volume * this.fee.calculated_amount);\n }\n if (this.payment){\n this.remessionPayment = this.payment;\n if(this.payment.status === 'Success') {\n this.isPaymentSuccess = true;\n }\n }\n this.option = this.paymentLibComponent.SELECTED_OPTION;\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.remissionForm = this.formBuilder.group({\n remissionCode: new FormControl('', \n Validators.compose([\n Validators.required,\n Validators.pattern(`(${this.pattern1})|(${this.pattern2})`)\n ]) \n ),\n amount: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[0-9]+(\\.[0-9]{1,2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n refundDDReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl()\n });\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundDDReason'].setValue('Select a different reason', {onlySelf: true});\n \n if(this.viewCompStatus === ''){\n this.viewStatus = 'main';\n }\n \n if(this.viewCompStatus === 'issuerefund'){\n this.refundService.getRefundReasons().subscribe(\n refundReasons => { \n this.refundReasons = refundReasons.filter((data) => data.recently_used === false);\n this.refundReasons = this.refundReasons.filter((data) => data.name !== 'Retrospective remission');\n this.cd.detectChanges();\n this.commonRefundReasons = refundReasons.filter((data) => data.recently_used === true);\n this.commonRefundReasons.sort((a, b) => a.toString().localeCompare(b));\n this.cd.detectChanges();\n } );\n }\n \n if(this.viewCompStatus === 'processretroremissonpage' && this.isFromRefundListPage){\n this.viewStatus = 'processretroremissonpage';\n }\n\n }\n\n addRemission() {\n this.resetRemissionForm([false, false, false, false, false, false], 'All');\n const remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount > remissionctrls.amount.value; \n this.remissionForm.controls['refundReason'].setErrors(null);\n this.remissionForm.controls['refundDDReason'].setErrors(null);\n if (this.remissionForm.dirty && this.remissionForm.valid && isRemissionLessThanFee) {\n this.viewStatus = 'confirmation';\n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false, false], 'amount');\n }\n if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true, false], 'amount');\n }\n }\n }\n\n confirmRemission() {\n this.isConfirmationBtnDisabled = true;\n const newNetAmount = this.remissionForm.controls.amount.value,\n remissionAmount = this.fee.net_amount - newNetAmount,\n requestBody = new AddRemissionRequest\n (this.ccdCaseNumber, this.fee, remissionAmount, this.remissionForm.controls.remissionCode.value, this.caseType);\n this.paymentViewService.postPaymentGroupWithRemissions(decodeURIComponent(this.paymentGroupRef).trim(), this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response).success) {\n let LDUrl = this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable'\n LDUrl += `&caseType=${this.caseType}`\n LDUrl += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable'\n LDUrl += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable'\n if (this.paymentLibComponent.bspaymentdcn) {\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(`/payment-history/${this.ccdCaseNumber}?view=fee-summary&selectedOption=${this.option}&paymentGroupRef=${this.paymentGroupRef}&dcn=${this.paymentLibComponent.bspaymentdcn}${LDUrl}`);\n }else {\n this.gotoCasetransationPage();\n }\n\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n }\n );\n }\n\n resetRemissionForm(val, field){\n if (field==='All'){\n this.isRemissionCodeEmpty = val[0];\n this.remissionCodeHasError = val[1];\n this.isAmountEmpty = val[2];\n this.amountHasError = val[3];\n this.isRemissionLessThanFeeError = val[4];\n this.isReasonEmpty = val[5];\n } else if(field==='remissionCode' || field==='All') {\n this.isRemissionCodeEmpty = val[0];\n this.remissionCodeHasError = val[1];\n } else if (field==='amount' || field==='All'){\n this.isAmountEmpty = val[2];\n this.amountHasError = val[3];\n this.isRemissionLessThanFeeError = val[4];\n } else if (field==='reason' || field==='All'){\n this.isReasonEmpty = val[5];\n }\n }\n\n // Add retro remission changes\n addRemissionCode() {\n this.errorMessage = false;\n this.viewStatus = '';\n this.isRefundRemission = false;\n this.resetRemissionForm([false, false, false, false, false, false], 'All');\n const remissionctrls=this.remissionForm.controls\n // isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value; \n this.remissionForm.controls['refundReason'].setErrors(null);\n this.remissionForm.controls['refundDDReason'].setErrors(null);\n this.remissionForm.controls['amount'].setErrors(null);\n if (this.remissionForm.dirty && this.remissionForm.valid ) {\n this.viewCompStatus = '';\n this.viewStatus = \"processretroremissonpage\";\n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false], 'amount');\n }\n if(remissionctrls['reason'].value == '') {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n }\n if(remissionctrls.amount.valid){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n }\n \n }\n }\n\n\n gotoAddRetroRemissionCodePage() {\n this.errorMessage = false;\n if(this.isRefundRemission) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListAmount.emit();\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n }\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n } \n this.viewStatus = '';\n this.selectedValue = 'yes';\n this.viewCompStatus = \"addremission\";\n this.isRefundRemission = true;\n this.errorMessage = '';\n if(this.isFromPaymentDetailPage) {\n this.paymentLibComponent.viewName = 'payment-view';\n }\n }\n\n gotoCheckRetroRemissionPage(payment: IPayment) {\n this.paymentLibComponent.iscancelClicked = false;\n this.errorMessage = '';\n this.resetRemissionForm([false, false, false, false, false], 'All');\n if( !this.isRefundRemission) {\n var remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value; \n if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' || remissionctrls['amount'].value < 0) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, false, false, true, false], 'amount');\n } else if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n }\n }\n } else {\n var remissionctrls=this.remissionForm.controls;\n //if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' || remissionctrls['amount'].value < 0 ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n this.refundListAmount.emit(remissionctrls['amount'].value);\n }\n //}\n \n }\n }\n\n gotoProcessRetroRemissionPage() {\n this.viewStatus = '';\n this.viewCompStatus = 'addremission';\n this.isRefundRemission = true;\n this.errorMessage = '';\n }\n\n confirmRetroRemission() {\n if(!this.isConfirmationBtnDisabled) {\n this.retroRemission = true;\n this.remissionamt = this.remissionForm.controls.amount.value;\n const requestBody = new AddRetroRemissionRequest(this.remissionamt,this.remissionForm.controls.remissionCode.value )\n this.paymentViewService.postPaymentGroupWithRetroRemissions(decodeURIComponent(this.paymentGroupRef).trim(), this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.isRemissionApplied = true;\n this.viewCompStatus = '';\n this.viewStatus = 'retroremissionconfirmationpage';\n this.remissionReference =JSON.parse(response).remission_reference;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n }\n );\n }\n }\n\n processRefund() {\n this.errorMessage = '';\n this.isConfirmationBtnDisabled = true;\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n if (this.remissionReference === undefined || this.remissionReference === '') {\n this.remissionReference = this.remission.remission_reference;\n }\n const requestBody = new PostIssueRefundRetroRemission(this.remissionReference);\n this.paymentViewService.postRefundRetroRemission(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n })\n }\n\n // Issue Refund changes\n\n gotoIssueRefundConfirmation(payment: IPayment) {\n this.paymentLibComponent.iscancelClicked = false;\n if(this.paymentLibComponent.REFUNDLIST === \"true\") {\n this.isFromRefundListPage = true; \n }\n this.errorMessage = '';\n this.refundReason = this.remissionForm.controls['refundReason'].value === null ? this.remissionForm.controls['refundDDReason'].value : this.remissionForm.controls['refundReason'].value;\n if(!this.refundReason || this.refundReason === 'Select a different reason') {\n this.refundHasError = true;\n } else if(this.selectedRefundReason.includes('Other') && (this.remissionForm.controls['reason'].value == '' || this.remissionForm.controls['reason'].value == null)) {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n } else if (this.selectedRefundReason.includes('Other') && this.remissionForm.controls['reason'].value !== '') {\n this.refundHasError = false;\n this.refundReason += '-' + this.remissionForm.controls['reason'].value;\n this.displayRefundReason = this.selectedRefundReason + '-' + this.remissionForm.controls['reason'].value;\n if ( this.isFromRefundListPage ) {\n this.refundListReason.emit({reason: this.displayRefundReason, code: this.refundReason});\n } else {\n this.viewCompStatus = '';\n this.viewStatus = 'checkissuerefundpage';\n }\n \n } else {\n this.displayRefundReason = this.selectedRefundReason;\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n } else {\n this.viewCompStatus = '';\n this.viewStatus = 'checkissuerefundpage';\n }\n \n }\n }\n\n gotoIssueRefundPage() {\n this.errorMessage = '';\n this.viewCompStatus = 'issuerefund';\n this.viewStatus = '';\n this.isRefundRemission = true;\n this.errorMessage = false;\n this.refundHasError = false;\n this.isReasonEmpty = false;\n }\n\n changeIssueRefundReason() {\n // this.remissionForm.controls['refundReason'].setValue('Duplicate payment');\n this.errorMessage = '';\n this.refundHasError = false;\n this.isReasonEmpty = false;\n this.viewCompStatus = 'issuerefund';\n this.viewStatus = '';\n this.isRefundRemission = true;\n }\n\n confirmIssueRefund() {\n this.isConfirmationBtnDisabled = true;\n this.errorMessage = '';\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n \n const requestBody = new PostRefundRetroRemission(this.payment.reference,this.refundReason);\n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference =JSON.parse(response).refund_reference;\n if(JSON.parse(response).refund_amount) {\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n })\n }\n\n// Retro Refund\n\n confirmRetroRefund() {\n this.isConfirmationBtnDisabled = true;\n this.errorMessage = '';\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n\n const requestBody = new PostRefundRetroRemission(this.payment.reference,'RR004-Retrospective remission');\n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'retrorefundconfirmationpage';\n this.refundReference =JSON.parse(response).refund_reference;\n if(JSON.parse(response).refund_amount) {\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n });\n }\n\n selectRadioButton(key, value) {\n localStorage.setItem(\"myradio\", key);\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundDDReason'].setValue('Select a different reason', {onlySelf: true});\n remissionctrls['reason'].reset();\n this.isRefundReasonsSelected = true;\n this.errorMessage = false;\n this.isReasonEmpty = false;\n this.showReasonText = false;\n this.refundHasError = false;\n this.selectedRefundReason = key;\n if(this.selectedRefundReason.includes('Other')) {\n this.showReasonText = true;\n this.refundHasError = false;\n this.refundReason = key;\n }\n }\n\n selectchange(args) {\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundReason'].reset();\n remissionctrls['reason'].reset();\n this.isRefundReasonsSelected = false;\n this.showReasonText = false;\n this.refundHasError = false;\n this.selectedRefundReason = args.target.options[args.target.options.selectedIndex].id;\n this.reasonLength = (29-this.selectedRefundReason.split('- ')[1].length);\n\n if(this.selectedRefundReason.includes('Other')) {\n this.showReasonText = true;\n this.refundHasError = false;\n this.refundReason = args.target.options[args.target.options.selectedIndex].id;\n }\n\n\n }\n\n gotoServiceRequestPage(event: any) {\n this.errorMessage ='';\n event.preventDefault();\n if (this.isFromServiceRequestPage && !this.isFromPaymentDetailPage) {\n this.viewStatus = 'order-full-view';\n this.viewCompStatus = '';\n } else if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n } else {\n this.paymentLibComponent.paymentMethod = this.payment.method;\n this.paymentLibComponent.paymentGroupReference = this.paymentLibComponent.paymentGroupReference\n this.paymentLibComponent.paymentReference = this.payment.reference;\n this.paymentLibComponent.viewName = 'payment-view';\n this.OrderslistService.setOrderRef(this.orderRef);\n this.OrderslistService.setorderCCDEvent(this.orderCCDEvent);\n this.OrderslistService.setorderCreated(this.orderCreated);\n this.OrderslistService.setorderDetail(this.orderDetail);\n this.OrderslistService.setorderParty(this.orderParty);\n this.OrderslistService.setorderTotalPayments(this.orderTotalPayments);\n this.OrderslistService.setorderRemissionTotal(this.orderRemissionTotal);\n this.OrderslistService.setorderFeesTotal(this.orderFeesTotal);\n this.viewStatus = 'payment-view';\n this.sendOrderDetail = this.orderDetail;\n this.sendOrderRef = this.orderRef;\n if(this.LOGGEDINUSERROLES === undefined) {\n this.OrderslistService.getUserRolesList().subscribe((data) => this.LOGGEDINUSERROLES = data);\n }\n this.viewCompStatus = '';\n }\n // if (this.paymentLibComponent.TAKEPAYMENT === undefined && this.paymentLibComponent.SERVICEREQUEST === undefined) {\n // this.paymentLibComponent.SERVICEREQUEST = 'false';\n // this.paymentLibComponent.TAKEPAYMENT = false;\n // }\n // if (this.isFromServiceRequestPage) {\n // //this.paymentLibComponent.TAKEPAYMENT = false;\n // this.paymentLibComponent.isFromRefundStatusPage = false;\n // this.viewStatus = 'main'\n // this.paymentLibComponent.viewName = 'case-transactions';\n // this.OrderslistService.setisFromServiceRequestPage(true);\n // this.OrderslistService.setnavigationPage('servicerequestpage');\n // }\n // if ( this.isFromRefundListPage ) {\n // this.paymentLibComponent.iscancelClicked = true;\n // this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n // this.paymentLibComponent.isFromRefundStatusPage = true;\n // } \n // if(!this.paymentLibComponent.isFromRefundStatusPage) {\n // if(this.payment) {\n // this.OrderslistService.setpaymentPageView({method: this.payment.method,payment_group_reference: this.paymentGroupRef, reference:this.payment.reference});\n // }\n // if (this.isFromServiceRequestPage) { \n // this.OrderslistService.setnavigationPage('servicerequestpage');\n // } else {\n // this.OrderslistService.setnavigationPage('paymentdetailspage');\n // }\n // this.errorMessage = '';\n // this.paymentLibComponent.viewName = 'case-transactions';\n // // this.paymentLibComponent.TAKEPAYMENT = true;\n // this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n // this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n // this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n // this.paymentLibComponent.isFromServiceRequestPage = true; \n // this.paymentLibComponent.ISBSENABLE = true;\n // let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n // partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n // partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n // partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n // partUrl += `&caseType=${this.caseType}`;\n // partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n // partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n // if(this.isFromPaymentDetailPage) {\n // partUrl += this.paymentLibComponent.isFromPaymentDetailPage\n // }\n // if(!this.paymentLibComponent.TAKEPAYMENT) {\n // this.paymentLibComponent.TAKEPAYMENT = undefined;\n // }\n // if ( this.paymentLibComponent.SERVICEREQUEST) {\n // const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&selectedOption=${this.option}${partUrl}`;\n // this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n // this.router.onSameUrlNavigation = 'reload';\n // this.router.navigateByUrl(url);\n // } else {\n // const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n // this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n // this.router.onSameUrlNavigation = 'reload';\n // this.router.navigateByUrl(url);\n // }\n \n // } else {\n // this.paymentLibComponent.viewName === 'refundstatuslist';\n // this.paymentLibComponent.isFromRefundStatusPage = true;\n // }\n }\n\n gotoCasetransationPage() {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.errorMessage = '';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.VIEW = 'case-transactions';\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n this.paymentLibComponent.isFromServiceRequestPage = true; \n this.resetOrderData();\n let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n\n gotoCasetransationPageCancelBtnClicked(event: Event) {\n event.preventDefault();\n if( !this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.VIEW ='case-transactions';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n // this.OrderslistService.setnavigationPage('casetransactions');\n // this.OrderslistService.setisFromServiceRequestPage(false);\n // this.paymentLibComponent.VIEW ='case-transactions';\n // this.paymentLibComponent.viewName = 'case-transactions';\n // this.paymentLibComponent.ISBSENABLE = true;\n // this.paymentLibComponent.isRefundStatusView = false;\n // this.resetOrderData(); let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n // partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n // partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n // partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n // partUrl += `&caseType=${this.caseType}`;\n // partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n // partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n // const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n // this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n // this.router.onSameUrlNavigation = 'reload';\n // this.router.navigateByUrl(url);\n } else { \n\n if (this.paymentLibComponent.REFUNDLIST) {\n this.paymentLibComponent.viewName = 'refund-list';\n return;\n }\n if (this.paymentLibComponent.TAKEPAYMENT === undefined && this.paymentLibComponent.SERVICEREQUEST === undefined) {\n this.paymentLibComponent.SERVICEREQUEST = 'false';\n }\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.OrderslistService.setpaymentPageView({method: '',payment_group_reference: '', reference:''});\n this.OrderslistService.setnavigationPage('casetransactions');\n this.errorMessage = '';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n this.paymentLibComponent.isFromServiceRequestPage = true; \n this.paymentLibComponent.ISBSENABLE = true;\n let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n if(this.isFromPaymentDetailPage) {\n partUrl += this.paymentLibComponent.isFromPaymentDetailPage\n }\n\n if(!this.paymentLibComponent.SERVICEREQUEST) {\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n } else {\n const url =`/payment-history/${this.ccdCaseNumber}?selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n }\n \n }\n\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n\n\n getFormattedCurrency(currency:number){\n if(currency.toString().includes(\".\")){\n return currency\n }\n return currency.toString().concat(\".00\");\n }\n \n}","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'ccdHyphens'\n})\nexport class CcdHyphensPipe implements PipeTransform {\n constructor() {}\n transform(value: any, args?: any): any {\n const pattern = /^([0-9]{4})+([0-9]{4})+([0-9]{4})+([0-9]{4})$/;\n if ( value.match(pattern)) {\n return value.replace(pattern,'$1-$2-$3-$4') \n }\n return value;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'capitalize'\n})\nexport class CapitalizePipe implements PipeTransform {\n constructor() { }\n transform(s: any, args?: any): any {\n return s && s[0].toUpperCase() + s.slice(1) || \"\";\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'keyValue'\n})\nexport class keyValuePipe implements PipeTransform {\n constructor() {}\n transform(input: any): any {\n let keys = [];\n for (let key in input) {\n if (input.hasOwnProperty(key)) {\n keys.push({ key: key, value: input[key]});\n }\n }\n return keys;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\nimport { DomSanitizer, SafeHtml } from '@angular/platform-browser';\n\n@Pipe({ name: 'sanitizeHtml' })\nexport class SanitizeHtmlPipe implements PipeTransform {\n constructor(private sanitizer: DomSanitizer) {}\n transform(value: any): SafeHtml {\n return this.sanitizer.bypassSecurityTrustHtml(value);\n }\n}\n","import { Injectable } from '@angular/core';\nimport * as FileSaver from 'file-saver';\nimport * as XLSX from 'xlsx';\nimport * as XLSXStyle from 'xlsx-style';\n\n\nconst EXCEL_TYPE = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8';\nconst EXCEL_EXTENSION = '.xlsx';\n\n@Injectable()\nexport class XlFileService {\n\n constructor() { }\n\n public exportAsExcelFile(json: any[], excelFileName: string): void {\n let worksheet: XLSX.WorkSheet; \n let workbook: XLSX.WorkBook; \n\n if(excelFileName.match('Data_Loss')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['loss_resp','payment_asset_dcn','env_ref','env_item','resp_service_id','resp_service_name','date_banked','bgc_batch','payment_method','amount']});\n worksheet = this.setDataLossReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Unprocessed')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','exception_ref','ccd_ref','date_banked','bgc_batch','payment_asset_dcn','env_ref','env_item','payment_method','amount']});\n worksheet = this.setUnprocessedReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Processed_Unallocated')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','allocation_status','receiving_office','allocation_reason','ccd_exception_reference','ccd_case_reference','payment_asset_dcn','env_ref','env_item','date_banked','bgc_batch','payment_method','amount']});\n worksheet = this.setProcessedUnallocatedReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else {\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','surplus_shortfall','balance','payment_amount','ccd_case_reference', 'ccd_exception_reference', 'processed_date', 'reason', 'explanation', 'user_name']});\n worksheet = this.setShortFallReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n }\n workbook = { Sheets: { 'data': worksheet }, SheetNames: ['data'] };\n const excelBuffer: any = XLSX.write(workbook, { bookType: 'xlsx', type: 'array' });\n this.saveAsExcelFile(excelBuffer, excelFileName);\n }\n\n\nprivate autoFitColumns (worksheet: XLSX.WorkSheet,json:any) : XLSX.WorkSheet {\n let objectMaxLength = []; \n let ColWidth = [];\n let obj = <any>Object;\n for (let i = 0; i < json.length; i++) {\n let value = obj.values(json[i]);\n let key = obj.keys(json[i]);\n for (let j = 0; j < value.length; j++) {\n if(value[j] === null){\n value[j] = '';\n }\n objectMaxLength[j] =\n key[j].length >= value[j].length\n ? key[j].length+2\n : value[j].length+1;\n if( value[j].length === undefined){\n objectMaxLength[j] = key[j].length+2;\n }\n ColWidth.push({'width': +objectMaxLength[j]});\n }\n }\n worksheet['!cols'] = ColWidth;\n return worksheet;\n}\n\n\nprivate setDataLossReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Loss_Resp\";\n worksheet.B1.v = \"Payment_Asset_DCN\";\n worksheet.C1.v = \"Envelope_Ref\";\n worksheet.D1.v = \"Envelope_Item\";\n worksheet.E1.v = \"Resp_Service ID\";\n worksheet.F1.v = \"Resp_Service Name\";\n worksheet.G1.v = \"Date_Banked\";\n worksheet.H1.v = \"BGC_Batch\";\n worksheet.I1.v = \"Payment_Method\";\n worksheet.J1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setUnprocessedReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Exception_Ref\";\n worksheet.D1.v = \"CCD_Ref\";\n worksheet.E1.v = \"Date_Banked\";\n worksheet.F1.v = \"BGC_Batch\";\n worksheet.G1.v = \"Payment_Asset_DCN\";\n worksheet.H1.v = \"Envelope_Ref\";\n worksheet.I1.v = \"Envelope_Item\";\n worksheet.J1.v = \"Payment_Method\";\n worksheet.K1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setProcessedUnallocatedReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Allocation_Status\";\n worksheet.D1.v = \"Receiving_Office\";\n worksheet.E1.v = \"Allocation_Reason\";\n worksheet.F1.v = \"CCD_Exception_Ref\";\n worksheet.G1.v = \"CCD_Case_Ref\";\n worksheet.H1.v = \"Payment_Asset_DCN\";\n worksheet.I1.v = \"Envelope_Ref\";\n worksheet.J1.v = \"Envelope_Item\";\n worksheet.K1.v = \"Date_Banked\";\n worksheet.L1.v = \"BGC_Batch\";\n worksheet.M1.v = \"Payment_Method\";\n worksheet.N1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setShortFallReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Over Payment_Under Payment\";\n worksheet.D1.v = \"Balance\";\n worksheet.E1.v = \"Payment_Amount\";\n worksheet.F1.v = \"CCD_Case_Ref\";\n worksheet.G1.v = \"Exception_Ref\";\n worksheet.H1.v = \"Processed_Date\";\n worksheet.I1.v = \"Reason\";\n worksheet.J1.v = \"Explanation\";\n worksheet.K1.v = \"Updated Name\";\n return worksheet;\n}\n\nprivate saveAsExcelFile(buffer: any, fileName: string): void {\n const data: Blob = new Blob([buffer], {\n type: EXCEL_TYPE\n });\n FileSaver.saveAs(data, fileName + EXCEL_EXTENSION);\n }\n}\n","import { Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormGroup, FormControl } from '@angular/forms';\nimport { formatDate } from \"@angular/common\";\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {XlFileService} from '../../services/xl-file/xl-file.service';\n\n@Component({\n selector: 'ccpay-reports',\n templateUrl: './reports.component.html',\n styleUrls: ['./reports.component.scss']\n})\nexport class ReportsComponent implements OnInit {\n reportsForm: FormGroup;\n startDate: string;\n endDate: string;\n ccdCaseNumber: string;\n isDownLoadButtondisabled:Boolean = false;\n isStartDateLesthanEndDate: Boolean = false;\n isDateRangeBetnWeek: Boolean = false;\n errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n paymentGroups: IPaymentGroup[] = [];\n\n constructor(\n private xlFileService: XlFileService,\n private errorHandlerService: ErrorHandlerService,\n private formBuilder: FormBuilder,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private paymentViewService: PaymentViewService) { }\n \n\n ngOnInit() {\n this.fromValidation();\n\n }\n\n getToday(): string {\n return new Date().toISOString().split('T')[0];\n }\n\n getSelectedFromDate(): void {\n this.validateDates(this.reportsForm.get('selectedreport').value);\n }\n\n validateDates(reportName){\n const selectedStartDate = this.tranformDate(this.reportsForm.get('startDate').value),\n selectedEndDate = this.tranformDate(this.reportsForm.get('endDate').value);\n const isDateRangeMoreThanWeek = (<any>new Date(selectedStartDate) - <any>new Date(selectedEndDate))/(1000 * 3600 * -24) > 7;\n if(new Date(selectedStartDate) > new Date(selectedEndDate) && selectedEndDate !== ''){\n this.reportsForm.get('startDate').setValue('');\n this.isDateRangeBetnWeek = false;\n this.isStartDateLesthanEndDate = true;\n } else if(reportName && reportName ==='SURPLUS_AND_SHORTFALL' && isDateRangeMoreThanWeek ) {\n this.isDateRangeBetnWeek = true;\n this.isStartDateLesthanEndDate = false;\n } else {\n this.isDateRangeBetnWeek = false;\n this.isStartDateLesthanEndDate = false;\n }\n\n }\n\n fromValidation() {\n this.reportsForm = this.formBuilder.group({\n selectedreport: new FormControl('') ,\n startDate: new FormControl(''),\n endDate: new FormControl('') \n });\n}\n\ndownloadReport(){\n this.isDownLoadButtondisabled = true;\n const dataLossRptDefault = [{loss_resp:'',payment_asset_dcn:'',env_ref:'',env_item:'',resp_service_id:'',resp_service_name:'',date_banked:'',bgc_batch:'',payment_method:'',amount:''}],\n unProcessedRptDefault = [{resp_service_id:'',resp_service_name:'',exception_ref:'',ccd_ref:'',date_banked:'',bgc_batch:'',payment_asset_dcn:'',env_ref:'',env_item:'',payment_method:'',amount:''}],\n processedUnallocated =[{resp_service_id:'',resp_service_name:'',allocation_status:'',receiving_office:'',allocation_reason:'',ccd_exception_ref:'',ccd_case_ref:'',payment_asset_dcn:'',env_ref:'',env_item:'',date_banked:'',bgc_batch:'',payment_method:'',amount:'',updated_by:''}],\n shortFallsRptDefault = [{resp_service_id:'',resp_service_name:'',surplus_shortfall:'',balance:'',payment_amount:'',ccd_case_reference:'',ccd_exception_reference:'',processed_date:'', reason:'', explanation:'', user_name:''}],\n selectedReportName = this.reportsForm.get('selectedreport').value,\n selectedStartDate = this.tranformDate(this.reportsForm.get('startDate').value),\n selectedEndDate = this.tranformDate(this.reportsForm.get('endDate').value);\n\n if(selectedReportName === 'PROCESSED_UNALLOCATED' || selectedReportName === 'SURPLUS_AND_SHORTFALL' ){\n this.paymentViewService.downloadSelectedReport(selectedReportName,selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n const result = JSON.parse(response);\n let res= {data: this.applyDateFormat(result)};\n if(res['data'].length === 0 && selectedReportName === 'PROCESSED_UNALLOCATED' ){\n res.data= processedUnallocated;\n } else if(res['data'].length === 0 && selectedReportName === 'SURPLUS_AND_SHORTFALL' ) {\n res.data= shortFallsRptDefault;\n } \n if(result['data'].length > 0) {\n for( var i=0; i< res['data'].length; i++) {\n if(res['data'][i][\"payment_asset_dcn\"] !== undefined) {\n res['data'][i]['env_ref'] = res['data'][i][\"payment_asset_dcn\"].substr(0,13);\n res['data'][i]['env_item'] = res['data'][i][\"payment_asset_dcn\"].substr(13,21);\n }\n if(res['data'][i][\"amount\"] !== undefined) {\n res['data'][i]['amount'] = this.convertToFloatValue(res['data'][i]['amount']);\n }\n if(res['data'][i][\"balance\"] !== undefined) {\n res['data'][i]['balance'] = this.convertToFloatValue(res['data'][i][\"balance\"]);\n }\n let Op = res['data'][i][\"surplus_shortfall\"];\n if(Op !== undefined) {\n res['data'][i]['surplus_shortfall'] = Op ==\"Surplus\" ? \"Over payment\":\"Under payment\";\n }\n if(res['data'][i][\"payment_amount\"] !== undefined) {\n res['data'][i]['payment_amount'] = this.convertToFloatValue(res['data'][i]['payment_amount']);\n }\n }\n } \n this.isDownLoadButtondisabled = false;\n this.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate));\n },\n (error: any) => {\n this.isDownLoadButtondisabled = false;\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n })\n } else {\n this.bulkScaningPaymentService.downloadSelectedReport(selectedReportName,selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n const result = JSON.parse(response);\n let res = {data: this.applyDateFormat(result)};\n if(res['data'].length === 0 && selectedReportName === 'DATA_LOSS' ){\n res.data= dataLossRptDefault;\n } else if(res['data'].length === 0 && selectedReportName === 'UNPROCESSED'){\n res.data = unProcessedRptDefault;\n }\n if(result['data'].length > 0) {\n for( var i=0; i< res['data'].length; i++) {\n if(res['data'][i][\"amount\"] !== undefined) {\n res['data'][i]['amount'] = this.convertToFloatValue(res['data'][i]['amount']);\n }\n if(res['data'][i][\"payment_asset_dcn\"] !== undefined) {\n res['data'][i]['env_ref'] = res['data'][i][\"payment_asset_dcn\"].substr(0,13);\n res['data'][i]['env_item'] = res['data'][i][\"payment_asset_dcn\"].substr(13,21);\n }\n }\n }\n this.isDownLoadButtondisabled = false;\n this.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate ));\n },\n (error: any) => {\n this.isDownLoadButtondisabled = false;\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n })\n }\n }\n\n getFileName(selectedOption: string, startDate: string, endDate: string ) {\n const loc = 'en-US',\n stDt = formatDate(startDate, 'ddMMyy', loc),\n enDt = formatDate(endDate, 'ddMMyy', loc),\n now = new Date(),\n currentDate = formatDate(now, 'ddMMyy', loc),\n timestamp = `${currentDate}_${this.getTwodigit(now.getHours())}${this.getTwodigit(now.getMinutes())}${this.getTwodigit(now.getSeconds())}`,\n selectedOptionTxt = this.getCamelCaseString(selectedOption);\n \n return selectedOptionTxt+'_'+stDt+'_To_'+enDt+'_Run_'+ timestamp;\n } \n tranformDate(strDate: string) {\n let result = '';\n if (strDate) {\n let parts = strDate.split('-');\n result = `${parts[1]}/${parts[2]}/${parts[0]}`;\n }\n return result;\n }\n getTwodigit(input: number){\n return (\"0\" + input).slice(-2);\n }\n getCamelCaseString(selectedOption) {\n let result;\n switch(selectedOption) { \n case 'UNPROCESSED': { \n result = 'Unprocessed';\n break; \n } \n case 'DATA_LOSS': { \n result = 'Data_Loss';\n break; \n } \n case 'PROCESSED_UNALLOCATED': { \n result = 'Processed_Unallocated';\n break; \n } \n case 'SURPLUS_AND_SHORTFALL': { \n result = 'Over Payment_Under Payment';\n break; \n } \n default: { \n result = selectedOption;\n break; \n } \n } \n return result;\n }\n applyDateFormat(res) {\n const fmt = 'dd/MM/yyyy',\n loc = 'en-US';\n return res['data'].map(value => {\n if (value['date_banked']) {\n value['date_banked'] = formatDate(value['date_banked'], fmt, loc);\n }\n return value;\n });\n }\n \n convertToFloatValue(amt) {\n return amt ? Number.parseFloat(amt).toFixed(2): '0.00';\n }\n}\n","import {Component, ViewChild, Input, ChangeDetectorRef} from '@angular/core';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport { MatTableDataSource} from '@angular/material/table';\nimport {MatSort } from '@angular/material/sort';\nimport {Sort } from '@angular/material/sort';\nimport {MatPaginator } from '@angular/material/paginator';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { THIS_EXPR } from '@angular/compiler/src/output/output_ast';\nimport { ActivatedRoute,Router } from '@angular/router';\n@Component({\n selector: 'ccpay-table',\n templateUrl: './table.component.html',\n styleUrls: ['./table.component.css']\n})\nexport class TableComponent {\n @Input('DATASOURCE') DATASOURCE: any[];\n @Input('STATUS') STATUS: string;\n @Input('errorMessage') errorMessage: string;\n isApprovalFlow: boolean;\n // displayedColumns = ['ccdCaseNumber', 'refundReference', 'reason', 'createBy', 'updateDate', 'Action'];\n displayedColumns = ['ccd_case_number', 'refund_reference', 'user_full_name','date_created', 'date_updated', 'Action'];\n \n dataSource: MatTableDataSource<any>;\n userLst;\n 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 { IRefundReasons } from '../../interfaces/IRefundReasons';\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() isOldPcipalOff: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: 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 allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n\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 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 }\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\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\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 } 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\n servicerequest: string;\n // ccdCaseNumber: string;\n excReference: string;\n paymentGroups: any[] = [];\n payments: IPayment[] = [];\n nonPayments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n fees: IFee[] = [];\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalNonOffPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n paymentRef: string;\n isTurnOff: boolean;\n isNewPcipalOff: boolean;\n isRefundRemission: boolean = true;\n isOldPcipalOff: boolean;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = true;\n isExceptionRecord: boolean = false;\n isUnprocessedRecordSelected: boolean = false;\n exceptionRecordReference: string;\n isAnyFeeGroupAvilable: boolean = true;\n isHistoricGroupAvailable: boolean = false;\n isBulkScanEnable;\n isRemissionsMatch: boolean;\n isRemoveBtnDisabled: boolean = false;\n feeId: IFee;\n clAmountDue: number = 0;\n unprocessedRecordCount: number;\n isFeeRecordsExist: boolean = false;\n isGrpOutstandingAmtPositive: boolean = false;\n totalRefundAmount: Number;\n caseType: String;\n // lsCcdNumber: any = ls.get<any>('ccdNumber');\n payment: IPayment;\n paymentGroup: IPaymentGroup;\n paymentView: IPaymentView;\n\n\n isAddRemissionEnable: boolean = false;\n orderRemissionDetails: any[] = [];\n orderLevelFees: IOrderReferenceFee[] = [];\n cpoDetails: any = null;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n\n isCPODown: boolean;\n test: boolean;\n isPBA: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n isAddRemissionBtnEnabled: boolean = false;\n isRefundRemissionBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n isFromServiceRequestPage: boolean;\n navigationpage: string;\n remissionFeeAmt: number;\n\n constructor(\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private OrderslistService: OrderslistService,\n private router: Router) { }\n\n ngOnInit() {\n if (this.viewStatus === undefined) {\n this.viewStatus = this.paymentLibComponent.viewName;\n }\n if(this.paymentLibComponent.isFromServiceRequestPage && this.paymentLibComponent.isFromPaymentDetailPage) {\n if(this.paymentLibComponent.isFromPaymentDetailPage && this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.getorderRefs().subscribe((data) => this.orderRef = data);\n this.OrderslistService.getorderCCDEvents().subscribe((data) => this.orderCCDEvent = data);\n this.OrderslistService.getorderCreateds().subscribe((data) => this.orderCreated = data);\n this.OrderslistService.getorderDetail().subscribe((data) => this.orderDetail = data);\n this.OrderslistService.getorderPartys().subscribe((data) => this.orderParty = data);\n this.OrderslistService.getorderRemissionTotals().subscribe((data) => this.orderRemissionTotal = data);\n this.OrderslistService.getorderFeesTotals().subscribe((data) => this.orderFeesTotal = data);\n this.OrderslistService.getoorderTotalPaymentss().subscribe((data) => this.orderTotalPayments = data);\n }\n }\n // if (this.takePayment) {\n // this.paymentLibComponent.TAKEPAYMENT = this.takePayment;\n // }\n }\n\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n this.OrderslistService.setnavigationPage('servicerequestpage');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isTakePayment = this.paymentLibComponent.TAKEPAYMENT;\n if (this.takePayment) {\n this.paymentLibComponent.isTakePayment = this.takePayment;\n }\n this.paymentLibComponent.SERVICEREQUEST = \"true\";\n this.paymentLibComponent.isFromServiceRequestPage = false;\n if(this.isServiceRequest !== 'false') {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n }\n this.paymentLibComponent.isFromRefundStatusPage = false;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.resetOrderData();\n let partUrl = this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n if(this.isServiceRequest === 'false') {\n partUrl += this.paymentLibComponent.TAKEPAYMENT ? '&takePayment=true' : '&takePayment=false';\n }\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += this.isServiceRequest !== 'false' ? '&servicerequest=true' : '&servicerequest=false';\n partUrl += `&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n const url = `/payment-history/${this.paymentLibComponent.CCD_CASE_NUMBER}?view=case-transactions&selectedOption=${this.paymentLibComponent.SELECTED_OPTION}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund()) {\n if (this.orderDetail[0]['remissions'].length > 0) {\n for (const remission of this.orderDetail[0]['remissions']) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n }\n return true;\n } else {\n return false;\n }\n }\n\n chkForPBAPayment(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n this.paymentLibComponent.paymentReference = payment.reference;\n this.isPBA = true;\n }\n });\n }\n });\n if (this.isPBA) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n addRemission(fee: IFee) {\n if(this.chkForAddRemission(fee.code)) {\n this.feeId = fee;\n this.viewStatus = 'addremission';\n this.payment = this.orderDetail[0].payments[0];\n this.paymentViewService.getApportionPaymentDetails(this.orderDetail[0].payments[0].reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n this.viewStatus = 'addrefundforremission';\n \n this.payment = payment;\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.payment.reference));\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n cancelRemoval() {\n this.viewStatus = 'main';\n }\n\n removeFee(fee: any) {\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n window.location.reload();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n this.isIssueRefunfBtnEnable = true;\n }\n if (this.isIssueRefunfBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n if (payment !== null && payment !== undefined) {\n let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\n }\n }\n\n issueRefund(payment: IPayment) {\n if (payment !== null && payment !== undefined) {\n if(this.chkIssueRefundBtnEnable(payment)) {\n this.viewStatus = 'issuerefund';\n this.payment = payment;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.isRefundRemission = true;\n }\n }\n }\n goToServiceRequestPage(event: any) {\n event.preventDefault();\n this.isFromServiceRequestPage = true;\n this.viewStatus = 'main'\n this.paymentLibComponent.viewName = 'case-transactions';\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\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 \n constructor(account_number : string, amount : string, customer_reference: string) {\n this.account_number = account_number;\n this.amount = amount;\n this.currency = 'GBP';\n this.customer_reference = customer_reference;\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 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\n isContinueButtondisabled: boolean = true;\n isPBAAccountPaymentSuccess: boolean = false;\n pbaAccountrPaymentResult: any;\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.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.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 saveAndContinue() {\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);\n this.paymentViewService.postPBAaccountPayment(this.pbaPayOrderRef.orderRefId, requestBody)\n .subscribe(\n r => {\n this.pbaAccountrPaymentResult = JSON.parse(r).data;\n this.isPBAAccountPaymentSuccess = true;\n },\n e => {\n if(e.status == '402') {\n this.isInSufficiantFund = true;\n } else if(e.status == '410' || e.status == '412') {\n this.isPBAAccountNotExist = true;\n } else {\n this.isPBAServerError = true;\n }\n }\n );\n } else {\n this.isPBAServerError = true;\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 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","Injectable","args","providedIn","OrderslistService","setOrdersList","orderLevelFees","ordersList","next","Object","assign","getOrdersList","setRefundView","refundList","refundView","getRefundView","setCaseType","caseType","getCaseType","setCCDCaseNumber","ccdCaseNumber","getCCDCaseNumber","setFeeExists","feeExists","getFeeExists","setisFromServiceRequestPage","isFromServiceRequestPage","getisFromServiceRequestPages","setOrderRefId","OrderRefId","getSelectedOrderRefId","setnavigationPage","navigationPage","getnavigationPageValue","setpaymentPageView","paymentpageList","paymentPageView","getpaymentPageView","setUserRolesList","rolesList","getUserRolesList","setorderDetail","orderDetail","getorderDetail","setOrderRef","orderRef","getorderRefs","setorderCCDEvent","orderCCDEvent","getorderCCDEvents","setorderCreated","orderCreated","getorderCreateds","setorderParty","orderParty","getorderPartys","setorderRemissionTotal","orderRemissionTotal","getorderRemissionTotals","setorderFeesTotal","orderFeesTotal","getorderFeesTotals","setorderTotalPayments","orderTotalPayments","getoorderTotalPaymentss","BehaviorSubject","getcaseType","asObservable","getFeeExist","getCCDCaseNumberforRefund","getisFromServiceRequestPage","getOrderRefId","getnavigationPage","getorderRef","getorderCCDEvent","getorderCreated","getorderParty","getorderRemissionTotal","getorderFeesTotal","getorderTotalPayments","PaymentLibComponent","ngAfterContentChecked","cd","detectChanges","ngOnInit","paymentLibService","LOGGEDINUSERROLES","length","PAYMENT_GROUP_REF","paymentGroupReference","DCN_NUMBER","bspaymentdcn","REFUNDLIST","VIEW","viewName","isTakePayment","TAKEPAYMENT","Component","selector","template","ChangeDetectorRef","Input","unProcessedPaymentServiceId","unProcessedPayment","orderPendingPayments","ErrorHandlerService","handleError","err","errorMessage","error","Error","message","status","undefined","JSON","parse","statusCode","messsage","stringify","_throw","getServerErrorMessage","isErrorExist","title","body","showError","LoggerService","invokeConsoleMethod","type","PaymentListService","getPaymentByCcdCaseNumber","paymentMethod","logger","info","http","get","withCredentials","pipe","catchError","errorHandlerService","HttpClient","PaymentListComponent","_this","paymentListService","paymentLibComponent","CCD_CASE_NUMBER","PAYMENT_METHOD","subscribe","payments","loadPaymentViewComponent","paymentReference","__values","o","s","Symbol","iterator","m","i","call","value","done","TypeError","WebComponentHttpClient","post","url","options","opts","addHeaders","put","delete","patch","csrfToken","meta","getTag","headers","forEach","element","document","cookie","split","find","row","startsWith","content","HttpHeaders","responseType","Meta","PaymentViewService","getPaymentDetails","getPaymentGroupDetails","getApportionPaymentDetails","getPBAaccountDetails","postWays2PayCardPayment","serviceRef","https","postPBAaccountPayment","postBSPayments","postBSUnidentifiedPayments","postBSUnsolicitedPayments","postBSAllocationPayments","postPaymentGroupWithRemissions","feeId","deleteFeeFromPaymentGroup","postPaymentToPayHub","paymentGroupRef","postPaymentAntennaToPayHub","downloadSelectedReport","reportName","startDate","endDate","getBSfeature","getSiteID","getPartyDetails","caseNumber","postRefundsReason","postPaymentGroupWithRetroRemissions","postRefundRetroRemission","PaymentViewComponent","selectedOption","SELECTED_OPTION","dcnNumber","isTurnOff","ISTURNOFF","serviceReference","viewStatus","paymentViewService","paymentGroup","fees","fee","isRemissionsMatch","remissions","rem","fee_code","code","push","filter","paymentGroupObj","includes","paymentAllocation","payment_allocation","isStatusAllocated","allocation_status","defineProperty","method","channel","goToPaymentList","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","isAddFeeBtnEnabled","allowedRolesToAccessRefund","some","role","indexOf","tmp4DayAgo","Date","setDate","getDate","date_created","RefundsService","getRefundReasons","getRefundRejectReasons","getRefundActions","refundReference","patchRefundActions","reviewerAction","getRefundList","refundstatus","selfexclusive","getRefundStatusHistory","getRefundStatusList","getUserDetails","postIssueRefund","patchResubmitRefund","refund_reference","ProcessRefundComponent","refundActionList","getErrorMessage","processRefundForm","formBuilder","group","refundActionField","FormControl","Validators","compose","required","refundRejectReasonField","sendMeBackField","minLength","maxLength","pattern","enterReasonField","refundlistsource","ccd_case_number","isFromRefundListPage","checkRefundActions","refundActionsHasError","isReasonFieldEmpty","isReasonEmpty","isReasonInvalid","refundRejectReasonHasError","isConfirmButtondisabled","isSendMeBackClicked","isRejectClicked","isOtherClicked","refundRejectReasonList","processRefundSubmit","processRefundRequest","resetForm","controls","processFormError","errors","dirty","valid","reason","response","isSuccesspageEnable","successMsg","replace","invalid","minlength","actualLength","maxlength","errorMsg","bodyTxt","loadRefundListPage","navigationpage","isRefundStatusView","loadRefundsHomePage","redirecttoRefundListPage","vals","field","isReasonFieldInvalid","reasonFieldMinHasError","reasonFieldMaxHasError","goToCaseReview","router","navigate","relativeTo","activeRoute","FormBuilder","Router","ActivatedRoute","sendmeback","RefundListComponent","userLst","isAuthorized","isApproveTableVisible","tableApprovalHeader","tableRejectedHeader","refundService","approvalStatus","submittedRefundList","rejectStatus","rejectedRefundList","isRejectTableVisible","CardDetailsService","getCardDetails","CardDetailsComponent","cardDetailsService","cardDetails","pageTitle","PageNotFoundComponent","StatusHistoryService","getPaymentStatusesByReference","StatusHistoryComponent","statusHistoryService","statuses","PbaDetailsComponent","noop","ConsoleLoggerService","console","log","apply","CaseTransactionsService","getPaymentGroups","BulkScaningPaymentService","getBSPaymentsByCCD","getBSPaymentsByDCN","dcn","postBSAllocatePayment","paymentRef","postBSPaymentStrategic","postBSWoPGStrategic","patchBSChangeStatus","calculateOutStandingAmount","feesTotal","paymentsTotal","remissionsTotal","calculated_amount","toUpperCase","amount","hwf_amount","removeUnwantedString","input","replaceText","CaseTransactionsComponent","paymentView","payment_group_reference","goToPayementView","isGrpOutstandingAmtPositive","CASETYPE","EXC_REFERENCE","excReference","takePayment","servicerequest","SERVICEREQUEST","serviceRequestValue","isBulkScanEnable","isNewPcipalOff","ISNEWPCIPALOFF","isOldPcipalOff","ISOLDPCIPALOFF","isStrategicFixEnable","ISSFENABLE","caseTransactionsService","paymentGroups","isAnyFeeGroupAvilable","calculateAmounts","calculateOrderFeesAmounts","totalRefundAmount","calculateRefundAmount","cpoDetails","setDefaults","isCPODown","goToOrderViewDetailSection","checkForExceptionRecord","totalPayments","totalRemissions","totalNonOffPayments","totalFees","getAllocationStatus","bulkScaningPaymentService","recordData","exception_record_reference","ccd_reference","isExceptionRecord","case_reference","resetOrderVariables","orderStatus","orderAddBtnEnable","orderRefId","orderTotalFees","orderReferenceObj","x","redirectToOrderFeeSearchPage","orderef","nonOffLinePayment","a","b","amount_due","clAmountDue","allocationLen","nonPayments","allPayments","remisison","totalRefundAmount_1","isFeeAmountZero_1","grpOutstandingAmount","isFeeRecordsExist","isNewPaymentGroup_1","index","isHistoricGroupAvailable","getGroupOutstandingAmount","redirectToFeeSearchPage","navigateByUrl","redirectToremissionPage","redirectToReportsPage","loadFeeSummaryPage","goToPaymentViewComponent","selectedUnprocessedFeeEvent","unprocessedRecordId","isUnprocessedRecordSelected","getUnprocessedFeeCount","unProcessedRecordCount","unprocessedRecordCount","calculateAmountDue","confirmRemoveFee","isRemoveBtnDisabled","cancelRemoval","removeFee","success","window","location","reload","isCheckAmountdueExist","amountDue","isPBA","loadPBAAccountPage","pbaPayOrderRef","isAddRemissionEnable","orderRemissionDetails","ispaymentGroupApisuccess","isAddRemissionBtnEnabled","isEligible4PBAPayment","currentDate","check4AllowedRoles2AccessPBApayment","PaymentToPayhubRequest","currency","description","provider","toFixed","case_type","PayhubAntennaRequest","BS_ENABLE_FLAG","FeeSummaryComponent","bsPaymentDcnNumber","platForm","features","result","feature","uid","enable","getUnassignedPaymentlist","getPaymentGroup","unassignedPayments","service","responsible_service_id","upPaymentErrorMessage","currentFee","isPaymentExist","isRemissionsExist","totalAfterRemission","isFeeAmountZero","outStandingAmount","loadCaseTransactionPage","partUrl","cancelRemission","page","isConfirmationBtnDisabled","requestBody","antennaReqBody","go","payhubHtml","isBackButtonEnable","href","goToAllocatePage","Location","ErrorBannerComponent","UnidentifiedPaymentsRequest","payment_reference","unidentified_reason","payment_allocation_status","name","AllocatePaymentRequest","unAllocatedPayment","exceptionRecord","allocatedRequest","banked_date","date_banked","exception_record","document_control_number","dcn_reference","external_provider","giro_slip_no","bgc_reference","payer_name","payment_channel","payment_status","payment_method","payment_allocation_dto","MarkUnidentifiedPaymentComponent","getUnassignedPayment","markPaymentUnidentifiedForm","investicationDetail","unassignedRecord","siteID","beCcdNumber","beExceptionNumber","exceptionReference","ccdReference","trimUnderscore","saveAndContinue","investicationField","formerror","investigationComment","val","isInvesticationDetailEmpty","investicationDetailHasError","investicationDetailMinHasError","investicationDetailMaxHasError","confirmPayments","postStrategicBody","res1","res2","response2","reqBody","res3","gotoCasetransationPage","user_id","res","cancelMarkUnidentifiedPayments","UnsolicitedPaymentsRequest","responsible_office","responsible_person","email_id","receiving_office","receiving_email_address","sending_email_address","MarkUnsolicitedPaymentComponent","siteids","isContinueButtondisabled","siteIDList","scrollTo","markPaymentUnsolicitedForm","responsibleOffice","responsiblePerson","emailId","selectedSiteId","reasonField","officeIdField","reasonHasError","reasonMinHasError","reasonMaxHasError","isResponsibleOfficeEmpty","responsibleOfficeHasError","cancelMarkUnsolicitedPayments","checkingFormValue","setValue","formFields","valueExists","hasOwnProperty","selectchange","target","selectedSiteName","selectedIndex","text","UnprocessedPaymentsComponent","isNewpcipaloff","isOldpcipaloff","isStFixEnable","FEE_RECORDS_EXISTS","setValuesForUnassignedRecord","emit","unassignedRecordList","unassignedRecordListLength","serviceId","isExceptionCase","unprocessedPaymentSelectEvent","formatUnassignedRecordId","ID","recordId","loadUnsolicitedPage","selectedRecordReference","validateButtons","resetButtons","isAllocateToExistingFeebtnEnabled","isMarkAsUnidentifiedbtnEnabled","isAllocatedToNewFeebtnEnabled","PAYMENTREF","IS_OS_AMT_AVAILABLE","unprocessedPaymentUnSelectEvent","showDetailRow","obj","unassignedRecordSelectedList","Output","EventEmitter","isRecordExist","ProcessedPaymentsComponent","redirectToPaymentViewPage","IAllocationPaymentsRequest","explanation","userName","user_name","AllocatePaymentsComponent","overUnderPaymentForm","moreDetails","fstCon","scndCn","selectedPaymentGroup","gotoSummaryPage","cancelAllocatePayment","confirmAllocatePayement","enCookieUserName","cookieUserName","decodeURIComponent","fullName","paymentDetailsField","paymentFormError","userNameField","isEmptyCondtion","paymentReason","paymentExplanation","isOtherOptionSelected","isRemainingAmountGtZero","isRemainingAmountLtZero","otherPaymentExplanation","finalServiceCall","paymentReasonHasError","paymentExplanationHasError","isPaymentDetailsEmpty","isPaymentDetailsInvalid","paymentDetailsMinHasError","paymentDetailsMaxHasError","isUserNameEmpty","isUserNameInvalid","GroupOutstandingAmount","remainingToBeAssigned","isMoreDetailsBoxHide","reset","paymentSectionLabel","feedbackUrlLabel","remainingAmount","afterFeeAllocateOutstanding","amountForAllocation","selectRadioButton","key","OrderListSelectEvent","reasonList","overPayment","hwfReward","wrongFee","notIssueCase","otherDeduction","shortFall","helpWithFee","other","explanationList","referRefund","noRefund","noCase","holdCase","heldCase","refund","duplicate","humanerror","caseWithdrawn","AddRemissionRequest","hwf_reference","AddRetroRemissionRequest","PostRefundRetroRemission","refund_reason","PostIssueRefundRetroRemission","remissionReference","AddRemissionComponent","default","pattern1","pattern2","viewCompStatus","volume","remessionPayment","isPaymentSuccess","option","remissionForm","remissionCode","refundReason","refundDDReason","onlySelf","refundReasons","recently_used","commonRefundReasons","sort","toString","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","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","isDateRangeBetnWeek","isStartDateLesthanEndDate","selectedreport","downloadReport","isDownLoadButtondisabled","dataLossRptDefault","loss_resp","payment_asset_dcn","env_ref","env_item","resp_service_id","resp_service_name","bgc_batch","unProcessedRptDefault","exception_ref","ccd_ref","processedUnallocated","allocation_reason","ccd_exception_ref","ccd_case_ref","updated_by","shortFallsRptDefault","surplus_shortfall","balance","payment_amount","ccd_case_reference","ccd_exception_reference","processed_date","selectedReportName","applyDateFormat","substr","convertToFloatValue","Op","xlFileService","getFileName","loc","stDt","formatDate","enDt","now","timestamp","getTwodigit","getHours","getMinutes","getSeconds","getCamelCaseString","strDate","parts","map","amt","Number","parseFloat","TableComponent","STATUS","toLowerCase","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","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","ServiceRequestComponent","isServiceRequest","goToServiceRequestPage","IserviceRequestCardPayment","language","IserviceRequestPbaPayment","account_number","customer_reference","PbaPaymentComponent","isGetPBAAccountSucceed","pbaAccountList","organisationEntityResponse","paymentAccount","selectpbaaccount","currentTarget","selectedPbaAccount","pbaAccountRef","isInSufficiantFund","isPBAAccountNotExist","isPBAServerError","isPBAAccountPaymentSuccess","pbaAccountrPaymentResult","e","cardPayment","isCardPaymentSuccess","paymentUrl","next_url","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 CURRENTENV: 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 setCurrentEnv(currentEnvironment: string):void {\n this.CURRENTENV = currentEnvironment;\n }\n getCurrentEnv(): string {\n return this.CURRENTENV;\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 [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'refundstatuslist'\"> </ccpay-refund-status >\n <ccpay-payment-view [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'payment-view'\"\n [isTurnOff]=\"ISTURNOFF\" [isTakePayment]=\"TAKEPAYMENT\" [caseType]=\"CASETYPE\"\n [isOldPcipalOff]=\"ISOLDPCIPALOFF\"\n [isNewPcipalOff]=\"ISNEWPCIPALOFF\"></ccpay-payment-view>\n\n <ccpay-process-refund *ngIf=\"viewName === 'process-refund'\"\n [refundReference]=\"refundReference\"\n [refundlistsource]=\"refundlistsource\"\n ></ccpay-process-refund>\n <ccpay-pba-payment *ngIf=\"viewName === 'pba-payment'\"\n [pbaPayOrderRef]=\"pbaPayOrderRef\"\n ></ccpay-pba-payment>\n <ccpay-case-transactions [isTakePayment]=\"isTakePayment\" [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'case-transactions'\"></ccpay-case-transactions>\n <app-mark-unidentified-payment *ngIf=\"viewName === 'unidentifiedPage'\"\n [caseType]=\"CASETYPE\"></app-mark-unidentified-payment>\n <app-mark-unsolicited-payment *ngIf=\"viewName === 'unsolicitedPage'\"\n [caseType]=\"CASETYPE\"></app-mark-unsolicited-payment>\n <app-allocate-payments *ngIf=\"viewName === 'allocate-payments'\"\n [isTurnOff]=\"ISTURNOFF\"\n [caseType]=\"CASETYPE\"\n ></app-allocate-payments>\n <ccpay-fee-summary *ngIf=\"viewName === 'fee-summary'\"\n [ccdCaseNumber]=\"CCD_CASE_NUMBER\" \n [paymentGroupRef]=\"paymentGroupReference\"\n [isTurnOff]=\"ISTURNOFF\"\n [caseType]=\"CASETYPE\"\n [isOldPcipalOff]=\"ISOLDPCIPALOFF\"\n [isNewPcipalOff]=\"ISNEWPCIPALOFF\"\n ></ccpay-fee-summary>\n <ccpay-reports *ngIf=\"viewName === 'reports'\"></ccpay-reports>\n `\n})\n\nexport class PaymentLibComponent implements OnInit {\n @Input('API_ROOT') API_ROOT: string;\n @Input('BULKSCAN_API_ROOT') BULKSCAN_API_ROOT: string;\n @Input('REFUNDS_API_ROOT') REFUNDS_API_ROOT: string;\n @Input('CURRENTENV') CURRENTENV: string;\n @Input('CCD_CASE_NUMBER') CCD_CASE_NUMBER: string;\n @Input('EXC_REFERENCE') EXC_REFERENCE: string;\n @Input('PAYMENT_METHOD') PAYMENT_METHOD: string;\n @Input('VIEW') VIEW: string;\n @Input('VIEWSERVICE') VIEWSERVICE: string;\n @Input('PAYMENT_GROUP_REF') PAYMENT_GROUP_REF?: string;\n @Input('TAKEPAYMENT') TAKEPAYMENT: boolean;\n @Input('SERVICEREQUEST') SERVICEREQUEST: string;\n @Input('DCN_NUMBER') DCN_NUMBER: string;\n @Input('SELECTED_OPTION') SELECTED_OPTION: string;\n @Input('ISBSENABLE') ISBSENABLE: Boolean;\n @Input('ISSFENABLE') ISSFENABLE: boolean;\n @Input('ISTURNOFF') ISTURNOFF: boolean;\n @Input('CASETYPE') CASETYPE: string;\n @Input('ISOLDPCIPALOFF') ISOLDPCIPALOFF: boolean;\n @Input('ISNEWPCIPALOFF') ISNEWPCIPALOFF: boolean;\n @Input('rootUrl') rootUrl: boolean;\n @Input('REFUNDLIST') REFUNDLIST: string;\n @Input('USERID') USERID: string;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: any[];\n @Input('LOGGEDINUSEREMAIL') LOGGEDINUSEREMAIL: string;\n @Input('isFromServiceRequestPage') isFromServiceRequestPage: boolean;\n\n paymentMethod: string;\n bspaymentdcn: string;\n unProcessedPaymentServiceId: string = null;\n paymentGroupReference: string;\n paymentReference: string;\n refundReference: string;\n refundlistsource: any;\n viewName: string;\n isTurnOff: boolean;\n caseType: string;\n isOldPcipalOff: boolean;\n isNewPcipalOff: boolean;\n unProcessedPayment: IBSPayments = null;\n isRefundStatusView: boolean;\n isRedirectFromCaseTransactionPage: string;\n isCallFromRefundList: boolean;\n isFromRefundStatusPage: boolean;\n iscancelClicked : boolean;\n isFromPaymentDetailPage: boolean;\n pbaPayOrderRef: IPayment;\n isTakePayment: boolean;\n\n orderDetail: any[];\n orderRef: string;\n orderStatus: string;\n orderParty: string;\n orderCreated: Date;\n orderCCDEvent: string;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n orderFeesTotal: number = 0.00;\n orderRemissionTotal: number = 0.00;\n orderTotalPayments: number = 0.00;\n orderPendingPayments: number = 0.00;\n\n constructor(private paymentLibService: PaymentLibService,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) { }\n ngAfterContentChecked(): void {\n this.cd.detectChanges();\n } \n\n\n ngOnInit() {\n this.paymentLibService.setApiRootUrl(this.API_ROOT);\n this.paymentLibService.setBulkScanApiRootUrl(this.BULKSCAN_API_ROOT);\n this.paymentLibService.setRefundndsApiRootUrl(this.REFUNDS_API_ROOT);\n this.paymentLibService.setCurrentEnv(this.CURRENTENV);\n\n if(this.LOGGEDINUSERROLES.length > 0) {\n this.OrderslistService.setUserRolesList(this.LOGGEDINUSERROLES);\n }\n if (this.PAYMENT_GROUP_REF) {\n this.paymentGroupReference = this.PAYMENT_GROUP_REF;\n }\n if (this.DCN_NUMBER) {\n this.bspaymentdcn = this.DCN_NUMBER;\n }\n if (this.REFUNDLIST === \"true\") {\n this.VIEW = 'refund-list';\n this.viewName = this.VIEW;\n }\n if (this.VIEW === 'fee-summary') {\n this.viewName = 'fee-summary';\n } else if (this.VIEW !== 'reports' && this.VIEW !== 'refund-list') {\n this.viewName = 'case-transactions';\n } else {\n this.viewName = this.VIEW;\n }\n\n if (this.isTakePayment) {\n this.TAKEPAYMENT = true;\n }\n }\n}\n","import { Injectable } from '@angular/core';\nimport { _throw } from 'rxjs/observable/throw';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { HttpErrorResponse } from '@angular/common/http';\nimport { stringify } from '@angular/core/src/util';\n\n@Injectable({\n providedIn: 'root'\n})\n\n\nexport class ErrorHandlerService {\n\n constructor() { }\n\n\n handleError(err: HttpErrorResponse): Observable<any> {\n let errorMessage: string;\n if (err.error instanceof Error) {\n // A client-side or network error occurred.\n errorMessage = `An error occurred: ${err.error.message}`;\n } else {\n // The backend returned an unsuccessful response code.\n if (err.status === 404) {\n\n if (typeof err.error === 'string' && err.error !== undefined) {\n \n if(err.error.length > 60) {\n if (JSON.parse(err.error).statusCode !== undefined && JSON.parse(err.error).statusCode === 500)\n {\n errorMessage = 'Internal server error';\n } else {\n if(err.error.length > 60) {\n errorMessage = JSON.parse(err.error).error;\n } else {\n errorMessage = err.error;\n }\n \n }\n } else {\n errorMessage = err.error;\n }\n } else {\n errorMessage = JSON.parse(err.error).error;\n }\n \n }\n else if (err.status === 500) {\n errorMessage = 'Internal server error';\n } else if (err.error.messsage === undefined) {\n if( typeof err.error === 'object') {\n errorMessage = JSON.parse(JSON.stringify(err.error)).error;\n } else {\n if (typeof err.error === 'string' && err.error !== undefined) {\n \n if(err.error.length > 60) {\n if (JSON.parse(err.error).statusCode !== undefined && JSON.parse(err.error).statusCode === 500)\n {\n errorMessage = 'Internal server error';\n } else {\n if(err.error.length > 60) {\n errorMessage = JSON.parse(err.error).error;\n } else {\n errorMessage = err.error;\n }\n \n }\n } else {\n errorMessage = err.error;\n }\n } else {\n errorMessage = JSON.parse(err.error).error;\n }\n \n }\n \n } else {\n if (err.error.message !== undefined) {\n errorMessage = `${err.error.message}`;\n } else {\n errorMessage = `${err.error}`;\n }\n \n }\n }\n return _throw(errorMessage);\n }\n\n\n getServerErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","import { Injectable } from '@angular/core';\n\nconst noop = (): any => undefined;\n\nexport abstract class Logger {\n\n info: any;\n warn: any;\n error: any;\n}\n\n@Injectable({\n providedIn: 'root'\n})\nexport class LoggerService implements Logger {\n\n info: any;\n warn: any;\n error: any;\n\n invokeConsoleMethod(type: string, args?: any): void {}\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\n\nimport { Observable } from 'rxjs/internal/Observable';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { IPayments } from '../../interfaces/IPayments';\nimport { catchError } from 'rxjs/operators';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PaymentListService {\n payments: IPayments;\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n\n getPaymentByCcdCaseNumber(ccdCaseNumber: string, paymentMethod: string): Observable<IPayments> {\n this.logger.info('Payment-list-service getPaymentByCcdCaseNumber for: ', ccdCaseNumber);\n\n return this.http.get<IPayments>(`${this.paymentLibService.API_ROOT}/cases/${ccdCaseNumber}/payments`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import {Component, OnInit} from '@angular/core';\n\nimport {PaymentListService} from '../../services/payment-list/payment-list.service';\nimport {IPayments} from '../../interfaces/IPayments';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport {IStatusHistory} from '../../interfaces/IStatusHistory';\n\n@Component({\n selector: 'ccpay-payment-list',\n templateUrl: './payment-list.component.html',\n styleUrls: ['./payment-list.component.css']\n})\nexport class PaymentListComponent implements OnInit {\n payments: IPayments;\n errorMessage: string;\n code: string;\n\n constructor(private paymentListService: PaymentListService,\n private paymentLibComponent: PaymentLibComponent) {\n }\n\n ngOnInit() {\n this.paymentListService.getPaymentByCcdCaseNumber(this.paymentLibComponent.CCD_CASE_NUMBER, this.paymentLibComponent.PAYMENT_METHOD)\n .subscribe(\n payments => this.payments = payments,\n (error: any) => this.errorMessage = <any>error\n );\n }\n\n loadPaymentViewComponent(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.paymentLibComponent.paymentMethod = paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n}\n","/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Meta } from '@angular/platform-browser';\nimport { Observable } from 'rxjs';\n\n@Injectable()\nexport class WebComponentHttpClient {\n constructor(\n private http: HttpClient,\n private meta: Meta\n ) { }\n\n post(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.post(url, body, opts);\n }\n\n put(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.put(url, body, opts);\n }\n\n get(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.get(url, opts);\n }\n\n delete(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.delete(url, opts);\n }\n \n patch(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.patch(url, body, opts);\n }\n\n addHeaders(options: any): any {\n const csrfToken = this.meta.getTag('name=csrf-token');\n const headers = {};\n \n if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n if (csrfToken === null) {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith(' XSRF-TOKEN')).split('=')[1];\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 body['return-url'] = `https://paybubble.${this.paymentLibService.CURRENTENV}.platform.hmcts.net/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 body['idempotency_key'] = uuidv4(); \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 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}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\nimport { ChangeDetectorRef } from '@angular/core';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-payment-view',\n templateUrl: './payment-view.component.html',\n styleUrls: ['./payment-view.component.css']\n})\nexport class PaymentViewComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() isTakePayment: boolean;\n @Input() caseType: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() isOldPcipalOff: boolean;\n @Input() orderRef: string;\n @Input() orderStatus: string;\n @Input() orderTotalPayments: number;\n @Input() payment: IPayment;\n @Input() LOGGEDINUSERROLES: string[];\n @Input() orderParty: string;\n @Input() orderCreated: Date;\n @Input() orderCCDEvent: string;\n @Input() orderFeesTotal: number;\n @Input() orderRemissionTotal: number;\n @Input() orderDetail: any[];\n\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 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\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\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n\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}","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 headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith(' XSRF-TOKEN')).split('=')[1];\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';\nimport { ServiceRequestComponent } from '../../components/service-request/service-request.component';\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 servicerequest: string;\n ccdCaseNumber: string;\n excReference: string;\n paymentGroups: any[] = [];\n payments: IPayment[] = [];\n nonPayments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n fees: IFee[] = [];\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalNonOffPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n paymentRef: string;\n isTurnOff: boolean;\n isNewPcipalOff: boolean;\n isRefundRemission: boolean = true;\n isOldPcipalOff: boolean;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = true;\n isExceptionRecord: boolean = false;\n isUnprocessedRecordSelected: boolean = false;\n exceptionRecordReference: string;\n isAnyFeeGroupAvilable: boolean = true;\n isHistoricGroupAvailable: boolean = false;\n isBulkScanEnable;\n isRemissionsMatch: boolean;\n 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 \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 this.servicerequest = this.paymentLibComponent.SERVICEREQUEST.toString();\n if (this.paymentLibComponent.SERVICEREQUEST.toString() === 'true') {\n this.serviceRequestValue = 'true';\n } else {\n this.serviceRequestValue = 'false';\n }\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isNewPcipalOff = this.paymentLibComponent.ISNEWPCIPALOFF;\n this.isOldPcipalOff = this.paymentLibComponent.ISOLDPCIPALOFF;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n if (!this.isTurnOff) {\n // if (this.lsCcdNumber !== this.ccdCaseNumber) {\n // this.router.navigateByUrl(`/ccd-search?takePayment=true`);\n // }\n\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.isAnyFeeGroupAvilable =true;\n this.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts();\n this.calculateOrderFeesAmounts();\n this.calculateRefundAmount();\n if (this.isFromServiceRequestPage) {\n this.OrderslistService.getSelectedOrderRefId().subscribe((data) => this.orderRef = data);\n this.goToOrderViewDetailSection(this.orderRef);\n } else {\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).content[0];\n \n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.isCPODown = true;\n }\n );\n \n }\n\n \n },\n (error: any) => {\n this.errorMessage = <any>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.replace(/\"/g,\"\");\n this.setDefaults();\n this.isCPODown = true;\n }\n );\n\n },\n (error: any) => {\n this.errorMessage = <any>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 (this.orderPendingPayments <= 0.00) {\n this.orderStatus = 'Paid';\n this.orderAddBtnEnable = false;\n } else if (this.orderFeesTotal > 0 && (this.orderTotalPayments > 0 || this.orderRemissionTotal > 0) && (this.orderTotalPayments < this.orderPendingPayments)) {\n this.orderStatus = 'Partially paid'\n this.orderAddBtnEnable = true;\n } else {\n this.orderStatus = 'Not paid'\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 });\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 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 paymentGroup.remissions.forEach(rem => {\n if (rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n // if(!fees.find(k => k.code=fee.code))\n // {\n fees.push(fee);\n //}\n }\n });\n\n if (!this.isRemissionsMatch) {\n fees.push(fee);\n }\n\n if (fee.date_created) {\n isNewPaymentGroup = true;\n } else {\n this.isHistoricGroupAvailable = true;\n this.paymentGroups[index]['old'] = true;\n }\n });\n this.paymentGroups[index].fees = fees;\n }\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n }\n grpOutstandingAmount = (feesTotal - remissionsTotal) - paymentsTotal;\n if (grpOutstandingAmount > 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = true;\n this.isFeeRecordsExist = true;\n this.paymentRef = paymentGroup.payment_group_reference;\n }\n if (paymentGroup.fees && paymentGroup.fees.length > 0 && grpOutstandingAmount <= 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = false;\n }\n });\n if ((!isNewPaymentGroup && this.isHistoricGroupAvailable) || (!isNewPaymentGroup && !this.isHistoricGroupAvailable)) {\n this.isAnyFeeGroupAvilable = false;\n }\n } else {\n let totalRefundAmount = 0,\n isFeeAmountZero = false;\n this.paymentGroups.forEach(paymentGroup => {\n let grpOutstandingAmount = 0.00,\n feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00;\n if (paymentGroup.fees) {\n this.isFeeRecordsExist = true;\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n if (fee.calculated_amount === 0) {\n isFeeAmountZero = true\n }\n });\n\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n }\n grpOutstandingAmount = (feesTotal - remissionsTotal) - paymentsTotal;\n if (grpOutstandingAmount < 0) {\n if (totalRefundAmount === 0) {\n totalRefundAmount = grpOutstandingAmount;\n } else {\n totalRefundAmount = (totalRefundAmount + grpOutstandingAmount);\n }\n }\n else if (grpOutstandingAmount > 0 || (grpOutstandingAmount === 0 && isFeeAmountZero)) {\n this.isGrpOutstandingAmtPositive = true;\n }\n });\n return totalRefundAmount * -1;\n }\n }\n\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n }\n\n redirectToFeeSearchPage(event: any) {\n event.preventDefault();\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n url += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n url += `&caseType=${this.caseType}`\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}${url}`);\n }\n\n addRemission(fee: IFee) {\n if(this.chkForAddRemission(fee.code)) {\n this.feeId = fee;\n this.viewStatus = 'addremission';\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error.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\n redirectToReportsPage(event: any) {\n event.preventDefault();\n this.router.navigateByUrl(`/reports?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}`);\n }\n\n loadFeeSummaryPage(paymentGroup: IPaymentGroup) {\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.payment_group_reference;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n\n goToPaymentViewComponent(paymentGroup: any) {\n this.paymentLibComponent.paymentMethod = paymentGroup.paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentGroup.paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n\n goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent({ paymentGroupReference, paymentReference, paymentMethod });\n }\n\n selectedUnprocessedFeeEvent(unprocessedRecordId: string) {\n if (unprocessedRecordId) {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = false;\n }\n this.isUnprocessedRecordSelected = true;\n } else {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = true;\n }\n this.isUnprocessedRecordSelected = false;\n }\n }\n\n getUnprocessedFeeCount(unProcessedRecordCount: number) {\n this.unprocessedRecordCount = unProcessedRecordCount;\n }\n\n calculateAmountDue(fee: IFee) {\n\n if (fee.date_created) {\n return fee.amount_due !== undefined ? fee.amount_due : fee.net_amount;\n } else {\n return \"0.00\";\n }\n }\n\n confirmRemoveFee(fee: IFee) {\n this.isRemoveBtnDisabled = false;\n this.feeId = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n cancelRemoval() {\n this.viewStatus = 'main';\n }\n\n removeFee(fee: any) {\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n window.location.reload();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n\n issueRefund(payment: IPayment) {\n if (payment !== null && payment !== undefined) {\n if(this.chkIssueRefundBtnEnable(payment)) {\n this.viewStatus = 'issuerefund';\n this.payment = payment;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.isRefundRemission = true;\n }\n }\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund()) {\n if (this.orderDetail[0]['remissions'].length > 0) {\n for (const remission of this.orderDetail[0]['remissions']) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n }\n return true;\n } else {\n return false;\n }\n }\n\n chkForPBAPayment(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isPBA = true;\n }\n });\n }\n });\n if (this.isPBA) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n this.isIssueRefunfBtnEnable = true;\n }\n if (this.isIssueRefunfBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n check4AllowedRoles2AccessPBApayment = (): boolean => {\n return this.isEligible4PBAPayment.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n if (payment !== null && payment !== undefined) {\n let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\n }\n }\n\n loadPBAAccountPage(orderRef: IPayment) {\n this.paymentLibComponent.pbaPayOrderRef = orderRef;\n this.paymentLibComponent.viewName = 'pba-payment';\n }\n}","export class PaymentToPayhubRequest {\n currency = 'GBP';\n description = 'PayBubble payment';\n channel = 'telephony';\n provider = 'pci pal';\n case_type: string;\n\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.case_type= caseType;\n }\n}\n","export class PayhubAntennaRequest {\n currency = 'GBP';\n case_type: string;\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.case_type= caseType;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IFee } from '../../interfaces/IFee';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { PayhubAntennaRequest } from '../../interfaces/PayhubAntennaRequest';\nimport { SafeHtml } from '@angular/platform-browser';\nimport {Router} from '@angular/router';\nimport {Location} from '@angular/common';\nimport { OrderslistService } from '../../services/orderslist.service';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-fee-summary',\n templateUrl: './fee-summary.component.html',\n styleUrls: ['./fee-summary.component.scss']\n})\n\nexport class FeeSummaryComponent implements OnInit {\n @Input() paymentGroupRef: string;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: string;\n @Input() caseType: string;\n @Input() isOldPcipalOff: string;\n @Input() isNewPcipalOff: string;\n\n\n bsPaymentDcnNumber: string;\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n viewStatus = 'main';\n currentFee: IFee;\n totalFee: number;\n payhubHtml: SafeHtml;\n service: string = \"\";\n platForm: string = \"\";\n upPaymentErrorMessage: string;\n selectedOption:string;\n isBackButtonEnable: boolean = true;\n outStandingAmount: number;\n isFeeAmountZero: boolean = false;\n totalAfterRemission: number = 0;\n isConfirmationBtnDisabled: boolean = false;\n isRemoveBtnDisabled: boolean = false;\n isPaymentExist: boolean = false;\n isRemissionsExist: Boolean = false;\n isRemissionsMatch = false;\n isStrategicFixEnable: boolean;\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private location: Location,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private OrderslistService: OrderslistService\n ) {}\n\n ngOnInit() {\n this.viewStatus = 'main';\n this.caseType = this.paymentLibComponent.CASETYPE;\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.setCaseType(this.paymentLibComponent.CASETYPE);\n if ((!this.isOldPcipalOff && this.isNewPcipalOff)) {\n this.platForm = '8x8';\n } else if ((this.isOldPcipalOff && !this.isNewPcipalOff)) {\n this.platForm = 'Antenna';\n } else if ((this.isOldPcipalOff && this.isNewPcipalOff)){\n this.platForm = '8x8';\n }\n\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n if (this.bsPaymentDcnNumber) {\n this.getUnassignedPaymentlist();\n }\n this.getPaymentGroup();\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.paymentLibComponent.DCN_NUMBER).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error';\n }\n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error'; \n } \n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n }\n\n }\n\n getRemissionByFeeCode(feeCode: string): IRemission {\n if (this.paymentGroup && this.paymentGroup.remissions && this.paymentGroup.remissions.length > 0) {\n for (const remission of this.paymentGroup.remissions) {\n if (remission.fee_code === feeCode) {\n return remission;\n }\n }\n }\n return null;\n }\n\n addRemission(fee: IFee) {\n this.currentFee = fee;\n this.viewStatus = 'add_remission';\n }\n\n getPaymentGroup() {\n let fees = [];\n this.paymentViewService.getPaymentGroupDetails(this.paymentGroupRef).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n this.isPaymentExist = paymentGroup.payments ? paymentGroup.payments.length > 0 : false;\n this.isRemissionsExist = paymentGroup.remissions ? paymentGroup.remissions.length > 0 : false;\n\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.totalAfterRemission = this.totalAfterRemission + fee.net_amount;\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true;\n }\n this.isRemissionsMatch = false;\n paymentGroup.remissions.forEach(rem => {\n if(rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n \n if(!this.isRemissionsMatch) {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees;\n }\n\n this.outStandingAmount = this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n\n confirmRemoveFee(fee: IFee){\n this.isRemoveBtnDisabled = false;\n this.currentFee = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n removeFee(fee: any){\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n if (this.paymentGroup.fees && this.paymentGroup.fees.length > 1){\n this.totalAfterRemission = 0;\n this.getPaymentGroup();\n this.viewStatus = 'main';\n return;\n }\n this.loadCaseTransactionPage();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n loadCaseTransactionPage() {\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n\n let partUrl = `selectedOption=${this.paymentLibComponent.SELECTED_OPTION}`;\n partUrl +=this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl +=this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl +=this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n\n let url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=true&${partUrl}`;\n this.router.navigateByUrl(url);\n }\n cancelRemission() {\n this.viewStatus = 'main';\n }\n redirectToFeeSearchPage(event: any, page?: string) {\n event.preventDefault();\n let partUrl =this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl +=this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl +=this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n\n if(this.viewStatus === 'feeRemovalConfirmation' || this.viewStatus === 'add_remission') {\n this.viewStatus = 'main';\n return;\n }\n let url = `/fee-search?ccdCaseNumber=${this.ccdCaseNumber}&selectedOption=${this.paymentLibComponent.SELECTED_OPTION}&paymentGroupRef=${this.paymentGroupRef}${partUrl}`;\n this.router.navigateByUrl(url);\n }\n takePayment() {\n this.isConfirmationBtnDisabled = true;\n const requestBody = new PaymentToPayhubRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType),\n antennaReqBody = new PayhubAntennaRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType);\n\n if(this.platForm === '8x8') {\n this.paymentViewService.postPaymentToPayHub(requestBody, this.paymentGroupRef).subscribe(\n response => {\n this.location.go(`payment-history?view=fee-summary`);\n this.payhubHtml = response;\n this.viewStatus = 'payhub_view';\n this.isBackButtonEnable=false;\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.router.navigateByUrl('/pci-pal-failure');\n }\n );\n } else if(this.platForm === 'Antenna') {\n\n this.paymentViewService.postPaymentAntennaToPayHub(antennaReqBody, this.paymentGroupRef).subscribe(\n response => {\n this.isBackButtonEnable=false;\n window.location.href = '/makePaymentByTelephoneyProvider';\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.router.navigateByUrl('/pci-pal-failure');\n }\n );\n }\n\n }\n\n goToAllocatePage(outStandingAmount: number, isFeeAmountZero: Boolean) {\n if (outStandingAmount > 0 || (outStandingAmount === 0 && isFeeAmountZero)) {\n this.paymentLibComponent.paymentGroupReference = this.paymentGroupRef;\n this.paymentLibComponent.viewName = 'allocate-payments';\n } else {\n this.loadCaseTransactionPage();\n }\n }\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\n\n\n\n@Component({\n selector: 'ccpay-error-banner',\n templateUrl: './error-banner.component.html',\n styleUrls: ['./error-banner.component.scss']\n})\n\nexport class ErrorBannerComponent implements OnInit {\n @Input('errorMessage') errorMessage;\n\n constructor(\n ) {}\n\n ngOnInit() {\n\n }\n}\n","\nexport class UnidentifiedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n unidentified_reason: string;\n\n constructor(payment_group_reference: string, payment_reference : string, unidentified_reason: any) {\n this.payment_allocation_status = {\n description: '',\n name: \"Unidentified\"\n };\n this.payment_group_reference = payment_group_reference ;\n this.payment_reference= payment_reference;\n this.unidentified_reason= unidentified_reason;\n\n }\n\n\n\n}\n","import { IBSPayments } from \"./IBSPayments\";\n\nexport class AllocatePaymentRequest {\n amount: Number;\n banked_date: String;\n ccd_case_number: String;\n exception_record: string;\n currency: String;\n document_control_number: String;\n external_provider: String;\n giro_slip_no: String;\n payer_name: String;\n payment_channel: Object;\n payment_status: Object;\n payment_method: String;\n case_type: String;\n payment_allocation_dto?: {\n allocation_reason: String,\n allocation_status: String,\n explanation: String,\n payment_allocation_status: Object,\n payment_group_reference: String,\n payment_reference: String,\n reason: String,\n receiving_office: String,\n unidentified_reason: String,\n user_id: String,\n user_name: String,\n case_type: String\n }\n\n constructor(ccd_case_number : string, unAllocatedPayment: IBSPayments, caseType: string, exceptionRecord: string, allocatedRequest?: any) {\n this.amount = unAllocatedPayment.amount;\n this.banked_date = unAllocatedPayment.date_banked;\n this.ccd_case_number = ccd_case_number;\n this.exception_record = exceptionRecord;\n this.currency= unAllocatedPayment.currency;\n this.document_control_number = unAllocatedPayment.dcn_reference;\n this.external_provider = 'exela';\n this.giro_slip_no = unAllocatedPayment.bgc_reference;\n this.payer_name = unAllocatedPayment.payer_name;\n this.payment_channel = {\n description: '',\n name: 'bulk scan'\n };\n this.payment_status ={\n description: 'bulk scan payment completed',\n name: 'success'\n }\n this.payment_method = unAllocatedPayment.payment_method;\n this.case_type= caseType;\n if(allocatedRequest) {\n this.payment_allocation_dto = allocatedRequest;\n }\n\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\n\n@Component({\n selector: 'app-mark-unidentified-payment',\n templateUrl: './mark-unidentified-payment.component.html',\n styleUrls: ['./mark-unidentified-payment.component.scss']\n})\nexport class MarkUnidentifiedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnidentifiedForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n isInvesticationDetailEmpty: boolean = false;\n investicationDetailHasError: boolean = false;\n investicationDetailMinHasError: boolean = false;\n investicationDetailMaxHasError: boolean = false;\n errorMessage = this.getErrorMessage(false);\n unassignedRecord:IBSPayments;\n siteID: string = null;\n investigationComment: string;\n isConfirmButtondisabled:Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n isStrategicFixEnable: boolean = true;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.markPaymentUnidentifiedForm = this.formBuilder.group({\n investicationDetail: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ]))\n });\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.getErrorMessage(false);\n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n saveAndContinue() {\n this.resetForm([false, false, false, false]);\n const investicationField = this.markPaymentUnidentifiedForm.controls.investicationDetail;\n const formerror = investicationField.errors;\n if (this.markPaymentUnidentifiedForm.dirty && this.markPaymentUnidentifiedForm.valid) {\n this.investigationComment = this.markPaymentUnidentifiedForm.controls.investicationDetail.value;\n this.viewStatus = 'unidentifiedContinueConfirm';\n }else {\n if(investicationField.value == '' ) {\n this.resetForm([true, false, false, false]);\n }\n if(investicationField.value != '' && investicationField.invalid ) {\n this.resetForm([false, true, false, false]);\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false, false, true, false]);\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, true]);\n }\n }\n }\n resetForm(val) {\n this.isInvesticationDetailEmpty = val[0];\n this.investicationDetailHasError = val[1];\n this.investicationDetailMinHasError = val[2];\n this.investicationDetailMaxHasError = val[3];\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const reason = this.markPaymentUnidentifiedForm.get('investicationDetail').value;\n\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Unidentified',\n payment_allocation_status: {\n description: '',\n name: 'Unidentified'\n },\n unidentified_reason: reason,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnidentifiedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, reason);\n if (response2.success) {\n this.paymentViewService.postBSUnidentifiedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n cancelMarkUnidentifiedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.markPaymentUnidentifiedForm.get('investicationDetail').value!==\"\"){\n this.viewStatus = 'unidentifiedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.viewStatus = 'mainForm';\n }\n }\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","\nexport class UnsolicitedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n receiving_office: string;\n receiving_email_address: string;\n sending_email_address: string;\n unidentified_reason: string;\n constructor(payment_group_reference: string, payment_reference : string, reason: string,responsible_office: string, responsible_person:string,email_id: string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Transferred\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.unidentified_reason= reason;\n this.receiving_office= responsible_office;\n this.receiving_email_address= email_id;\n this.sending_email_address= responsible_person;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\n\n\n@Component({\n selector: 'app-mark-unsolicited-payment',\n templateUrl: './mark-unsolicited-payment.component.html',\n styleUrls: ['./mark-unsolicited-payment.component.scss']\n})\nexport class MarkUnsolicitedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnsolicitedForm: FormGroup;\n viewStatus: string;\n reasonHasError: boolean = false;\n isReasonEmpty: boolean = false;\n reasonMinHasError: boolean = false;\n reasonMaxHasError: boolean = false;\n responsibleOfficeHasError: boolean = false;\n isResponsibleOfficeEmpty: boolean = false;\n errorMessage = this.getErrorMessage(false);\n ccdCaseNumber: string;\n bspaymentdcn: string;\n unassignedRecord: IBSPayments;\n siteID: string = null;\n reason: string;\n responsiblePerson: string;\n responsibleOffice: string;\n emailId: string;\n isConfirmButtondisabled: Boolean = false;\n isContinueButtondisabled: Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n selectedSiteId: string;\n selectedSiteName: string;\n isStrategicFixEnable: boolean = true;\n siteIDList;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.resetForm([false,false,false,false,false,false], 'all');\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.paymentViewService.getSiteID().subscribe(\n siteids => {\n this.isContinueButtondisabled = false;\n this.errorMessage = this.getErrorMessage(false);\n this.siteIDList = JSON.parse(siteids);\n },\n err => {\n window.scrollTo(0, 0);\n this.isContinueButtondisabled = true;\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n \n this.markPaymentUnsolicitedForm = this.formBuilder.group({\n reason: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n responsibleOffice: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s\\\\n,\\\\.-:]*)$')\n ])),\n responsiblePerson: new FormControl(''),\n emailId: new FormControl('')\n });\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const controls = this.markPaymentUnsolicitedForm.controls;\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Transferred',\n payment_allocation_status: {\n description: '',\n name: 'Transferred'\n },\n unidentified_reason: controls.reason.value,\n receiving_office: this.selectedSiteId,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n // controls.responsibleOffice.setValue('P219');\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const response1 = JSON.parse(res1),\n requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnsolicitedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, controls.reason.value, this.selectedSiteId, controls.responsiblePerson.value, controls.emailId.value);\n if (response2.success) {\n this.paymentViewService.postBSUnsolicitedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n saveAndContinue() {\n this.resetForm([false,false,false,false,false,false], 'all');\n const formerror = this.markPaymentUnsolicitedForm.controls.reason.errors;\n const reasonField = this.markPaymentUnsolicitedForm.controls.reason;\n //const officeIdField = this.selectedSiteId;\n const officeIdField = this.markPaymentUnsolicitedForm.controls.responsibleOffice;\n if (this.markPaymentUnsolicitedForm.dirty && this.markPaymentUnsolicitedForm.valid) {\n const controls = this.markPaymentUnsolicitedForm.controls;\n this.emailId = controls.emailId.value;\n this.responsibleOffice = officeIdField.value;\n this.responsiblePerson = controls.responsiblePerson.value;\n this.reason = controls.reason.value;\n this.viewStatus = 'unsolicitedContinueConfirm';\n }else {\n if( reasonField.value == '' ) {\n this.resetForm([true,false,false,false,false,false], 'reason');\n }\n if(reasonField.value != '' && this.markPaymentUnsolicitedForm.controls.reason.invalid ) {\n this.resetForm([false,true,false,false,false,false], 'reason');\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false,false,true,false,false,false], 'reason');\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false,false,false,true,false,false], 'reason');\n }\n if(officeIdField.value == '') {\n this.resetForm([false,false,false,false,true,false], 'responsibleOffice');\n }\n if(officeIdField.value != '' && officeIdField.invalid) {\n this.resetForm([false,false,false,false,false,true],'responsibleOffice');\n }\n }\n }\n resetForm(val, field) {\n if(field==='reason' || field==='all') {\n this.isReasonEmpty = val[0];\n this.reasonHasError = val[1];\n this.reasonMinHasError = val[2];\n this.reasonMaxHasError = val[3];\n }\n if(field==='responsibleOffice' || field==='all') {\n this.isResponsibleOfficeEmpty = val[4];\n this.responsibleOfficeHasError = val[5];\n }\n }\n\ncancelMarkUnsolicitedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.checkingFormValue()){\n this.viewStatus = 'unsolicitedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.markPaymentUnsolicitedForm.controls.responsibleOffice.setValue('');\n this.viewStatus = 'mainForm';\n }\n }\n checkingFormValue(){\n const formFields = this.markPaymentUnsolicitedForm.value;\n let valueExists = false;\n\n for (var field in formFields) {\n if (formFields.hasOwnProperty(field) && formFields[field] !==\"\") {\n valueExists = true;\n break;\n }\n }\n return valueExists;\n }\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n \n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n\n getErrorMessage(isErrorExist) {\n return {\n title: \"Something went wrong.\",\n body: \"Please try again later.\",\n showError: isErrorExist\n };\n }\n\n selectchange(args){ \n this.selectedSiteId = args.target.value; \n this.selectedSiteName = args.target.options[args.target.selectedIndex].text; \n } \n\n}\n","import { Component, OnInit, Output,Input, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport {Router} from '@angular/router';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-app-unprocessed-payments',\n templateUrl: './unprocessed-payments.component.html',\n styleUrls: ['./unprocessed-payments.component.scss']\n})\nexport class UnprocessedPaymentsComponent implements OnInit {\n\n @Input('FEE_RECORDS_EXISTS') FEE_RECORDS_EXISTS: boolean;\n @Input('PAYMENTREF') PAYMENTREF: string;\n @Input('ISTURNOFF') ISTURNOFF: boolean;\n @Input('IS_BUTTON_ENABLE') IS_BUTTON_ENABLE: boolean;\n @Input('IS_OS_AMT_AVAILABLE') IS_OS_AMT_AVAILABLE: boolean;\n @Input('ISNEWPCIPALOFF') ISNEWPCIPALOFF: boolean;\n @Input('ISOLDPCIPALOFF') ISOLDPCIPALOFF: boolean;\n @Input('ISSFENABLE') ISSFENABLE: boolean;\n @Input('PAYMENTSLENGTH') PAYMENTSLENGTH:Number;\n @Input('LEVEL')LEVEL:Number;\n\n @Output() selectedUnprocessedFeeEvent: EventEmitter<string> = new EventEmitter();\n @Output() getUnprocessedFeeCount: EventEmitter<string> = new EventEmitter();\n\n viewStatus = 'main';\n unassignedRecordList: IBSPayments;\n upPaymentErrorMessage: string = null;\n ccdCaseNumber: string;\n recordId: string = null;\n isRecordExist: boolean = false;\n dcnNumber: string = null;\n selectedOption: string;\n isUnprocessedRecordSelected: boolean = true;\n isAllocateToExistingFeebtnEnabled: boolean = false;\n isMarkAsUnidentifiedbtnEnabled: boolean = false;\n isAllocatedToNewFeebtnEnabled: boolean = false;\n isExceptionCase: boolean = false;\n serviceId: string = null;\n isBulkScanEnable;\n isNewpcipaloff;\n isOldpcipaloff;\n isTurnOff: boolean = true;\n isStFixEnable;\n unassignedRecordSelectedList: IBSPayments;\n unassignedRecordListLength: number = 0;\n showContent: boolean;\n\n constructor(private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private OrderslistService: OrderslistService\n ) { }\n\n ngOnInit() {\n // Todo ...\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isNewpcipaloff = this.paymentLibComponent.ISNEWPCIPALOFF;\n this.isOldpcipaloff = this.paymentLibComponent.ISOLDPCIPALOFF;\n this.isStFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.getFeeExists().subscribe( (data) => this.FEE_RECORDS_EXISTS = data);\n this.getUnassignedPaymentlist();\n\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.dcnNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n }\n\n }\n\n setValuesForUnassignedRecord(unassignedPayments) {\n \n this.unassignedRecordList = unassignedPayments.payments;\n if(this.unassignedRecordList){\n this.unassignedRecordListLength = unassignedPayments.payments.length\n }\n this.serviceId = unassignedPayments.responsible_service_id;\n if (unassignedPayments['ccd_reference'] === undefined) {\n this.isExceptionCase = true;\n }\n // this.isRecordExist = this.unassignedRecordList.length === 0;\n this.getUnprocessedFeeCount.emit(<any>this.unassignedRecordList.length);\n this.unprocessedPaymentSelectEvent(this.unassignedRecordList);\n }\n\n formatUnassignedRecordId(ID: Number) {\n return `unassignrecord-${ID}`;\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n\n redirectToFeeSearchPage(event: any, dcn_reference:any) {\n event.preventDefault();\n this.recordId = dcn_reference;\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n url += this.isOldpcipaloff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n url += this.isNewpcipaloff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}&dcn=${this.recordId}${url}`);\n }\n\n loadUnsolicitedPage(viewName: string, dcn_reference:any) {\n this.recordId = dcn_reference;\n this.paymentLibComponent.bspaymentdcn = this.recordId;\n this.paymentLibComponent.viewName = viewName;\n }\n\n unprocessedPaymentSelectEvent(selectedRecordReference: any) {\n this.isUnprocessedRecordSelected = true;\n this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit(selectedRecordReference);\n }\n\n resetButtons() {\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n }\n\n goToAllocatePage(dcn_reference:any) {\n this.paymentLibComponent.bspaymentdcn = dcn_reference;\n this.paymentLibComponent.unProcessedPaymentServiceId = this.serviceId\n this.paymentLibComponent.isTurnOff = this.ISTURNOFF;\n this.paymentLibComponent.isNewPcipalOff = this.ISNEWPCIPALOFF;\n this.paymentLibComponent.isOldPcipalOff = this.ISOLDPCIPALOFF;\n this.paymentLibComponent.ISSFENABLE = this.isStFixEnable;\n\n if(this.ISTURNOFF) {\n this.paymentLibComponent.paymentGroupReference = this.PAYMENTREF;\n this.paymentLibComponent.viewName = 'fee-summary';\n }else {\n this.paymentLibComponent.paymentGroupReference = null;\n this.paymentLibComponent.viewName = 'allocate-payments';\n }\n\n }\n\n validateButtons() {\n if ( this.isUnprocessedRecordSelected && this.isExceptionCase) {\n this.isMarkAsUnidentifiedbtnEnabled = true;\n } else if ( this.isUnprocessedRecordSelected && !this.isExceptionCase && !this.FEE_RECORDS_EXISTS) {\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = true;\n } else if( this.isUnprocessedRecordSelected && !this.isExceptionCase && this.FEE_RECORDS_EXISTS ) {\n if(!this.ISTURNOFF) {\n this.isAllocateToExistingFeebtnEnabled = true;\n this.isAllocatedToNewFeebtnEnabled = false;\n } else {\n this.isAllocateToExistingFeebtnEnabled = this.IS_OS_AMT_AVAILABLE;\n this.isAllocatedToNewFeebtnEnabled = true;\n }\n }\n }\n\n unprocessedPaymentUnSelectEvent(event: any) {\n event.preventDefault();\n this.recordId = null;\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n //this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit('');\n }\n\n showDetailRow(event: any,obj: any, i: any) {\n event.preventDefault();\n \n this.unassignedRecordSelectedList = obj;\n \n }\n}\n","import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport {IPayment} from '../../interfaces/IPayment';\nimport {Router} from '@angular/router';\n\n@Component({\n selector: 'ccpay-app-processed-payments',\n templateUrl: './processed-payments.component.html',\n styleUrls: ['./processed-payments.component.scss']\n})\nexport class ProcessedPaymentsComponent implements OnInit {\n\n @Input('NONPAYMENTS') NONPAYMENTS: IPayment[];\n @Output() goToPaymentViewComponent: EventEmitter<any> = new EventEmitter();\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService\n ) { }\n ngOnInit() {\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n redirectToPaymentViewPage(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent.emit({paymentGroupReference, paymentReference, paymentMethod});\n }\n}\n","\nexport class IAllocationPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n reason: string;\n explanation: string;\n user_name: string;\n constructor(payment_group_reference: string, payment_reference : string, reason? : string, explanation? : string, userName? : string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Allocated\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.reason = reason ? reason : null;\n this.explanation = explanation ? explanation : null;\n this.user_name = userName ? userName : null;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {CaseTransactionsService} from '../../services/case-transactions/case-transactions.service'; \nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport {IBSPayments} from '../../interfaces/IBSPayments';\nimport {AllocatePaymentRequest} from '../../interfaces/AllocatePaymentRequest';\nimport {IAllocationPaymentsRequest} from '../../interfaces/IAllocationPaymentsRequest';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n\n\n@Component({\n selector: 'app-allocate-payments',\n templateUrl: './allocate-payments.component.html',\n styleUrls: ['./allocate-payments.component.scss']\n})\nexport class AllocatePaymentsComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() caseType: string;\n\n overUnderPaymentForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n recordId:string;\n feedbackUrlLabel:string;\n unAllocatedPayment: IBSPayments = {\n amount: 0\n };\n siteID: string = null;\n errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n paymentGroup: IPaymentGroup;\n paymentGroups: IPaymentGroup[] = [];\t\n remainingAmount: number;\n isRemainingAmountGtZero: boolean;\n isMoreDetailsBoxHide: boolean = true;\n isRemainingAmountLtZero: boolean;\n afterFeeAllocateOutstanding: number;\n amountForAllocation: number;\n isConfirmButtondisabled: boolean = false;\n isContinueButtondisabled: boolean = true;\n otherPaymentExplanation: string = null;\n selectedOption: string = null;\n isFeeAmountZero: boolean = false;\t\n\n paymentReasonHasError: boolean = false;\n paymentExplanationHasError: boolean = false;\n isPaymentDetailsEmpty: boolean = false;\n isPaymentDetailsInvalid: boolean = false;\n paymentDetailsMinHasError: boolean = false;\n paymentDetailsMaxHasError: boolean = false;\n isUserNameEmpty: boolean = false;\n isUserNameInvalid: boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n paymentReason: string = null;\n paymentExplanation: string = null;\n userName: string = null;\n paymentSectionLabel: any;\n paymentRef: string = null;\n isStrategicFixEnable: boolean = true;\n orderLevelFees: IOrderReferenceFee[] = [];\n cookieUserName: string[] = [];\n enCookieUserName: any;\n userNameField: string = null;\n\n reasonList: { [key: string]: { [key: string]: string } }= {\n overPayment: {\n hwfReward: 'Help with Fees (HWF) awarded. Please include the HWF reference number in the explanatory note',\n wrongFee: 'Incorrect payment received',\n notIssueCase: 'Unable to issue case',\n otherDeduction: 'Other'\n },\n shortFall: {\n helpWithFee: 'Help with Fees (HWF) application declined',\n wrongFee: 'Incorrect payment received',\n other: 'Other'\n }\n }\n explanationList = {\n overPayment: {\n referRefund: 'Details in case notes. Refund due',\n noRefund: 'Details in case notes. No refund due',\n noCase: 'No case created. Refund due',\n other: 'Other'\n },\n shortFall: {\n holdCase: 'I have put a stop on the case and contacted the applicant requesting the balance of payment',\n heldCase: 'I have put a stop on the case. The applicant needs to be contacted to request the balance of payment',\n other: 'Other'\n }\n }\n\n refund = {\n reason: {\n duplicate: 'Duplicate payment',\n humanerror: 'Human error',\n caseWithdrawn: 'Case withdrawn',\n other: 'Other'\n }\n }\n\n\n constructor(\n private errorHandlerService: ErrorHandlerService,\n private caseTransactionsService: CaseTransactionsService,\n private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n if (this.paymentLibComponent.paymentGroupReference !== null) {\n this.viewStatus = 'allocatePaymentConfirmation';\n }\n \n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.paymentRef = this.paymentLibComponent.paymentGroupReference;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.isTurnOff = this.paymentLibComponent.isTurnOff;\n this.overUnderPaymentForm = this.formBuilder.group({\n moreDetails: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n userName: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s]*)$')\n ])),\n });\n this.OrderslistService.getOrdersList().subscribe( (data) =>\n this.orderLevelFees = data.filter(data => data.orderStatus !== 'Paid'));\n this.OrderslistService.getCaseType().subscribe( (data) => this.caseType = data);\n this.getUnassignedPayment();\n }\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n }\n\n getPaymentGroupDetails(){\n\n if(!this.isTurnOff){\n this.paymentViewService.getPaymentGroupDetails(this.paymentRef).subscribe(\n paymentGroup => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.paymentGroup = paymentGroup;\n this.saveAndContinue();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.paymentGroups = paymentGroups['payment_groups'].filter(paymentGroup => {\n paymentGroup.fees.forEach(fee => {\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true\n }\n });\n let fstCon = this.getGroupOutstandingAmount(<IPaymentGroup>paymentGroup),\n scndCn = fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero) && paymentGroup.payment_group_reference === this.paymentRef;\n return this.paymentRef ? scndCn : fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero);\n });\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }\n\n }\n\n selectedPaymentGroup(paymentGroup: IPaymentGroup) {\t\n this.isContinueButtondisabled = false;\t\n this.paymentGroup = paymentGroup;\t\n }\t\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n\n gotoSummaryPage(event: any) { \n event.preventDefault();\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n\n cancelAllocatePayment(event: any){\n event.preventDefault();\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n if(!this.isTurnOff){\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n } else {\n this.viewStatus = 'mainForm';\t\n }\n }\n confirmAllocatePayement(){\n this.enCookieUserName = document.cookie.split(\";\").find(row => row.includes(\"user-info\")).split(\"=\")[1].split(\";\");\n this.cookieUserName = JSON.parse(decodeURIComponent(this.enCookieUserName));\n \n const fullName = this.cookieUserName['forename'] + ' ' + this.cookieUserName['surname'];\n\n const paymentDetailsField = this.overUnderPaymentForm.controls.moreDetails,\n paymentFormError = this.overUnderPaymentForm.controls.moreDetails.errors,\n userNameField = fullName,\n isEmptyCondtion = this.paymentReason && this.paymentExplanation,\n isOtherOptionSelected = this.paymentExplanation === 'Other';\n\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n if ( (!this.isRemainingAmountGtZero && !this.isRemainingAmountLtZero) || isEmptyCondtion && (!isOtherOptionSelected && userNameField.length > 0 || isOtherOptionSelected && userNameField.length > 0 && paymentDetailsField.valid)) {\n this.isConfirmButtondisabled = true;\n this.otherPaymentExplanation = this.paymentExplanation === 'Other' ? paymentDetailsField.value : this.paymentExplanation;\n this.userName = userNameField;\n this.finalServiceCall();\n }else {\n if(!this.paymentReason) {\n this.resetForm([true, false, false, false, false, false, false, false], 'reason');\n }\n if(!this.paymentExplanation) {\n this.resetForm([false, true, false, false, false, false, false, false], 'explanation');\n }\n if(this.paymentExplanation && isOtherOptionSelected) {\n if(paymentDetailsField.value == '' ) {\n this.resetForm([false, false, true, false, false, false, false, false], 'other');\n }\n if(paymentDetailsField.value != '' && paymentDetailsField.invalid ) {\n this.resetForm([false, false, false, true, false, false, false, false], 'other');\n }\n if(paymentFormError && paymentFormError.minlength && paymentFormError.minlength.actualLength < 3 ) {\n this.resetForm([false, false, false, false, true, false, false, false], 'other');\n }\n if(paymentFormError && paymentFormError.maxlength && paymentFormError.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, false, false, true, false, false], 'other');\n }\n }\n if(userNameField.length === 0) {\n this.resetForm([false, false, false, false, false, false, true, false], 'username');\n }\n }\n }\n resetForm(vals, field) {\n if(field==='reason' || field==='all') {\n this.paymentReasonHasError = vals[0];\n }\n if(field==='explanation' || field==='all') {\n this.paymentExplanationHasError = vals[1];\n }\n if(field==='other' || field==='all') {\n this.isPaymentDetailsEmpty = vals[2];\n this.isPaymentDetailsInvalid = vals[3];\n this.paymentDetailsMinHasError = vals[4];\n this.paymentDetailsMaxHasError = vals[5];\n }\n if(field==='username' || field==='all') {\n this.isUserNameEmpty = vals[6];\n this.isUserNameInvalid = vals[7];\n }\n }\n finalServiceCall() {\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n reason: this.paymentReason,\n allocation_status:'Allocated',\n explanation: this.otherPaymentExplanation,\n payment_allocation_status: {\n description: '',\n name: 'Allocated'\n },\n payment_group_reference: this.paymentGroup.payment_group_reference,\n case_type: this.caseType,\n user_name: this.userName\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unAllocatedPayment, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSPaymentStrategic(postStrategicBody , this.paymentGroup.payment_group_reference).subscribe(\n res => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n });\n\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response1 = JSON.parse(res1);\n if (response1.success) {\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unAllocatedPayment, this.siteID, this.exceptionReference);\n this.bulkScaningPaymentService.postBSAllocatePayment(requestBody, this.paymentGroup.payment_group_reference).subscribe(\n res2 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response2 = JSON.parse(res2);\n const reqBody = new IAllocationPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, this.paymentReason, this.otherPaymentExplanation, this.userName);\n if (response2.success) {\n this.paymentViewService.postBSAllocationPayments(reqBody).subscribe(\n \n res3 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n ); \n }\n }\n\n saveAndContinue(){\n if(this.paymentGroup) {\n this.isMoreDetailsBoxHide = true;\n this.overUnderPaymentForm.get('moreDetails').reset();\n this.overUnderPaymentForm.get('moreDetails').setValue('');\n this.overUnderPaymentForm.get('userName').reset();\n this.overUnderPaymentForm.get('userName').setValue('');\n this.paymentReason = '';\n this.paymentExplanation = '';\n let GroupOutstandingAmount = this.getGroupOutstandingAmount(this.paymentGroup);\n const remainingToBeAssigned = this.unAllocatedPayment.amount - GroupOutstandingAmount;\n this.isRemainingAmountGtZero = remainingToBeAssigned > 0;\n this.isRemainingAmountLtZero = remainingToBeAssigned < 0;\n this.paymentSectionLabel = this.isRemainingAmountGtZero ? { \n title: 'There is an Over payment of',\n reason: 'Provide a reason. This will be used in the Refund process.',\n }: this.isRemainingAmountLtZero ? { \n title: 'There is an Under payment of',\n reason: 'Provide a reason',\n }: { \n title:'Amount left to be allocated',\n reason:'',\n };\n this.feedbackUrlLabel = this.isRemainingAmountGtZero ? 'CONFIRMALLOCATION_SURPLUS' : this.isRemainingAmountLtZero ? 'CONFIRMALLOCATION_SHORTFALL' : 'CONFIRMALLOCATION';\n this.remainingAmount = this.isRemainingAmountGtZero ? remainingToBeAssigned : this.isRemainingAmountLtZero ? remainingToBeAssigned * -1 : 0;\n this.afterFeeAllocateOutstanding = remainingToBeAssigned >= 0 ? 0 : (remainingToBeAssigned * -1);\n this.amountForAllocation = GroupOutstandingAmount >= this.unAllocatedPayment.amount ? this.unAllocatedPayment.amount : GroupOutstandingAmount;\n if(this.isTurnOff){\n this.viewStatus = 'allocatePaymentConfirmation';\t\n }\n }\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.unAllocatedPayment = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n this.getPaymentGroupDetails();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }\n selectRadioButton(key, type) {\n this.isMoreDetailsBoxHide = true;\n if( type === 'explanation' && key === 'other' ){\n this.isPaymentDetailsEmpty = false;\n this.isPaymentDetailsInvalid = false;\n this.paymentDetailsMinHasError = false;\n this.paymentDetailsMaxHasError = false;\n this.isMoreDetailsBoxHide = false;\n }\n }\n OrderListSelectEvent(orderef: any){\n this.isContinueButtondisabled = false;\n this.recordId= orderef;\n }\n\n redirectToOrderFeeSearchPage() {\n // this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = this.recordId;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n}\n}\n","import { IFee } from './IFee';\n\nexport class AddRemissionRequest {\n beneficiary_name: string;\n ccd_case_number: string;\n fee: IFee;\n hwf_amount: number;\n hwf_reference: string;\n payment_group_reference: string;\n case_type: string;\n\n constructor(ccd_case_number: string, fee: IFee, hwf_amount: number, hwf_reference: string, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.fee = fee;\n this.hwf_amount = hwf_amount;\n this.hwf_reference = hwf_reference;\n this.case_type = caseType;\n }\n}\n","export class AddRetroRemissionRequest {\n hwf_amount: number;\n hwf_reference: string;\n\n constructor(hwf_amount: number, hwf_reference: string) {\n this.hwf_amount = hwf_amount;\n this.hwf_reference = hwf_reference;\n }\n}\n","export class PostRefundRetroRemission {\n payment_reference: string;\n refund_reason: string;\n \n constructor(payment_reference : string, refund_reason : string) {\n this.payment_reference= payment_reference;\n this.refund_reason = refund_reason;\n } \n}","export class PostIssueRefundRetroRemission {\n remissionReference: string;\n \n constructor(remissionReference : string) {\n this.remissionReference= remissionReference;\n } \n}","import { Component, OnInit, Input, Output, EventEmitter} from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl, RequiredValidator } from '@angular/forms';\nimport { IFee } from '../../interfaces/IFee';\nimport {Router} from '@angular/router';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { RefundsRequest } from '../../interfaces/RefundsRequest';\nimport { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';\nimport { IssueRefundRequest } from '../../interfaces/IssueRefundRequest';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\nimport { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';\nimport {ChangeDetectorRef} from '@angular/core';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { OrderslistService } from '../../services/orderslist.service';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-add-remission',\n templateUrl: './add-remission.component.html',\n styleUrls: ['./add-remission.component.scss']\n})\nexport class AddRemissionComponent implements OnInit {\n @Input() fee: IFee;\n @Input() payment: IPayment;\n @Input() remission: IRemission;\n @Input() ccdCaseNumber: string;\n @Input() caseType: string;\n @Input() viewCompStatus: string;\n @Input() paymentGroupRef: string;\n @Input() isTurnOff: boolean;\n @Input() isRefundRemission: boolean;\n @Input() isOldPcipalOff: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() isStrategicFixEnable: boolean;\n @Input() paidAmount: any;\n @Input() isFromRefundListPage: boolean;\n @Input() isFromPaymentDetailPage: boolean;\n @Input() isFromServiceRequestPage: boolean;\n @Input() feeamount: number;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input('orderDetail') orderDetail: any[];\n @Input('orderRef') orderRef: string;\n @Input('orderStatus') orderStatus: string;\n @Input('orderParty') orderParty: string;\n @Input('orderCreated') orderCreated: Date;\n @Input('orderCCDEvent') orderCCDEvent: string;\n @Input('takepayment') takePayment: boolean;\n @Input('orderFeesTotal') orderFeesTotal: number;\n @Input('orderTotalPayments') orderTotalPayments: number;\n @Input('orderRemissionTotal') orderRemissionTotal: number;\n @Output() cancelRemission: EventEmitter<void> = new EventEmitter();\n //@Output() refundListReason: EventEmitter<any> = new EventEmitter({reason:string, code:string});\n @Output() refundListReason = new EventEmitter<{reason: string, code: string}>();\n @Output() refundListAmount: EventEmitter<string> = new EventEmitter();\n\n refund = {\n reason: {\n duplicate: 'Duplicate payment',\n humanerror: 'Human error',\n caseWithdrawn: 'Case withdrawn',\n other: 'Other'\n }\n }\n\n remissionForm: FormGroup;\n hasErrors = false;\n viewStatus = 'main';\n errorMessage = null;\n option: string = null;\n isConfirmationBtnDisabled: boolean = false;\n bsPaymentDcnNumber: string;\n selectedValue = 'yes';\n amount: any;\n retroRemission: boolean = false;\n remissionReference: string = '';\n refundReference: string;\n refundAmount: string;\n paymentExplanationHasError: boolean = false;\n refundReason:string;\n selectedRefundReason: string;\n displayRefundReason: string;\n refundCode:string;\n remessionPayment:IPayment;\n isRemissionCodeEmpty: boolean = false;\n remissionCodeHasError: boolean = false;\n isAmountEmpty: boolean = false;\n isReasonEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n refundHasError:boolean = false;\n isPaymentSuccess: boolean = false;\n isRemissionApplied: boolean = false;\n remissionamt:number;\n // refundReasons: any[] = [];\n commonRefundReasons: any[] = [];\n showReasonText: boolean;\n isRefundReasonsSelected: boolean;\n default: string;\n reasonLength: number;\n refundReasons:IRefundReasons[];\n pattern1: string;\n pattern2: string;\n sendOrderDetail: any[];\n sendOrderRef: string;\n component: { account_number: string; amount: number; case_reference: string; ccd_case_number: string; channel: string; currency: string; customer_reference: string; date_created: string; date_updated: string; description: string; method: string; organisation_name: string; payment_allocation: any[]; reference: string; service_name: string; site_id: string; status: string; };\n\n constructor(private formBuilder: FormBuilder,\n private router: Router,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private refundService: RefundsService,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.default = 'Select a different reason';\n this.pattern1 = '^([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})$';\n this.pattern2 = '^([A-Za-z]{2}[0-9]{2})-([0-9]{6})$';\n if(this.viewCompStatus !== '' && this.viewCompStatus !== undefined){\n this.viewStatus = '';\n }\n if(this.remission) {\n }\n if(this.fee) {\n this.amount = (this.fee.volume * this.fee.calculated_amount);\n }\n if (this.payment){\n this.remessionPayment = this.payment;\n if(this.payment.status === 'Success') {\n this.isPaymentSuccess = true;\n }\n }\n this.option = this.paymentLibComponent.SELECTED_OPTION;\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.remissionForm = this.formBuilder.group({\n remissionCode: new FormControl('', \n Validators.compose([\n Validators.required,\n Validators.pattern(`(${this.pattern1})|(${this.pattern2})`)\n ]) \n ),\n amount: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[0-9]+(\\.[0-9]{1,2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n refundDDReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl()\n });\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundDDReason'].setValue('Select a different reason', {onlySelf: true});\n \n if(this.viewCompStatus === ''){\n this.viewStatus = 'main';\n }\n \n if(this.viewCompStatus === 'issuerefund'){\n this.refundService.getRefundReasons().subscribe(\n refundReasons => { \n this.refundReasons = refundReasons.filter((data) => data.recently_used === false);\n this.refundReasons = this.refundReasons.filter((data) => data.name !== 'Retrospective remission');\n this.cd.detectChanges();\n this.commonRefundReasons = refundReasons.filter((data) => data.recently_used === true);\n this.commonRefundReasons.sort((a, b) => a.toString().localeCompare(b));\n this.cd.detectChanges();\n } );\n }\n \n if(this.viewCompStatus === 'processretroremissonpage' && this.isFromRefundListPage){\n this.viewStatus = 'processretroremissonpage';\n }\n\n }\n\n addRemission() {\n this.resetRemissionForm([false, false, false, false, false, false], 'All');\n const remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount > remissionctrls.amount.value; \n this.remissionForm.controls['refundReason'].setErrors(null);\n this.remissionForm.controls['refundDDReason'].setErrors(null);\n if (this.remissionForm.dirty && this.remissionForm.valid && isRemissionLessThanFee) {\n this.viewStatus = 'confirmation';\n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false, false], 'amount');\n }\n if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true, false], 'amount');\n }\n }\n }\n\n confirmRemission() {\n this.isConfirmationBtnDisabled = true;\n const newNetAmount = this.remissionForm.controls.amount.value,\n remissionAmount = this.fee.net_amount - newNetAmount,\n requestBody = new AddRemissionRequest\n (this.ccdCaseNumber, this.fee, remissionAmount, this.remissionForm.controls.remissionCode.value, this.caseType);\n this.paymentViewService.postPaymentGroupWithRemissions(decodeURIComponent(this.paymentGroupRef).trim(), this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response).success) {\n let LDUrl = this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable'\n LDUrl += `&caseType=${this.caseType}`\n LDUrl += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable'\n LDUrl += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable'\n if (this.paymentLibComponent.bspaymentdcn) {\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(`/payment-history/${this.ccdCaseNumber}?view=fee-summary&selectedOption=${this.option}&paymentGroupRef=${this.paymentGroupRef}&dcn=${this.paymentLibComponent.bspaymentdcn}${LDUrl}`);\n }else {\n this.gotoCasetransationPage();\n }\n\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n }\n );\n }\n\n resetRemissionForm(val, field){\n if (field==='All'){\n this.isRemissionCodeEmpty = val[0];\n this.remissionCodeHasError = val[1];\n this.isAmountEmpty = val[2];\n this.amountHasError = val[3];\n this.isRemissionLessThanFeeError = val[4];\n this.isReasonEmpty = val[5];\n } else if(field==='remissionCode' || field==='All') {\n this.isRemissionCodeEmpty = val[0];\n this.remissionCodeHasError = val[1];\n } else if (field==='amount' || field==='All'){\n this.isAmountEmpty = val[2];\n this.amountHasError = val[3];\n this.isRemissionLessThanFeeError = val[4];\n } else if (field==='reason' || field==='All'){\n this.isReasonEmpty = val[5];\n }\n }\n\n // Add retro remission changes\n addRemissionCode() {\n this.errorMessage = false;\n this.viewStatus = '';\n this.isRefundRemission = false;\n this.resetRemissionForm([false, false, false, false, false, false], 'All');\n const remissionctrls=this.remissionForm.controls\n // isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value; \n this.remissionForm.controls['refundReason'].setErrors(null);\n this.remissionForm.controls['refundDDReason'].setErrors(null);\n this.remissionForm.controls['amount'].setErrors(null);\n if (this.remissionForm.dirty && this.remissionForm.valid ) {\n this.viewCompStatus = '';\n this.viewStatus = \"processretroremissonpage\";\n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false], 'amount');\n }\n if(remissionctrls['reason'].value == '') {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n }\n if(remissionctrls.amount.valid){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n }\n \n }\n }\n\n\n gotoAddRetroRemissionCodePage() {\n this.errorMessage = false;\n if(this.isRefundRemission) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListAmount.emit();\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n }\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n } \n this.viewStatus = '';\n this.selectedValue = 'yes';\n this.viewCompStatus = \"addremission\";\n this.isRefundRemission = true;\n this.errorMessage = '';\n if(this.isFromPaymentDetailPage) {\n this.paymentLibComponent.viewName = 'payment-view';\n }\n }\n\n gotoCheckRetroRemissionPage(payment: IPayment) {\n this.paymentLibComponent.iscancelClicked = false;\n this.errorMessage = '';\n this.resetRemissionForm([false, false, false, false, false], 'All');\n if( !this.isRefundRemission) {\n var remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value; \n if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' || remissionctrls['amount'].value < 0) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, false, false, true, false], 'amount');\n } else if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n }\n }\n } else {\n var remissionctrls=this.remissionForm.controls;\n //if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' || remissionctrls['amount'].value < 0 ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n this.refundListAmount.emit(remissionctrls['amount'].value);\n }\n //}\n \n }\n }\n\n gotoProcessRetroRemissionPage() {\n this.viewStatus = '';\n this.viewCompStatus = 'addremission';\n this.isRefundRemission = true;\n this.errorMessage = '';\n }\n\n confirmRetroRemission() {\n if(!this.isConfirmationBtnDisabled) {\n this.retroRemission = true;\n this.remissionamt = this.remissionForm.controls.amount.value;\n const requestBody = new AddRetroRemissionRequest(this.remissionamt,this.remissionForm.controls.remissionCode.value )\n this.paymentViewService.postPaymentGroupWithRetroRemissions(decodeURIComponent(this.paymentGroupRef).trim(), this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.isRemissionApplied = true;\n this.viewCompStatus = '';\n this.viewStatus = 'retroremissionconfirmationpage';\n this.remissionReference =JSON.parse(response).remission_reference;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n }\n );\n }\n }\n\n processRefund() {\n this.errorMessage = '';\n this.isConfirmationBtnDisabled = true;\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n if (this.remissionReference === undefined || this.remissionReference === '') {\n this.remissionReference = this.remission.remission_reference;\n }\n const requestBody = new PostIssueRefundRetroRemission(this.remissionReference);\n this.paymentViewService.postRefundRetroRemission(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n })\n }\n\n // Issue Refund changes\n\n gotoIssueRefundConfirmation(payment: IPayment) {\n this.paymentLibComponent.iscancelClicked = false;\n if(this.paymentLibComponent.REFUNDLIST === \"true\") {\n this.isFromRefundListPage = true; \n }\n this.errorMessage = '';\n this.refundReason = this.remissionForm.controls['refundReason'].value === null ? this.remissionForm.controls['refundDDReason'].value : this.remissionForm.controls['refundReason'].value;\n if(!this.refundReason || this.refundReason === 'Select a different reason') {\n this.refundHasError = true;\n } else if(this.selectedRefundReason.includes('Other') && (this.remissionForm.controls['reason'].value == '' || this.remissionForm.controls['reason'].value == null)) {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n } else if (this.selectedRefundReason.includes('Other') && this.remissionForm.controls['reason'].value !== '') {\n this.refundHasError = false;\n this.refundReason += '-' + this.remissionForm.controls['reason'].value;\n this.displayRefundReason = this.selectedRefundReason + '-' + this.remissionForm.controls['reason'].value;\n if ( this.isFromRefundListPage ) {\n this.refundListReason.emit({reason: this.displayRefundReason, code: this.refundReason});\n } else {\n this.viewCompStatus = '';\n this.viewStatus = 'checkissuerefundpage';\n }\n \n } else {\n this.displayRefundReason = this.selectedRefundReason;\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n } else {\n this.viewCompStatus = '';\n this.viewStatus = 'checkissuerefundpage';\n }\n \n }\n }\n\n gotoIssueRefundPage() {\n this.errorMessage = '';\n this.viewCompStatus = 'issuerefund';\n this.viewStatus = '';\n this.isRefundRemission = true;\n this.errorMessage = false;\n this.refundHasError = false;\n this.isReasonEmpty = false;\n }\n\n changeIssueRefundReason() {\n // this.remissionForm.controls['refundReason'].setValue('Duplicate payment');\n this.errorMessage = '';\n this.refundHasError = false;\n this.isReasonEmpty = false;\n this.viewCompStatus = 'issuerefund';\n this.viewStatus = '';\n this.isRefundRemission = true;\n }\n\n confirmIssueRefund() {\n this.isConfirmationBtnDisabled = true;\n this.errorMessage = '';\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n \n const requestBody = new PostRefundRetroRemission(this.payment.reference,this.refundReason);\n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference =JSON.parse(response).refund_reference;\n if(JSON.parse(response).refund_amount) {\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n })\n }\n\n// Retro Refund\n\n confirmRetroRefund() {\n this.isConfirmationBtnDisabled = true;\n this.errorMessage = '';\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n\n const requestBody = new PostRefundRetroRemission(this.payment.reference,'RR004-Retrospective remission');\n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'retrorefundconfirmationpage';\n this.refundReference =JSON.parse(response).refund_reference;\n if(JSON.parse(response).refund_amount) {\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n });\n }\n\n selectRadioButton(key, value) {\n localStorage.setItem(\"myradio\", key);\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundDDReason'].setValue('Select a different reason', {onlySelf: true});\n remissionctrls['reason'].reset();\n this.isRefundReasonsSelected = true;\n this.errorMessage = false;\n this.isReasonEmpty = false;\n this.showReasonText = false;\n this.refundHasError = false;\n this.selectedRefundReason = key;\n if(this.selectedRefundReason.includes('Other')) {\n this.showReasonText = true;\n this.refundHasError = false;\n this.refundReason = key;\n }\n }\n\n selectchange(args) {\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundReason'].reset();\n remissionctrls['reason'].reset();\n this.isRefundReasonsSelected = false;\n this.showReasonText = false;\n this.refundHasError = false;\n this.selectedRefundReason = args.target.options[args.target.options.selectedIndex].id;\n this.reasonLength = (29-this.selectedRefundReason.split('- ')[1].length);\n\n if(this.selectedRefundReason.includes('Other')) {\n this.showReasonText = true;\n this.refundHasError = false;\n this.refundReason = args.target.options[args.target.options.selectedIndex].id;\n }\n\n\n }\n\n gotoServiceRequestPage(event: any) {\n this.errorMessage ='';\n event.preventDefault();\n if (this.isFromServiceRequestPage && !this.isFromPaymentDetailPage) {\n this.viewStatus = 'order-full-view';\n this.viewCompStatus = '';\n } else if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n } else {\n this.paymentLibComponent.paymentMethod = this.payment.method;\n this.paymentLibComponent.paymentGroupReference = this.paymentLibComponent.paymentGroupReference\n this.paymentLibComponent.paymentReference = this.payment.reference;\n this.paymentLibComponent.viewName = 'payment-view';\n this.OrderslistService.setOrderRef(this.orderRef);\n this.OrderslistService.setorderCCDEvent(this.orderCCDEvent);\n this.OrderslistService.setorderCreated(this.orderCreated);\n this.OrderslistService.setorderDetail(this.orderDetail);\n this.OrderslistService.setorderParty(this.orderParty);\n this.OrderslistService.setorderTotalPayments(this.orderTotalPayments);\n this.OrderslistService.setorderRemissionTotal(this.orderRemissionTotal);\n this.OrderslistService.setorderFeesTotal(this.orderFeesTotal);\n this.viewStatus = 'payment-view';\n this.sendOrderDetail = this.orderDetail;\n this.sendOrderRef = this.orderRef;\n if(this.LOGGEDINUSERROLES === undefined) {\n this.OrderslistService.getUserRolesList().subscribe((data) => this.LOGGEDINUSERROLES = data);\n }\n this.viewCompStatus = '';\n }\n // if (this.paymentLibComponent.TAKEPAYMENT === undefined && this.paymentLibComponent.SERVICEREQUEST === undefined) {\n // this.paymentLibComponent.SERVICEREQUEST = 'false';\n // this.paymentLibComponent.TAKEPAYMENT = false;\n // }\n // if (this.isFromServiceRequestPage) {\n // //this.paymentLibComponent.TAKEPAYMENT = false;\n // this.paymentLibComponent.isFromRefundStatusPage = false;\n // this.viewStatus = 'main'\n // this.paymentLibComponent.viewName = 'case-transactions';\n // this.OrderslistService.setisFromServiceRequestPage(true);\n // this.OrderslistService.setnavigationPage('servicerequestpage');\n // }\n // if ( this.isFromRefundListPage ) {\n // this.paymentLibComponent.iscancelClicked = true;\n // this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n // this.paymentLibComponent.isFromRefundStatusPage = true;\n // } \n // if(!this.paymentLibComponent.isFromRefundStatusPage) {\n // if(this.payment) {\n // this.OrderslistService.setpaymentPageView({method: this.payment.method,payment_group_reference: this.paymentGroupRef, reference:this.payment.reference});\n // }\n // if (this.isFromServiceRequestPage) { \n // this.OrderslistService.setnavigationPage('servicerequestpage');\n // } else {\n // this.OrderslistService.setnavigationPage('paymentdetailspage');\n // }\n // this.errorMessage = '';\n // this.paymentLibComponent.viewName = 'case-transactions';\n // // this.paymentLibComponent.TAKEPAYMENT = true;\n // this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n // this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n // this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n // this.paymentLibComponent.isFromServiceRequestPage = true; \n // this.paymentLibComponent.ISBSENABLE = true;\n // let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n // partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n // partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n // partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n // partUrl += `&caseType=${this.caseType}`;\n // partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n // partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n // if(this.isFromPaymentDetailPage) {\n // partUrl += this.paymentLibComponent.isFromPaymentDetailPage\n // }\n // if(!this.paymentLibComponent.TAKEPAYMENT) {\n // this.paymentLibComponent.TAKEPAYMENT = undefined;\n // }\n // if ( this.paymentLibComponent.SERVICEREQUEST) {\n // const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&selectedOption=${this.option}${partUrl}`;\n // this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n // this.router.onSameUrlNavigation = 'reload';\n // this.router.navigateByUrl(url);\n // } else {\n // const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n // this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n // this.router.onSameUrlNavigation = 'reload';\n // this.router.navigateByUrl(url);\n // }\n \n // } else {\n // this.paymentLibComponent.viewName === 'refundstatuslist';\n // this.paymentLibComponent.isFromRefundStatusPage = true;\n // }\n }\n\n gotoCasetransationPage() {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.errorMessage = '';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.VIEW = 'case-transactions';\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n this.paymentLibComponent.isFromServiceRequestPage = true; \n this.resetOrderData();\n let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n\n gotoCasetransationPageCancelBtnClicked(event: Event) {\n event.preventDefault();\n if( !this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.VIEW ='case-transactions';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n // this.OrderslistService.setnavigationPage('casetransactions');\n // this.OrderslistService.setisFromServiceRequestPage(false);\n // this.paymentLibComponent.VIEW ='case-transactions';\n // this.paymentLibComponent.viewName = 'case-transactions';\n // this.paymentLibComponent.ISBSENABLE = true;\n // this.paymentLibComponent.isRefundStatusView = false;\n // this.resetOrderData(); let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n // partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n // partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n // partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n // partUrl += `&caseType=${this.caseType}`;\n // partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n // partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n // const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n // this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n // this.router.onSameUrlNavigation = 'reload';\n // this.router.navigateByUrl(url);\n } else { \n\n if (this.paymentLibComponent.REFUNDLIST) {\n this.paymentLibComponent.viewName = 'refund-list';\n return;\n }\n if (this.paymentLibComponent.TAKEPAYMENT === undefined && this.paymentLibComponent.SERVICEREQUEST === undefined) {\n this.paymentLibComponent.SERVICEREQUEST = 'false';\n }\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.OrderslistService.setpaymentPageView({method: '',payment_group_reference: '', reference:''});\n this.OrderslistService.setnavigationPage('casetransactions');\n this.errorMessage = '';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n this.paymentLibComponent.isFromServiceRequestPage = true; \n this.paymentLibComponent.ISBSENABLE = true;\n let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n if(this.isFromPaymentDetailPage) {\n partUrl += this.paymentLibComponent.isFromPaymentDetailPage\n }\n\n if(!this.paymentLibComponent.SERVICEREQUEST) {\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n } else {\n const url =`/payment-history/${this.ccdCaseNumber}?selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n }\n \n }\n\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n\n\n getFormattedCurrency(currency:number){\n if(currency.toString().includes(\".\")){\n return currency\n }\n return currency.toString().concat(\".00\");\n }\n \n}","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'ccdHyphens'\n})\nexport class CcdHyphensPipe implements PipeTransform {\n constructor() {}\n transform(value: any, args?: any): any {\n const pattern = /^([0-9]{4})+([0-9]{4})+([0-9]{4})+([0-9]{4})$/;\n if ( value.match(pattern)) {\n return value.replace(pattern,'$1-$2-$3-$4') \n }\n return value;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'capitalize'\n})\nexport class CapitalizePipe implements PipeTransform {\n constructor() { }\n transform(s: any, args?: any): any {\n return s && s[0].toUpperCase() + s.slice(1) || \"\";\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'keyValue'\n})\nexport class keyValuePipe implements PipeTransform {\n constructor() {}\n transform(input: any): any {\n let keys = [];\n for (let key in input) {\n if (input.hasOwnProperty(key)) {\n keys.push({ key: key, value: input[key]});\n }\n }\n return keys;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\nimport { DomSanitizer, SafeHtml } from '@angular/platform-browser';\n\n@Pipe({ name: 'sanitizeHtml' })\nexport class SanitizeHtmlPipe implements PipeTransform {\n constructor(private sanitizer: DomSanitizer) {}\n transform(value: any): SafeHtml {\n return this.sanitizer.bypassSecurityTrustHtml(value);\n }\n}\n","import { Injectable } from '@angular/core';\nimport * as FileSaver from 'file-saver';\nimport * as XLSX from 'xlsx';\nimport * as XLSXStyle from 'xlsx-style';\n\n\nconst EXCEL_TYPE = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8';\nconst EXCEL_EXTENSION = '.xlsx';\n\n@Injectable()\nexport class XlFileService {\n\n constructor() { }\n\n public exportAsExcelFile(json: any[], excelFileName: string): void {\n let worksheet: XLSX.WorkSheet; \n let workbook: XLSX.WorkBook; \n\n if(excelFileName.match('Data_Loss')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['loss_resp','payment_asset_dcn','env_ref','env_item','resp_service_id','resp_service_name','date_banked','bgc_batch','payment_method','amount']});\n worksheet = this.setDataLossReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Unprocessed')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','exception_ref','ccd_ref','date_banked','bgc_batch','payment_asset_dcn','env_ref','env_item','payment_method','amount']});\n worksheet = this.setUnprocessedReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Processed_Unallocated')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','allocation_status','receiving_office','allocation_reason','ccd_exception_reference','ccd_case_reference','payment_asset_dcn','env_ref','env_item','date_banked','bgc_batch','payment_method','amount']});\n worksheet = this.setProcessedUnallocatedReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else {\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','surplus_shortfall','balance','payment_amount','ccd_case_reference', 'ccd_exception_reference', 'processed_date', 'reason', 'explanation', 'user_name']});\n worksheet = this.setShortFallReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n }\n workbook = { Sheets: { 'data': worksheet }, SheetNames: ['data'] };\n const excelBuffer: any = XLSX.write(workbook, { bookType: 'xlsx', type: 'array' });\n this.saveAsExcelFile(excelBuffer, excelFileName);\n }\n\n\nprivate autoFitColumns (worksheet: XLSX.WorkSheet,json:any) : XLSX.WorkSheet {\n let objectMaxLength = []; \n let ColWidth = [];\n let obj = <any>Object;\n for (let i = 0; i < json.length; i++) {\n let value = obj.values(json[i]);\n let key = obj.keys(json[i]);\n for (let j = 0; j < value.length; j++) {\n if(value[j] === null){\n value[j] = '';\n }\n objectMaxLength[j] =\n key[j].length >= value[j].length\n ? key[j].length+2\n : value[j].length+1;\n if( value[j].length === undefined){\n objectMaxLength[j] = key[j].length+2;\n }\n ColWidth.push({'width': +objectMaxLength[j]});\n }\n }\n worksheet['!cols'] = ColWidth;\n return worksheet;\n}\n\n\nprivate setDataLossReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Loss_Resp\";\n worksheet.B1.v = \"Payment_Asset_DCN\";\n worksheet.C1.v = \"Envelope_Ref\";\n worksheet.D1.v = \"Envelope_Item\";\n worksheet.E1.v = \"Resp_Service ID\";\n worksheet.F1.v = \"Resp_Service Name\";\n worksheet.G1.v = \"Date_Banked\";\n worksheet.H1.v = \"BGC_Batch\";\n worksheet.I1.v = \"Payment_Method\";\n worksheet.J1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setUnprocessedReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Exception_Ref\";\n worksheet.D1.v = \"CCD_Ref\";\n worksheet.E1.v = \"Date_Banked\";\n worksheet.F1.v = \"BGC_Batch\";\n worksheet.G1.v = \"Payment_Asset_DCN\";\n worksheet.H1.v = \"Envelope_Ref\";\n worksheet.I1.v = \"Envelope_Item\";\n worksheet.J1.v = \"Payment_Method\";\n worksheet.K1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setProcessedUnallocatedReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Allocation_Status\";\n worksheet.D1.v = \"Receiving_Office\";\n worksheet.E1.v = \"Allocation_Reason\";\n worksheet.F1.v = \"CCD_Exception_Ref\";\n worksheet.G1.v = \"CCD_Case_Ref\";\n worksheet.H1.v = \"Payment_Asset_DCN\";\n worksheet.I1.v = \"Envelope_Ref\";\n worksheet.J1.v = \"Envelope_Item\";\n worksheet.K1.v = \"Date_Banked\";\n worksheet.L1.v = \"BGC_Batch\";\n worksheet.M1.v = \"Payment_Method\";\n worksheet.N1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setShortFallReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Over Payment_Under Payment\";\n worksheet.D1.v = \"Balance\";\n worksheet.E1.v = \"Payment_Amount\";\n worksheet.F1.v = \"CCD_Case_Ref\";\n worksheet.G1.v = \"Exception_Ref\";\n worksheet.H1.v = \"Processed_Date\";\n worksheet.I1.v = \"Reason\";\n worksheet.J1.v = \"Explanation\";\n worksheet.K1.v = \"Updated Name\";\n return worksheet;\n}\n\nprivate saveAsExcelFile(buffer: any, fileName: string): void {\n const data: Blob = new Blob([buffer], {\n type: EXCEL_TYPE\n });\n FileSaver.saveAs(data, fileName + EXCEL_EXTENSION);\n }\n}\n","import { Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormGroup, FormControl } from '@angular/forms';\nimport { formatDate } from \"@angular/common\";\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {XlFileService} from '../../services/xl-file/xl-file.service';\n\n@Component({\n selector: 'ccpay-reports',\n templateUrl: './reports.component.html',\n styleUrls: ['./reports.component.scss']\n})\nexport class ReportsComponent implements OnInit {\n reportsForm: FormGroup;\n startDate: string;\n endDate: string;\n ccdCaseNumber: string;\n isDownLoadButtondisabled:Boolean = false;\n isStartDateLesthanEndDate: Boolean = false;\n isDateRangeBetnWeek: Boolean = false;\n errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n paymentGroups: IPaymentGroup[] = [];\n\n constructor(\n private xlFileService: XlFileService,\n private errorHandlerService: ErrorHandlerService,\n private formBuilder: FormBuilder,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private paymentViewService: PaymentViewService) { }\n \n\n ngOnInit() {\n this.fromValidation();\n\n }\n\n getToday(): string {\n return new Date().toISOString().split('T')[0];\n }\n\n getSelectedFromDate(): void {\n this.validateDates(this.reportsForm.get('selectedreport').value);\n }\n\n validateDates(reportName){\n const selectedStartDate = this.tranformDate(this.reportsForm.get('startDate').value),\n selectedEndDate = this.tranformDate(this.reportsForm.get('endDate').value);\n const isDateRangeMoreThanWeek = (<any>new Date(selectedStartDate) - <any>new Date(selectedEndDate))/(1000 * 3600 * -24) > 7;\n if(new Date(selectedStartDate) > new Date(selectedEndDate) && selectedEndDate !== ''){\n this.reportsForm.get('startDate').setValue('');\n this.isDateRangeBetnWeek = false;\n this.isStartDateLesthanEndDate = true;\n } else if(reportName && reportName ==='SURPLUS_AND_SHORTFALL' && isDateRangeMoreThanWeek ) {\n this.isDateRangeBetnWeek = true;\n this.isStartDateLesthanEndDate = false;\n } else {\n this.isDateRangeBetnWeek = false;\n this.isStartDateLesthanEndDate = false;\n }\n\n }\n\n fromValidation() {\n this.reportsForm = this.formBuilder.group({\n selectedreport: new FormControl('') ,\n startDate: new FormControl(''),\n endDate: new FormControl('') \n });\n}\n\ndownloadReport(){\n this.isDownLoadButtondisabled = true;\n const dataLossRptDefault = [{loss_resp:'',payment_asset_dcn:'',env_ref:'',env_item:'',resp_service_id:'',resp_service_name:'',date_banked:'',bgc_batch:'',payment_method:'',amount:''}],\n unProcessedRptDefault = [{resp_service_id:'',resp_service_name:'',exception_ref:'',ccd_ref:'',date_banked:'',bgc_batch:'',payment_asset_dcn:'',env_ref:'',env_item:'',payment_method:'',amount:''}],\n processedUnallocated =[{resp_service_id:'',resp_service_name:'',allocation_status:'',receiving_office:'',allocation_reason:'',ccd_exception_ref:'',ccd_case_ref:'',payment_asset_dcn:'',env_ref:'',env_item:'',date_banked:'',bgc_batch:'',payment_method:'',amount:'',updated_by:''}],\n shortFallsRptDefault = [{resp_service_id:'',resp_service_name:'',surplus_shortfall:'',balance:'',payment_amount:'',ccd_case_reference:'',ccd_exception_reference:'',processed_date:'', reason:'', explanation:'', user_name:''}],\n selectedReportName = this.reportsForm.get('selectedreport').value,\n selectedStartDate = this.tranformDate(this.reportsForm.get('startDate').value),\n selectedEndDate = this.tranformDate(this.reportsForm.get('endDate').value);\n\n if(selectedReportName === 'PROCESSED_UNALLOCATED' || selectedReportName === 'SURPLUS_AND_SHORTFALL' ){\n this.paymentViewService.downloadSelectedReport(selectedReportName,selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n const result = JSON.parse(response);\n let res= {data: this.applyDateFormat(result)};\n if(res['data'].length === 0 && selectedReportName === 'PROCESSED_UNALLOCATED' ){\n res.data= processedUnallocated;\n } else if(res['data'].length === 0 && selectedReportName === 'SURPLUS_AND_SHORTFALL' ) {\n res.data= shortFallsRptDefault;\n } \n if(result['data'].length > 0) {\n for( var i=0; i< res['data'].length; i++) {\n if(res['data'][i][\"payment_asset_dcn\"] !== undefined) {\n res['data'][i]['env_ref'] = res['data'][i][\"payment_asset_dcn\"].substr(0,13);\n res['data'][i]['env_item'] = res['data'][i][\"payment_asset_dcn\"].substr(13,21);\n }\n if(res['data'][i][\"amount\"] !== undefined) {\n res['data'][i]['amount'] = this.convertToFloatValue(res['data'][i]['amount']);\n }\n if(res['data'][i][\"balance\"] !== undefined) {\n res['data'][i]['balance'] = this.convertToFloatValue(res['data'][i][\"balance\"]);\n }\n let Op = res['data'][i][\"surplus_shortfall\"];\n if(Op !== undefined) {\n res['data'][i]['surplus_shortfall'] = Op ==\"Surplus\" ? \"Over payment\":\"Under payment\";\n }\n if(res['data'][i][\"payment_amount\"] !== undefined) {\n res['data'][i]['payment_amount'] = this.convertToFloatValue(res['data'][i]['payment_amount']);\n }\n }\n } \n this.isDownLoadButtondisabled = false;\n this.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate));\n },\n (error: any) => {\n this.isDownLoadButtondisabled = false;\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n })\n } else {\n this.bulkScaningPaymentService.downloadSelectedReport(selectedReportName,selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n const result = JSON.parse(response);\n let res = {data: this.applyDateFormat(result)};\n if(res['data'].length === 0 && selectedReportName === 'DATA_LOSS' ){\n res.data= dataLossRptDefault;\n } else if(res['data'].length === 0 && selectedReportName === 'UNPROCESSED'){\n res.data = unProcessedRptDefault;\n }\n if(result['data'].length > 0) {\n for( var i=0; i< res['data'].length; i++) {\n if(res['data'][i][\"amount\"] !== undefined) {\n res['data'][i]['amount'] = this.convertToFloatValue(res['data'][i]['amount']);\n }\n if(res['data'][i][\"payment_asset_dcn\"] !== undefined) {\n res['data'][i]['env_ref'] = res['data'][i][\"payment_asset_dcn\"].substr(0,13);\n res['data'][i]['env_item'] = res['data'][i][\"payment_asset_dcn\"].substr(13,21);\n }\n }\n }\n this.isDownLoadButtondisabled = false;\n this.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate ));\n },\n (error: any) => {\n this.isDownLoadButtondisabled = false;\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n })\n }\n }\n\n getFileName(selectedOption: string, startDate: string, endDate: string ) {\n const loc = 'en-US',\n stDt = formatDate(startDate, 'ddMMyy', loc),\n enDt = formatDate(endDate, 'ddMMyy', loc),\n now = new Date(),\n currentDate = formatDate(now, 'ddMMyy', loc),\n timestamp = `${currentDate}_${this.getTwodigit(now.getHours())}${this.getTwodigit(now.getMinutes())}${this.getTwodigit(now.getSeconds())}`,\n selectedOptionTxt = this.getCamelCaseString(selectedOption);\n \n return selectedOptionTxt+'_'+stDt+'_To_'+enDt+'_Run_'+ timestamp;\n } \n tranformDate(strDate: string) {\n let result = '';\n if (strDate) {\n let parts = strDate.split('-');\n result = `${parts[1]}/${parts[2]}/${parts[0]}`;\n }\n return result;\n }\n getTwodigit(input: number){\n return (\"0\" + input).slice(-2);\n }\n getCamelCaseString(selectedOption) {\n let result;\n switch(selectedOption) { \n case 'UNPROCESSED': { \n result = 'Unprocessed';\n break; \n } \n case 'DATA_LOSS': { \n result = 'Data_Loss';\n break; \n } \n case 'PROCESSED_UNALLOCATED': { \n result = 'Processed_Unallocated';\n break; \n } \n case 'SURPLUS_AND_SHORTFALL': { \n result = 'Over Payment_Under Payment';\n break; \n } \n default: { \n result = selectedOption;\n break; \n } \n } \n return result;\n }\n applyDateFormat(res) {\n const fmt = 'dd/MM/yyyy',\n loc = 'en-US';\n return res['data'].map(value => {\n if (value['date_banked']) {\n value['date_banked'] = formatDate(value['date_banked'], fmt, loc);\n }\n return value;\n });\n }\n \n convertToFloatValue(amt) {\n return amt ? Number.parseFloat(amt).toFixed(2): '0.00';\n }\n}\n","import {Component, ViewChild, Input, ChangeDetectorRef} from '@angular/core';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport { MatTableDataSource} from '@angular/material/table';\nimport {MatSort } from '@angular/material/sort';\nimport {Sort } from '@angular/material/sort';\nimport {MatPaginator } from '@angular/material/paginator';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { THIS_EXPR } from '@angular/compiler/src/output/output_ast';\nimport { ActivatedRoute,Router } from '@angular/router';\n@Component({\n selector: 'ccpay-table',\n templateUrl: './table.component.html',\n styleUrls: ['./table.component.css']\n})\nexport class TableComponent {\n @Input('DATASOURCE') DATASOURCE: any[];\n @Input('STATUS') STATUS: string;\n @Input('errorMessage') errorMessage: string;\n isApprovalFlow: boolean;\n // displayedColumns = ['ccdCaseNumber', 'refundReference', 'reason', 'createBy', 'updateDate', 'Action'];\n displayedColumns = ['ccd_case_number', 'refund_reference', 'user_full_name','date_created', 'date_updated', 'Action'];\n \n dataSource: MatTableDataSource<any>;\n userLst;\n 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 { IRefundReasons } from '../../interfaces/IRefundReasons';\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() isOldPcipalOff: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: 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 allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n\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 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 }\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\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\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 } 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\n servicerequest: string;\n // ccdCaseNumber: string;\n excReference: string;\n paymentGroups: any[] = [];\n payments: IPayment[] = [];\n nonPayments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n fees: IFee[] = [];\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalNonOffPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n paymentRef: string;\n isTurnOff: boolean;\n isNewPcipalOff: boolean;\n isRefundRemission: boolean = true;\n isOldPcipalOff: boolean;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = true;\n isExceptionRecord: boolean = false;\n isUnprocessedRecordSelected: boolean = false;\n exceptionRecordReference: string;\n isAnyFeeGroupAvilable: boolean = true;\n isHistoricGroupAvailable: boolean = false;\n isBulkScanEnable;\n isRemissionsMatch: boolean;\n isRemoveBtnDisabled: boolean = false;\n feeId: IFee;\n clAmountDue: number = 0;\n unprocessedRecordCount: number;\n isFeeRecordsExist: boolean = false;\n isGrpOutstandingAmtPositive: boolean = false;\n totalRefundAmount: Number;\n caseType: String;\n // lsCcdNumber: any = ls.get<any>('ccdNumber');\n payment: IPayment;\n paymentGroup: IPaymentGroup;\n paymentView: IPaymentView;\n\n\n isAddRemissionEnable: boolean = false;\n orderRemissionDetails: any[] = [];\n orderLevelFees: IOrderReferenceFee[] = [];\n cpoDetails: any = null;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n\n isCPODown: boolean;\n test: boolean;\n isPBA: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n isAddRemissionBtnEnabled: boolean = false;\n isRefundRemissionBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n isFromServiceRequestPage: boolean;\n navigationpage: string;\n remissionFeeAmt: number;\n\n constructor(\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private OrderslistService: OrderslistService,\n private router: Router) { }\n\n ngOnInit() {\n if (this.viewStatus === undefined) {\n this.viewStatus = this.paymentLibComponent.viewName;\n }\n if(this.paymentLibComponent.isFromServiceRequestPage && this.paymentLibComponent.isFromPaymentDetailPage) {\n if(this.paymentLibComponent.isFromPaymentDetailPage && this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.getorderRefs().subscribe((data) => this.orderRef = data);\n this.OrderslistService.getorderCCDEvents().subscribe((data) => this.orderCCDEvent = data);\n this.OrderslistService.getorderCreateds().subscribe((data) => this.orderCreated = data);\n this.OrderslistService.getorderDetail().subscribe((data) => this.orderDetail = data);\n this.OrderslistService.getorderPartys().subscribe((data) => this.orderParty = data);\n this.OrderslistService.getorderRemissionTotals().subscribe((data) => this.orderRemissionTotal = data);\n this.OrderslistService.getorderFeesTotals().subscribe((data) => this.orderFeesTotal = data);\n this.OrderslistService.getoorderTotalPaymentss().subscribe((data) => this.orderTotalPayments = data);\n }\n }\n // if (this.takePayment) {\n // this.paymentLibComponent.TAKEPAYMENT = this.takePayment;\n // }\n }\n\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n this.OrderslistService.setnavigationPage('servicerequestpage');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isTakePayment = this.paymentLibComponent.TAKEPAYMENT;\n if (this.takePayment) {\n this.paymentLibComponent.isTakePayment = this.takePayment;\n }\n this.paymentLibComponent.SERVICEREQUEST = \"true\";\n this.paymentLibComponent.isFromServiceRequestPage = false;\n if(this.isServiceRequest !== 'false') {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n }\n this.paymentLibComponent.isFromRefundStatusPage = false;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.resetOrderData();\n let partUrl = this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n if(this.isServiceRequest === 'false') {\n partUrl += this.paymentLibComponent.TAKEPAYMENT ? '&takePayment=true' : '&takePayment=false';\n }\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += this.isServiceRequest !== 'false' ? '&servicerequest=true' : '&servicerequest=false';\n partUrl += `&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n const url = `/payment-history/${this.paymentLibComponent.CCD_CASE_NUMBER}?view=case-transactions&selectedOption=${this.paymentLibComponent.SELECTED_OPTION}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund()) {\n if (this.orderDetail[0]['remissions'].length > 0) {\n for (const remission of this.orderDetail[0]['remissions']) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n }\n return true;\n } else {\n return false;\n }\n }\n\n chkForPBAPayment(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n this.paymentLibComponent.paymentReference = payment.reference;\n this.isPBA = true;\n }\n });\n }\n });\n if (this.isPBA) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n addRemission(fee: IFee) {\n if(this.chkForAddRemission(fee.code)) {\n this.feeId = fee;\n this.viewStatus = 'addremission';\n this.payment = this.orderDetail[0].payments[0];\n this.paymentViewService.getApportionPaymentDetails(this.orderDetail[0].payments[0].reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n this.viewStatus = 'addrefundforremission';\n \n this.payment = payment;\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.payment.reference));\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n cancelRemoval() {\n this.viewStatus = 'main';\n }\n\n removeFee(fee: any) {\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n window.location.reload();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n this.isIssueRefunfBtnEnable = true;\n }\n if (this.isIssueRefunfBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n if (payment !== null && payment !== undefined) {\n let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\n }\n }\n\n issueRefund(payment: IPayment) {\n if (payment !== null && payment !== undefined) {\n if(this.chkIssueRefundBtnEnable(payment)) {\n this.viewStatus = 'issuerefund';\n this.payment = payment;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.isRefundRemission = true;\n }\n }\n }\n goToServiceRequestPage(event: any) {\n event.preventDefault();\n this.isFromServiceRequestPage = true;\n this.viewStatus = 'main'\n this.paymentLibComponent.viewName = 'case-transactions';\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\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 \n constructor(account_number : string, amount : string, customer_reference: string) {\n this.account_number = account_number;\n this.amount = amount;\n this.currency = 'GBP';\n this.customer_reference = customer_reference;\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\n isContinueButtondisabled: boolean = true;\n isPBAAccountPaymentSuccess: boolean = false;\n pbaAccountrPaymentResult: any;\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.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.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 saveAndContinue() {\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);\n this.paymentViewService.postPBAaccountPayment(this.pbaPayOrderRef.orderRefId, requestBody)\n .subscribe(\n r => {\n this.pbaAccountrPaymentResult = JSON.parse(r).data;\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 }\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 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","setCurrentEnv","currentEnvironment","CURRENTENV","getCurrentEnv","Injectable","args","providedIn","OrderslistService","setOrdersList","orderLevelFees","ordersList","next","Object","assign","getOrdersList","setRefundView","refundList","refundView","getRefundView","setCaseType","caseType","getCaseType","setCCDCaseNumber","ccdCaseNumber","getCCDCaseNumber","setFeeExists","feeExists","getFeeExists","setisFromServiceRequestPage","isFromServiceRequestPage","getisFromServiceRequestPages","setOrderRefId","OrderRefId","getSelectedOrderRefId","setnavigationPage","navigationPage","getnavigationPageValue","setpaymentPageView","paymentpageList","paymentPageView","getpaymentPageView","setUserRolesList","rolesList","getUserRolesList","setorderDetail","orderDetail","getorderDetail","setOrderRef","orderRef","getorderRefs","setorderCCDEvent","orderCCDEvent","getorderCCDEvents","setorderCreated","orderCreated","getorderCreateds","setorderParty","orderParty","getorderPartys","setorderRemissionTotal","orderRemissionTotal","getorderRemissionTotals","setorderFeesTotal","orderFeesTotal","getorderFeesTotals","setorderTotalPayments","orderTotalPayments","getoorderTotalPaymentss","BehaviorSubject","getcaseType","asObservable","getFeeExist","getCCDCaseNumberforRefund","getisFromServiceRequestPage","getOrderRefId","getnavigationPage","getorderRef","getorderCCDEvent","getorderCreated","getorderParty","getorderRemissionTotal","getorderFeesTotal","getorderTotalPayments","PaymentLibComponent","ngAfterContentChecked","cd","detectChanges","ngOnInit","paymentLibService","LOGGEDINUSERROLES","length","PAYMENT_GROUP_REF","paymentGroupReference","DCN_NUMBER","bspaymentdcn","REFUNDLIST","VIEW","viewName","isTakePayment","TAKEPAYMENT","Component","selector","template","ChangeDetectorRef","Input","unProcessedPaymentServiceId","unProcessedPayment","orderPendingPayments","ErrorHandlerService","handleError","err","errorMessage","error","Error","message","status","undefined","JSON","parse","statusCode","messsage","stringify","_throw","getServerErrorMessage","isErrorExist","title","body","showError","LoggerService","invokeConsoleMethod","type","PaymentListService","getPaymentByCcdCaseNumber","paymentMethod","logger","info","http","get","withCredentials","pipe","catchError","errorHandlerService","HttpClient","PaymentListComponent","_this","paymentListService","paymentLibComponent","CCD_CASE_NUMBER","PAYMENT_METHOD","subscribe","payments","loadPaymentViewComponent","paymentReference","__values","o","s","Symbol","iterator","m","i","call","value","done","TypeError","WebComponentHttpClient","post","url","options","opts","addHeaders","put","delete","patch","csrfToken","meta","getTag","headers","forEach","element","document","cookie","split","find","row","startsWith","content","HttpHeaders","responseType","Meta","PaymentViewService","getPaymentDetails","getPaymentGroupDetails","getApportionPaymentDetails","getPBAaccountDetails","postWays2PayCardPayment","serviceRef","https","postPBAaccountPayment","uuidv4","postBSPayments","postBSUnidentifiedPayments","postBSUnsolicitedPayments","postBSAllocationPayments","postPaymentGroupWithRemissions","feeId","deleteFeeFromPaymentGroup","postPaymentToPayHub","paymentGroupRef","postPaymentAntennaToPayHub","downloadSelectedReport","reportName","startDate","endDate","getBSfeature","getSiteID","getPartyDetails","caseNumber","postRefundsReason","postPaymentGroupWithRetroRemissions","postRefundRetroRemission","PaymentViewComponent","selectedOption","SELECTED_OPTION","dcnNumber","isTurnOff","ISTURNOFF","serviceReference","viewStatus","paymentViewService","paymentGroup","fees","fee","isRemissionsMatch","remissions","rem","fee_code","code","push","filter","paymentGroupObj","includes","paymentAllocation","payment_allocation","isStatusAllocated","allocation_status","defineProperty","method","channel","goToPaymentList","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","isAddFeeBtnEnabled","allowedRolesToAccessRefund","some","role","indexOf","tmp4DayAgo","Date","setDate","getDate","date_created","RefundsService","getRefundReasons","getRefundRejectReasons","getRefundActions","refundReference","patchRefundActions","reviewerAction","getRefundList","refundstatus","selfexclusive","getRefundStatusHistory","getRefundStatusList","getUserDetails","postIssueRefund","patchResubmitRefund","refund_reference","ProcessRefundComponent","refundActionList","getErrorMessage","processRefundForm","formBuilder","group","refundActionField","FormControl","Validators","compose","required","refundRejectReasonField","sendMeBackField","minLength","maxLength","pattern","enterReasonField","refundlistsource","ccd_case_number","isFromRefundListPage","checkRefundActions","refundActionsHasError","isReasonFieldEmpty","isReasonEmpty","isReasonInvalid","refundRejectReasonHasError","isConfirmButtondisabled","isSendMeBackClicked","isRejectClicked","isOtherClicked","refundRejectReasonList","processRefundSubmit","processRefundRequest","resetForm","controls","processFormError","errors","dirty","valid","reason","response","isSuccesspageEnable","successMsg","replace","invalid","minlength","actualLength","maxlength","errorMsg","bodyTxt","loadRefundListPage","navigationpage","isRefundStatusView","loadRefundsHomePage","redirecttoRefundListPage","vals","field","isReasonFieldInvalid","reasonFieldMinHasError","reasonFieldMaxHasError","goToCaseReview","router","navigate","relativeTo","activeRoute","FormBuilder","Router","ActivatedRoute","sendmeback","RefundListComponent","userLst","isAuthorized","isApproveTableVisible","tableApprovalHeader","tableRejectedHeader","refundService","approvalStatus","submittedRefundList","rejectStatus","rejectedRefundList","isRejectTableVisible","CardDetailsService","getCardDetails","CardDetailsComponent","cardDetailsService","cardDetails","pageTitle","PageNotFoundComponent","StatusHistoryService","getPaymentStatusesByReference","StatusHistoryComponent","statusHistoryService","statuses","PbaDetailsComponent","noop","ConsoleLoggerService","console","log","apply","CaseTransactionsService","getPaymentGroups","BulkScaningPaymentService","getBSPaymentsByCCD","getBSPaymentsByDCN","dcn","postBSAllocatePayment","paymentRef","postBSPaymentStrategic","postBSWoPGStrategic","patchBSChangeStatus","calculateOutStandingAmount","feesTotal","paymentsTotal","remissionsTotal","calculated_amount","toUpperCase","amount","hwf_amount","removeUnwantedString","input","replaceText","CaseTransactionsComponent","paymentView","payment_group_reference","goToPayementView","isGrpOutstandingAmtPositive","CASETYPE","EXC_REFERENCE","excReference","takePayment","servicerequest","SERVICEREQUEST","toString","serviceRequestValue","isBulkScanEnable","isNewPcipalOff","ISNEWPCIPALOFF","isOldPcipalOff","ISOLDPCIPALOFF","isStrategicFixEnable","ISSFENABLE","caseTransactionsService","paymentGroups","isAnyFeeGroupAvilable","calculateAmounts","calculateOrderFeesAmounts","totalRefundAmount","calculateRefundAmount","cpoDetails","setDefaults","isCPODown","goToOrderViewDetailSection","checkForExceptionRecord","totalPayments","totalRemissions","totalNonOffPayments","totalFees","getAllocationStatus","bulkScaningPaymentService","recordData","exception_record_reference","ccd_reference","isExceptionRecord","case_reference","resetOrderVariables","orderStatus","orderAddBtnEnable","orderRefId","orderTotalFees","orderReferenceObj","x","redirectToOrderFeeSearchPage","orderef","nonOffLinePayment","a","b","amount_due","clAmountDue","allocationLen","nonPayments","allPayments","remisison","totalRefundAmount_1","isFeeAmountZero_1","grpOutstandingAmount","isFeeRecordsExist","isNewPaymentGroup_1","index","isHistoricGroupAvailable","getGroupOutstandingAmount","redirectToFeeSearchPage","navigateByUrl","redirectToremissionPage","redirectToReportsPage","loadFeeSummaryPage","goToPaymentViewComponent","selectedUnprocessedFeeEvent","unprocessedRecordId","isUnprocessedRecordSelected","getUnprocessedFeeCount","unProcessedRecordCount","unprocessedRecordCount","calculateAmountDue","confirmRemoveFee","isRemoveBtnDisabled","cancelRemoval","removeFee","success","window","location","reload","isCheckAmountdueExist","amountDue","isPBA","loadPBAAccountPage","pbaPayOrderRef","isAddRemissionEnable","orderRemissionDetails","ispaymentGroupApisuccess","isAddRemissionBtnEnabled","isEligible4PBAPayment","currentDate","check4AllowedRoles2AccessPBApayment","PaymentToPayhubRequest","currency","description","provider","toFixed","case_type","PayhubAntennaRequest","BS_ENABLE_FLAG","FeeSummaryComponent","bsPaymentDcnNumber","platForm","features","result","feature","uid","enable","getUnassignedPaymentlist","getPaymentGroup","unassignedPayments","service","responsible_service_id","upPaymentErrorMessage","currentFee","isPaymentExist","isRemissionsExist","totalAfterRemission","isFeeAmountZero","outStandingAmount","loadCaseTransactionPage","partUrl","cancelRemission","page","isConfirmationBtnDisabled","requestBody","antennaReqBody","go","payhubHtml","isBackButtonEnable","href","goToAllocatePage","Location","ErrorBannerComponent","UnidentifiedPaymentsRequest","payment_reference","unidentified_reason","payment_allocation_status","name","AllocatePaymentRequest","unAllocatedPayment","exceptionRecord","allocatedRequest","banked_date","date_banked","exception_record","document_control_number","dcn_reference","external_provider","giro_slip_no","bgc_reference","payer_name","payment_channel","payment_status","payment_method","payment_allocation_dto","MarkUnidentifiedPaymentComponent","getUnassignedPayment","markPaymentUnidentifiedForm","investicationDetail","unassignedRecord","siteID","beCcdNumber","beExceptionNumber","exceptionReference","ccdReference","trimUnderscore","saveAndContinue","investicationField","formerror","investigationComment","val","isInvesticationDetailEmpty","investicationDetailHasError","investicationDetailMinHasError","investicationDetailMaxHasError","confirmPayments","postStrategicBody","res1","res2","response2","reqBody","res3","gotoCasetransationPage","user_id","res","cancelMarkUnidentifiedPayments","UnsolicitedPaymentsRequest","responsible_office","responsible_person","email_id","receiving_office","receiving_email_address","sending_email_address","MarkUnsolicitedPaymentComponent","siteids","isContinueButtondisabled","siteIDList","scrollTo","markPaymentUnsolicitedForm","responsibleOffice","responsiblePerson","emailId","selectedSiteId","reasonField","officeIdField","reasonHasError","reasonMinHasError","reasonMaxHasError","isResponsibleOfficeEmpty","responsibleOfficeHasError","cancelMarkUnsolicitedPayments","checkingFormValue","setValue","formFields","valueExists","hasOwnProperty","selectchange","target","selectedSiteName","selectedIndex","text","UnprocessedPaymentsComponent","isNewpcipaloff","isOldpcipaloff","isStFixEnable","FEE_RECORDS_EXISTS","setValuesForUnassignedRecord","emit","unassignedRecordList","unassignedRecordListLength","serviceId","isExceptionCase","unprocessedPaymentSelectEvent","formatUnassignedRecordId","ID","recordId","loadUnsolicitedPage","selectedRecordReference","validateButtons","resetButtons","isAllocateToExistingFeebtnEnabled","isMarkAsUnidentifiedbtnEnabled","isAllocatedToNewFeebtnEnabled","PAYMENTREF","IS_OS_AMT_AVAILABLE","unprocessedPaymentUnSelectEvent","showDetailRow","obj","unassignedRecordSelectedList","Output","EventEmitter","isRecordExist","ProcessedPaymentsComponent","redirectToPaymentViewPage","IAllocationPaymentsRequest","explanation","userName","user_name","AllocatePaymentsComponent","overUnderPaymentForm","moreDetails","fstCon","scndCn","selectedPaymentGroup","gotoSummaryPage","cancelAllocatePayment","confirmAllocatePayement","enCookieUserName","cookieUserName","decodeURIComponent","fullName","paymentDetailsField","paymentFormError","userNameField","isEmptyCondtion","paymentReason","paymentExplanation","isOtherOptionSelected","isRemainingAmountGtZero","isRemainingAmountLtZero","otherPaymentExplanation","finalServiceCall","paymentReasonHasError","paymentExplanationHasError","isPaymentDetailsEmpty","isPaymentDetailsInvalid","paymentDetailsMinHasError","paymentDetailsMaxHasError","isUserNameEmpty","isUserNameInvalid","GroupOutstandingAmount","remainingToBeAssigned","isMoreDetailsBoxHide","reset","paymentSectionLabel","feedbackUrlLabel","remainingAmount","afterFeeAllocateOutstanding","amountForAllocation","selectRadioButton","key","OrderListSelectEvent","reasonList","overPayment","hwfReward","wrongFee","notIssueCase","otherDeduction","shortFall","helpWithFee","other","explanationList","referRefund","noRefund","noCase","holdCase","heldCase","refund","duplicate","humanerror","caseWithdrawn","AddRemissionRequest","hwf_reference","AddRetroRemissionRequest","PostRefundRetroRemission","refund_reason","PostIssueRefundRetroRemission","remissionReference","AddRemissionComponent","default","pattern1","pattern2","viewCompStatus","volume","remessionPayment","isPaymentSuccess","option","remissionForm","remissionCode","refundReason","refundDDReason","onlySelf","refundReasons","recently_used","commonRefundReasons","sort","localeCompare","resetRemissionForm","remissionctrls","isRemissionLessThanFee","setErrors","confirmRemission","newNetAmount","remissionAmount","trim","id","LDUrl","routeReuseStrategy","shouldReuseRoute","onSameUrlNavigation","isRemissionCodeEmpty","remissionCodeHasError","isAmountEmpty","amountHasError","isRemissionLessThanFeeError","addRemissionCode","gotoAddRetroRemissionCodePage","iscancelClicked","refundListAmount","isFromRefundStatusPage","refundListReason","selectedRefundReason","selectedValue","gotoCheckRetroRemissionPage","gotoProcessRetroRemissionPage","confirmRetroRemission","retroRemission","remissionamt","isRemissionApplied","remission_reference","processRefund","refundAmount","refund_amount","gotoIssueRefundConfirmation","refundHasError","displayRefundReason","gotoIssueRefundPage","changeIssueRefundReason","confirmIssueRefund","confirmRetroRefund","localStorage","setItem","isRefundReasonsSelected","showReasonText","reasonLength","gotoServiceRequestPage","sendOrderDetail","sendOrderRef","gotoCasetransationPageCancelBtnClicked","getFormattedCurrency","concat","hasErrors","CcdHyphensPipe","transform","match","Pipe","CapitalizePipe","slice","keyValuePipe","keys","SanitizeHtmlPipe","sanitizer","bypassSecurityTrustHtml","DomSanitizer","XlFileService","exportAsExcelFile","json","excelFileName","worksheet","XLSX.utils","json_to_sheet","header","setDataLossReportHeaders","setUnprocessedReportHeaders","setProcessedUnallocatedReportHeaders","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","isDateRangeBetnWeek","isStartDateLesthanEndDate","selectedreport","downloadReport","isDownLoadButtondisabled","dataLossRptDefault","loss_resp","payment_asset_dcn","env_ref","env_item","resp_service_id","resp_service_name","bgc_batch","unProcessedRptDefault","exception_ref","ccd_ref","processedUnallocated","allocation_reason","ccd_exception_ref","ccd_case_ref","updated_by","shortFallsRptDefault","surplus_shortfall","balance","payment_amount","ccd_case_reference","ccd_exception_reference","processed_date","selectedReportName","applyDateFormat","substr","convertToFloatValue","Op","xlFileService","getFileName","loc","stDt","formatDate","enDt","now","timestamp","getTwodigit","getHours","getMinutes","getSeconds","getCamelCaseString","strDate","parts","map","amt","Number","parseFloat","TableComponent","STATUS","toLowerCase","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","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","ServiceRequestComponent","isServiceRequest","goToServiceRequestPage","IserviceRequestCardPayment","language","IserviceRequestPbaPayment","account_number","customer_reference","PbaPaymentComponent","isGetPBAAccountSucceed","pbaAccountList","organisationEntityResponse","paymentAccount","selectpbaaccount","currentTarget","selectedPbaAccount","pbaAccountRef","isInSufficiantFund","isPBAAccountNotExist","isPBAServerError","isPBAAccountPaymentSuccess","pbaAccountrPaymentResult","e","isPBAAccountHold","cardPayment","isCardPaymentSuccess","paymentUrl","next_url","NgModule","imports","CommonModule","HttpClientModule","FormsModule","ReactiveFormsModule","MatTableModule","MatPaginatorModule","MatSortModule","MatFormFieldModule","MatInputModule","declarations","exports","providers","provide","useClass","PaymentLibModule"],"mappings":"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"}