@hmcts/ccpay-web-component 5.0.7-beta07 → 5.0.7-beta10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/hmcts-ccpay-web-component.umd.js +2084 -700
- package/bundles/hmcts-ccpay-web-component.umd.js.map +1 -1
- package/bundles/hmcts-ccpay-web-component.umd.min.js +1 -1
- package/bundles/hmcts-ccpay-web-component.umd.min.js.map +1 -1
- package/esm2015/hmcts-ccpay-web-component.js +33 -31
- package/esm2015/lib/components/add-remission/add-remission.component.js +697 -144
- package/esm2015/lib/components/case-transactions/case-transactions.component.js +31 -25
- package/esm2015/lib/components/contact-details/contact-details.component.js +447 -0
- package/esm2015/lib/components/fee-summary/fee-summary.component.js +21 -54
- package/esm2015/lib/components/payment-view/payment-view.component.js +188 -112
- package/esm2015/lib/components/process-refund/process-refund.component.js +49 -28
- package/esm2015/lib/components/refund-list/refund-list.component.js +3 -3
- package/esm2015/lib/components/refund-status/refund-status.component.js +211 -36
- package/esm2015/lib/components/reports/reports.component.js +10 -5
- package/esm2015/lib/components/service-request/service-request.component.js +237 -152
- package/esm2015/lib/components/table/table.component.js +24 -9
- package/esm2015/lib/components/unprocessed-payments/unprocessed-payments.component.js +1 -17
- package/esm2015/lib/interfaces/IFee.js +13 -1
- package/esm2015/lib/interfaces/IPayment.js +7 -1
- package/esm2015/lib/interfaces/IPutNotificationRequest.js +25 -0
- package/esm2015/lib/interfaces/IRefundContactDetails.js +25 -0
- package/esm2015/lib/interfaces/IRefundFee.js +21 -0
- package/esm2015/lib/interfaces/IRefundList.js +7 -1
- package/esm2015/lib/interfaces/IRefundsNotifications.js +21 -0
- package/esm2015/lib/interfaces/IRemission.js +7 -1
- package/esm2015/lib/interfaces/IResubmitRefundRequest.js +10 -2
- package/esm2015/lib/interfaces/PostIssueRefundRetroRemission.js +6 -2
- package/esm2015/lib/interfaces/PostRefundRetroRemission.js +20 -2
- package/esm2015/lib/payment-lib.component.js +14 -18
- package/esm2015/lib/payment-lib.module.js +3 -1
- package/esm2015/lib/payment-lib.service.js +16 -1
- package/esm2015/lib/services/notification/notification.service.js +85 -0
- package/esm2015/lib/services/refunds/refunds.service.js +10 -1
- package/esm2015/lib/services/shared/httpclient/webcomponent.http.client.js +1 -1
- package/esm2015/lib/services/xl-file/xl-file.service.js +1 -2
- package/esm5/hmcts-ccpay-web-component.js +33 -31
- package/esm5/lib/components/add-remission/add-remission.component.js +819 -149
- package/esm5/lib/components/case-transactions/case-transactions.component.js +31 -25
- package/esm5/lib/components/contact-details/contact-details.component.js +472 -0
- package/esm5/lib/components/fee-summary/fee-summary.component.js +21 -54
- package/esm5/lib/components/payment-view/payment-view.component.js +219 -130
- package/esm5/lib/components/process-refund/process-refund.component.js +52 -78
- package/esm5/lib/components/refund-list/refund-list.component.js +3 -3
- package/esm5/lib/components/refund-status/refund-status.component.js +247 -34
- package/esm5/lib/components/reports/reports.component.js +10 -5
- package/esm5/lib/components/service-request/service-request.component.js +278 -182
- package/esm5/lib/components/table/table.component.js +27 -9
- package/esm5/lib/components/unprocessed-payments/unprocessed-payments.component.js +1 -17
- package/esm5/lib/interfaces/IFee.js +13 -1
- package/esm5/lib/interfaces/IPayment.js +7 -1
- package/esm5/lib/interfaces/IPutNotificationRequest.js +23 -0
- package/esm5/lib/interfaces/IRefundContactDetails.js +25 -0
- package/esm5/lib/interfaces/IRefundFee.js +21 -0
- package/esm5/lib/interfaces/IRefundList.js +7 -1
- package/esm5/lib/interfaces/IRefundsNotifications.js +21 -0
- package/esm5/lib/interfaces/IRemission.js +7 -1
- package/esm5/lib/interfaces/IResubmitRefundRequest.js +8 -2
- package/esm5/lib/interfaces/PostIssueRefundRetroRemission.js +5 -2
- package/esm5/lib/interfaces/PostRefundRetroRemission.js +16 -2
- package/esm5/lib/payment-lib.component.js +9 -12
- package/esm5/lib/payment-lib.module.js +3 -1
- package/esm5/lib/payment-lib.service.js +23 -1
- package/esm5/lib/services/notification/notification.service.js +89 -0
- package/esm5/lib/services/refunds/refunds.service.js +16 -1
- package/esm5/lib/services/shared/httpclient/webcomponent.http.client.js +1 -1
- package/esm5/lib/services/xl-file/xl-file.service.js +1 -2
- package/fesm2015/hmcts-ccpay-web-component.js +1826 -570
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +2075 -652
- package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
- package/hmcts-ccpay-web-component.d.ts +32 -30
- package/hmcts-ccpay-web-component.metadata.json +1 -1
- package/lib/components/add-remission/add-remission.component.d.ts +45 -5
- package/lib/components/case-transactions/case-transactions.component.d.ts +2 -3
- package/lib/components/contact-details/contact-details.component.d.ts +49 -0
- package/lib/components/fee-summary/fee-summary.component.d.ts +0 -2
- package/lib/components/payment-view/payment-view.component.d.ts +23 -8
- package/lib/components/process-refund/process-refund.component.d.ts +6 -1
- package/lib/components/refund-status/refund-status.component.d.ts +34 -8
- package/lib/components/reports/reports.component.d.ts +1 -0
- package/lib/components/service-request/service-request.component.d.ts +28 -11
- package/lib/components/table/table.component.d.ts +1 -0
- package/lib/components/unprocessed-payments/unprocessed-payments.component.d.ts +0 -4
- package/lib/interfaces/IFee.d.ts +6 -0
- package/lib/interfaces/IPayment.d.ts +3 -0
- package/lib/interfaces/IPutNotificationRequest.d.ts +6 -0
- package/lib/interfaces/IRefundContactDetails.d.ts +9 -0
- package/lib/interfaces/IRefundFee.d.ts +7 -0
- package/lib/interfaces/IRefundList.d.ts +4 -0
- package/lib/interfaces/IRefundsNotifications.d.ts +16 -0
- package/lib/interfaces/IRemission.d.ts +3 -0
- package/lib/interfaces/IResubmitRefundRequest.d.ts +5 -1
- package/lib/interfaces/PostIssueRefundRetroRemission.d.ts +3 -1
- package/lib/interfaces/PostRefundRetroRemission.d.ts +7 -1
- package/lib/payment-lib.component.d.ts +2 -4
- package/lib/payment-lib.service.d.ts +3 -0
- package/lib/services/notification/notification.service.d.ts +15 -0
- package/lib/services/refunds/refunds.service.d.ts +2 -0
- package/package.json +5 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["ng://@hmcts/ccpay-web-component/lib/payment-lib.service.ts","ng://@hmcts/ccpay-web-component/lib/services/orderslist.service.ts","ng://@hmcts/ccpay-web-component/lib/payment-lib.component.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/error-handler.service.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/logger/logger.service.ts","ng://@hmcts/ccpay-web-component/lib/services/payment-list/payment-list.service.ts","ng://@hmcts/ccpay-web-component/lib/components/payment-list/payment-list.component.ts","node_modules/tslib/tslib.es6.js","ng://@hmcts/ccpay-web-component/lib/services/shared/httpclient/webcomponent.http.client.ts","ng://@hmcts/ccpay-web-component/lib/services/payment-view/payment-view.service.ts","ng://@hmcts/ccpay-web-component/lib/components/payment-view/payment-view.component.ts","ng://@hmcts/ccpay-web-component/lib/services/refunds/refunds.service.ts","ng://@hmcts/ccpay-web-component/lib/components/process-refund/process-refund.component.ts","ng://@hmcts/ccpay-web-component/lib/components/refund-list/refund-list.component.ts","ng://@hmcts/ccpay-web-component/lib/services/card-details/card-details.service.ts","ng://@hmcts/ccpay-web-component/lib/components/card-details/card-details.component.ts","ng://@hmcts/ccpay-web-component/lib/components/page-not-found.component.ts","ng://@hmcts/ccpay-web-component/lib/services/status-history/status-history.service.ts","ng://@hmcts/ccpay-web-component/lib/components/status-history/status-history.component.ts","ng://@hmcts/ccpay-web-component/lib/components/pba-details/pba-details.component.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/logger/console-logger.service.ts","ng://@hmcts/ccpay-web-component/lib/services/case-transactions/case-transactions.service.ts","ng://@hmcts/ccpay-web-component/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.ts","ng://@hmcts/ccpay-web-component/lib/components/case-transactions/case-transactions.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PaymentToPayhubRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PayhubAntennaRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/fee-summary/fee-summary.component.ts","ng://@hmcts/ccpay-web-component/lib/components/error-banner/error-banner.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/UnidentifiedPaymentsRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/AllocatePaymentRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/UnsolicitedPaymentsRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.ts","ng://@hmcts/ccpay-web-component/lib/components/unprocessed-payments/unprocessed-payments.component.ts","ng://@hmcts/ccpay-web-component/lib/components/processed-payments/processed-payments.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IAllocationPaymentsRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/allocate-payments/allocate-payments.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/AddRemissionRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/AddRetroRemissionRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PostRefundRetroRemission.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PostIssueRefundRetroRemission.ts","ng://@hmcts/ccpay-web-component/lib/components/add-remission/add-remission.component.ts","ng://@hmcts/ccpay-web-component/lib/pipes/ccd-hyphens.pipe.ts","ng://@hmcts/ccpay-web-component/lib/pipes/capitalize.pipe.ts","ng://@hmcts/ccpay-web-component/lib/pipes/key-value.pipe.ts","ng://@hmcts/ccpay-web-component/lib/pipes/sanitize-html.pipe.ts","ng://@hmcts/ccpay-web-component/lib/services/xl-file/xl-file.service.ts","ng://@hmcts/ccpay-web-component/lib/components/reports/reports.component.ts","ng://@hmcts/ccpay-web-component/lib/components/table/table.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IResubmitRefundRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/refund-status/refund-status.component.ts","ng://@hmcts/ccpay-web-component/lib/components/service-request/service-request.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IserviceRequestCardPayment.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IserviceRequestPbaPayment.ts","ng://@hmcts/ccpay-web-component/lib/components/pba-payment/pba-payment.component.ts","ng://@hmcts/ccpay-web-component/lib/payment-lib.module.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\n\nexport class PaymentLibService {\n API_ROOT: string;\n BULKSCAN_API_ROOT: string;\n REFUNDS_API_ROOT: string;\n CARDPAYMENTRETURNURL: string;\n\n constructor() { }\n\n setApiRootUrl(apiRoot: string): void {\n this.API_ROOT = apiRoot;\n }\n\n getApiRootUrl(): string {\n return this.API_ROOT;\n }\n\n setBulkScanApiRootUrl(bulkscanapiRoot: string): void {\n this.BULKSCAN_API_ROOT = bulkscanapiRoot;\n }\n\n getBulkScanApiRootUrl(): string {\n return this.BULKSCAN_API_ROOT;\n }\n\n setRefundndsApiRootUrl(refundsapiRoot: string): void {\n this.REFUNDS_API_ROOT = refundsapiRoot;\n }\n\n getRefundsApiRootUrl(): string {\n return this.REFUNDS_API_ROOT;\n }\n setCardPaymentReturnUrl(cardPaymentReturnUrl: string):void {\n this.CARDPAYMENTRETURNURL = cardPaymentReturnUrl;\n }\n getCardPaymentReturnUrl(): string {\n return this.CARDPAYMENTRETURNURL;\n }\n}\n","import { Injectable } from '@angular/core';\nimport { Observable, BehaviorSubject } from 'rxjs';\nimport {IOrderReferenceFee} from '../interfaces/IOrderReferenceFee';\nimport { IRefundList } from '../interfaces/IRefundList';\nimport { IPaymentView } from '../interfaces/IPaymentView'; \n\n@Injectable({\n providedIn: 'root'\n})\nexport class OrderslistService {\n private ordersList: BehaviorSubject<IOrderReferenceFee[]> = new BehaviorSubject<IOrderReferenceFee[]>(null);\n private refundView: BehaviorSubject<IRefundList> = new BehaviorSubject<IRefundList>(null);\n private caseType = new BehaviorSubject(\"\");\n getcaseType = this.caseType.asObservable();\n private feeExists = new BehaviorSubject<boolean>(null);\n getFeeExist = this.feeExists.asObservable();\n private ccdCaseNumber = new BehaviorSubject(\"\");\n getCCDCaseNumberforRefund = this.ccdCaseNumber.asObservable();\n private isFromServiceRequestPage = new BehaviorSubject<boolean>(null);\n getisFromServiceRequestPage = this.isFromServiceRequestPage.asObservable();\n private OrderRefId = new BehaviorSubject(\"\");\n getOrderRefId = this.OrderRefId.asObservable();\n private navigationPage = new BehaviorSubject(\"\");\n getnavigationPage = this.navigationPage.asObservable();\n\n private orderRef = new BehaviorSubject(\"\");\n getorderRef = this.orderRef.asObservable();\n private orderCCDEvent = new BehaviorSubject(\"\");\n getorderCCDEvent = this.caseType.asObservable();\n private orderCreated = new BehaviorSubject<Date>(null);\n getorderCreated = this.orderCreated.asObservable();\n private orderParty = new BehaviorSubject(\"\");\n getorderParty = this.orderParty.asObservable();\n private orderRemissionTotal = new BehaviorSubject<number>(null);\n getorderRemissionTotal = this.orderRemissionTotal.asObservable();\n private orderFeesTotal = new BehaviorSubject<number>(null);\n getorderFeesTotal = this.orderFeesTotal.asObservable();\n private orderTotalPayments = new BehaviorSubject<number>(null);\n getorderTotalPayments = this.orderTotalPayments.asObservable();\n private rolesList: BehaviorSubject<any[]> = new BehaviorSubject<any[]>(null);\n\n private orderDetail: BehaviorSubject<any[]> = new BehaviorSubject<any[]>(null);\n\n private paymentPageView: BehaviorSubject<IPaymentView> = new BehaviorSubject<IPaymentView>(null);\n\n constructor() { }\n\n setOrdersList(orderLevelFees: IOrderReferenceFee[]): void {\n this.ordersList.next(Object.assign([], orderLevelFees));\n }\n getOrdersList() {\n return this.ordersList;\n }\n\n setRefundView(refundList: IRefundList): void {\n this.refundView.next(Object.assign([], refundList));\n }\n getRefundView() {\n return this.refundView;\n }\n\n setCaseType(caseType: string){\n this.caseType.next(caseType);\n }\n getCaseType(){\n return this.caseType;\n }\n\n setCCDCaseNumber(ccdCaseNumber: string){\n this.ccdCaseNumber.next(ccdCaseNumber);\n }\n getCCDCaseNumber(){\n return this.ccdCaseNumber;\n }\n\n setFeeExists(feeExists: boolean){\n this.feeExists.next(feeExists);\n }\n getFeeExists(){\n return this.feeExists;\n } \n\n setisFromServiceRequestPage(isFromServiceRequestPage: boolean){\n this.isFromServiceRequestPage.next(isFromServiceRequestPage);\n }\n getisFromServiceRequestPages(){\n return this.isFromServiceRequestPage;\n }\n\n setOrderRefId(OrderRefId: string){\n this.OrderRefId.next(OrderRefId);\n }\n getSelectedOrderRefId(){\n return this.OrderRefId;\n }\n\n setnavigationPage(navigationPage: string){\n this.navigationPage.next(navigationPage);\n }\n getnavigationPageValue(){\n return this.navigationPage;\n }\n\n setpaymentPageView(paymentpageList: IPaymentView): void {\n this.paymentPageView.next(Object.assign([], paymentpageList));\n }\n getpaymentPageView() {\n return this.paymentPageView;\n }\n\n setUserRolesList(rolesList:any[]): void {\n this.rolesList.next(Object.assign([], rolesList));\n }\n getUserRolesList() {\n return this.rolesList;\n }\n\n setorderDetail(orderDetail:any[]): void {\n this.orderDetail.next(Object.assign([], orderDetail));\n }\n getorderDetail() {\n return this.orderDetail;\n }\n\n setOrderRef(orderRef: string){\n this.orderRef.next(orderRef);\n }\n getorderRefs(){\n return this.orderRef;\n }\n\n setorderCCDEvent(orderCCDEvent: string){\n this.orderCCDEvent.next(orderCCDEvent);\n }\n getorderCCDEvents(){\n return this.orderCCDEvent;\n }\n\n setorderCreated(orderCreated: Date){\n this.orderCreated.next(orderCreated);\n }\n getorderCreateds(){\n return this.orderCreated;\n }\n\n setorderParty(orderParty: string){\n this.orderParty.next(orderParty);\n }\n getorderPartys(){\n return this.orderParty;\n }\n\n setorderRemissionTotal(orderRemissionTotal: number){\n this.orderRemissionTotal.next(orderRemissionTotal);\n }\n getorderRemissionTotals(){\n return this.orderRemissionTotal;\n }\n\n setorderFeesTotal(orderFeesTotal: number){\n this.orderFeesTotal.next(orderFeesTotal);\n }\n getorderFeesTotals(){\n return this.orderFeesTotal;\n }\n\n setorderTotalPayments(orderTotalPayments: number){\n this.orderTotalPayments.next(orderTotalPayments);\n }\n getoorderTotalPaymentss(){\n return this.orderTotalPayments;\n }\n}\n","import { ChangeDetectorRef, Component, Input, OnInit } from '@angular/core';\nimport { PaymentLibService } from './payment-lib.service';\nimport { IBSPayments } from './interfaces/IBSPayments';\nimport { OrderslistService } from './services/orderslist.service';\nimport { IPayment } from './interfaces/IPayment';\n\n@Component({\n selector: 'ccpay-payment-lib',\n template: `\n <ccpay-refund-list [USERID]=\"USERID\" [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" [LOGGEDINUSEREMAIL]=\"LOGGEDINUSEREMAIL\" *ngIf=\"viewName === 'refund-list'\"></ccpay-refund-list>\n <ccpay-payment-list *ngIf=\"viewName === 'payment-list'\"></ccpay-payment-list>\n <ccpay-refund-status\n [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\"\n [API_ROOT]=\"API_ROOT\"\n *ngIf=\"viewName === 'refundstatuslist'\"> </ccpay-refund-status >\n <ccpay-payment-view [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'payment-view'\"\n [isTurnOff]=\"ISTURNOFF\" [isTakePayment]=\"TAKEPAYMENT\" [caseType]=\"CASETYPE\"\n [isOldPcipalOff]=\"ISOLDPCIPALOFF\"\n [ISPAYMENTSTATUSENABLED] = \"ISPAYMENTSTATUSENABLED\"\n [isNewPcipalOff]=\"ISNEWPCIPALOFF\"></ccpay-payment-view>\n\n <ccpay-process-refund *ngIf=\"viewName === 'process-refund'\"\n [refundReference]=\"refundReference\"\n [refundlistsource]=\"refundlistsource\"\n ></ccpay-process-refund>\n <ccpay-pba-payment *ngIf=\"viewName === 'pba-payment'\"\n [pbaPayOrderRef]=\"pbaPayOrderRef\"\n ></ccpay-pba-payment>\n <ccpay-case-transactions [isTakePayment]=\"isTakePayment\" [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'case-transactions'\"></ccpay-case-transactions>\n <app-mark-unidentified-payment *ngIf=\"viewName === 'unidentifiedPage'\"\n [caseType]=\"CASETYPE\"></app-mark-unidentified-payment>\n <app-mark-unsolicited-payment *ngIf=\"viewName === 'unsolicitedPage'\"\n [caseType]=\"CASETYPE\"></app-mark-unsolicited-payment>\n <app-allocate-payments *ngIf=\"viewName === 'allocate-payments'\"\n [isTurnOff]=\"ISTURNOFF\"\n [caseType]=\"CASETYPE\"\n ></app-allocate-payments>\n <ccpay-fee-summary *ngIf=\"viewName === 'fee-summary'\"\n [ccdCaseNumber]=\"CCD_CASE_NUMBER\" \n [paymentGroupRef]=\"paymentGroupReference\"\n [isTurnOff]=\"ISTURNOFF\"\n [caseType]=\"CASETYPE\"\n [isOldPcipalOff]=\"ISOLDPCIPALOFF\"\n [isNewPcipalOff]=\"ISNEWPCIPALOFF\"\n ></ccpay-fee-summary>\n <ccpay-reports *ngIf=\"viewName === 'reports'\"></ccpay-reports>\n `\n})\n\nexport class PaymentLibComponent implements OnInit {\n @Input('API_ROOT') API_ROOT: string;\n @Input('BULKSCAN_API_ROOT') BULKSCAN_API_ROOT: string;\n @Input('REFUNDS_API_ROOT') REFUNDS_API_ROOT: string;\n @Input('CARDPAYMENTRETURNURL') CARDPAYMENTRETURNURL: string;\n @Input('CCD_CASE_NUMBER') CCD_CASE_NUMBER: string;\n @Input('EXC_REFERENCE') EXC_REFERENCE: string;\n @Input('PAYMENT_METHOD') PAYMENT_METHOD: string;\n @Input('VIEW') VIEW: string;\n @Input('VIEWSERVICE') VIEWSERVICE: string;\n @Input('PAYMENT_GROUP_REF') PAYMENT_GROUP_REF?: string;\n @Input('TAKEPAYMENT') TAKEPAYMENT: boolean;\n @Input('SERVICEREQUEST') SERVICEREQUEST: string;\n @Input('DCN_NUMBER') DCN_NUMBER: string;\n @Input('SELECTED_OPTION') SELECTED_OPTION: string;\n @Input('ISBSENABLE') ISBSENABLE: Boolean;\n @Input('ISSFENABLE') ISSFENABLE: boolean;\n @Input('ISTURNOFF') ISTURNOFF: boolean;\n @Input('CASETYPE') CASETYPE: string;\n @Input('ISOLDPCIPALOFF') ISOLDPCIPALOFF: boolean;\n @Input('ISNEWPCIPALOFF') ISNEWPCIPALOFF: boolean;\n @Input('ISPAYMENTSTATUSENABLED') ISPAYMENTSTATUSENABLED: boolean;\n @Input('rootUrl') rootUrl: boolean;\n @Input('REFUNDLIST') REFUNDLIST: string;\n @Input('USERID') USERID: string;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: any[];\n @Input('LOGGEDINUSEREMAIL') LOGGEDINUSEREMAIL: string;\n @Input('isFromServiceRequestPage') isFromServiceRequestPage: boolean;\n\n paymentMethod: string;\n bspaymentdcn: string;\n unProcessedPaymentServiceId: string = null;\n paymentGroupReference: string;\n paymentReference: string;\n refundReference: string;\n refundlistsource: any;\n viewName: string;\n isTurnOff: boolean;\n caseType: string;\n isOldPcipalOff: boolean;\n isNewPcipalOff: boolean;\n unProcessedPayment: IBSPayments = null;\n isRefundStatusView: boolean;\n isRedirectFromCaseTransactionPage: string;\n isCallFromRefundList: boolean;\n isFromRefundStatusPage: boolean;\n iscancelClicked : boolean;\n isFromPaymentDetailPage: boolean;\n pbaPayOrderRef: IPayment;\n isTakePayment: boolean;\n\n orderDetail: any[];\n orderRef: string;\n orderStatus: string;\n orderParty: string;\n orderCreated: Date;\n orderCCDEvent: string;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n orderFeesTotal: number = 0.00;\n orderRemissionTotal: number = 0.00;\n orderTotalPayments: number = 0.00;\n orderPendingPayments: number = 0.00;\n\n constructor(private paymentLibService: PaymentLibService,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) { }\n ngAfterContentChecked(): void {\n this.cd.detectChanges();\n } \n\n\n ngOnInit() {\n this.paymentLibService.setApiRootUrl(this.API_ROOT);\n this.paymentLibService.setBulkScanApiRootUrl(this.BULKSCAN_API_ROOT);\n this.paymentLibService.setRefundndsApiRootUrl(this.REFUNDS_API_ROOT);\n this.paymentLibService.setCardPaymentReturnUrl(this.CARDPAYMENTRETURNURL);\n\n if(this.LOGGEDINUSERROLES.length > 0) {\n this.OrderslistService.setUserRolesList(this.LOGGEDINUSERROLES);\n }\n if (this.PAYMENT_GROUP_REF) {\n this.paymentGroupReference = this.PAYMENT_GROUP_REF;\n }\n if (this.DCN_NUMBER) {\n this.bspaymentdcn = this.DCN_NUMBER;\n }\n if (this.REFUNDLIST === \"true\") {\n this.VIEW = 'refund-list';\n this.viewName = this.VIEW;\n }\n if (this.VIEW === 'fee-summary') {\n this.viewName = 'fee-summary';\n } else if (this.VIEW !== 'reports' && this.VIEW !== 'refund-list') {\n this.viewName = 'case-transactions';\n } else {\n this.viewName = this.VIEW;\n }\n\n if (this.isTakePayment) {\n this.TAKEPAYMENT = true;\n }\n }\n}\n","import { Injectable } from '@angular/core';\nimport { _throw } from 'rxjs/observable/throw';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { HttpErrorResponse } from '@angular/common/http';\nimport { stringify } from '@angular/core/src/util';\n\n@Injectable({\n providedIn: 'root'\n})\n\n\nexport class ErrorHandlerService {\n\n constructor() { }\n\n\n handleError(err: HttpErrorResponse): Observable<any> {\n let errorMessage: string;\n if (err.error instanceof Error) {\n // A client-side or network error occurred.\n errorMessage = `An error occurred: ${err.error.message}`;\n } else {\n // The backend returned an unsuccessful response code.\n if (err.status === 404) {\n\n if (typeof err.error === 'string' && err.error !== undefined) {\n \n if(err.error.length > 60) {\n if (JSON.parse(err.error).statusCode !== undefined && JSON.parse(err.error).statusCode === 500)\n {\n errorMessage = 'Internal server error';\n } else {\n if(err.error.length > 60) {\n errorMessage = JSON.parse(err.error).error;\n } else {\n errorMessage = err.error;\n }\n \n }\n } else {\n errorMessage = err.error;\n }\n } else {\n errorMessage = JSON.parse(err.error).error;\n }\n \n }\n else if (err.status === 500) {\n errorMessage = 'Internal server error';\n } else if (err.error.messsage === undefined) {\n if( typeof err.error === 'object') {\n errorMessage = JSON.parse(JSON.stringify(err.error)).error;\n } else {\n if (typeof err.error === 'string' && err.error !== undefined) {\n \n if(err.error.length > 60) {\n if (JSON.parse(err.error).statusCode !== undefined && JSON.parse(err.error).statusCode === 500)\n {\n errorMessage = 'Internal server error';\n } else {\n if(err.error.length > 60) {\n errorMessage = JSON.parse(err.error).error;\n } else {\n errorMessage = err.error;\n }\n \n }\n } else {\n errorMessage = err.error;\n }\n } else {\n errorMessage = JSON.parse(err.error).error;\n }\n \n }\n \n } else {\n if (err.error.message !== undefined) {\n errorMessage = `${err.error.message}`;\n } else {\n errorMessage = `${err.error}`;\n }\n \n }\n }\n return _throw(errorMessage);\n }\n\n\n getServerErrorMessage(isErrorExist, isDataNotExist = false, error='') {\n const bodyContent = isDataNotExist ? error : 'Try again later';\n return {\n title: \"There is a problem with the service\",\n body: bodyContent,\n showError: isErrorExist\n };\n }\n}\n","import { Injectable } from '@angular/core';\n\nconst noop = (): any => undefined;\n\nexport abstract class Logger {\n\n info: any;\n warn: any;\n error: any;\n}\n\n@Injectable({\n providedIn: 'root'\n})\nexport class LoggerService implements Logger {\n\n info: any;\n warn: any;\n error: any;\n\n invokeConsoleMethod(type: string, args?: any): void {}\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\n\nimport { Observable } from 'rxjs/internal/Observable';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { IPayments } from '../../interfaces/IPayments';\nimport { catchError } from 'rxjs/operators';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PaymentListService {\n payments: IPayments;\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n\n getPaymentByCcdCaseNumber(ccdCaseNumber: string, paymentMethod: string): Observable<IPayments> {\n this.logger.info('Payment-list-service getPaymentByCcdCaseNumber for: ', ccdCaseNumber);\n\n return this.http.get<IPayments>(`${this.paymentLibService.API_ROOT}/cases/${ccdCaseNumber}/payments`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import {Component, OnInit} from '@angular/core';\n\nimport {PaymentListService} from '../../services/payment-list/payment-list.service';\nimport {IPayments} from '../../interfaces/IPayments';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport {IStatusHistory} from '../../interfaces/IStatusHistory';\n\n@Component({\n selector: 'ccpay-payment-list',\n templateUrl: './payment-list.component.html',\n styleUrls: ['./payment-list.component.css']\n})\nexport class PaymentListComponent implements OnInit {\n payments: IPayments;\n errorMessage: string;\n code: string;\n\n constructor(private paymentListService: PaymentListService,\n private paymentLibComponent: PaymentLibComponent) {\n }\n\n ngOnInit() {\n this.paymentListService.getPaymentByCcdCaseNumber(this.paymentLibComponent.CCD_CASE_NUMBER, this.paymentLibComponent.PAYMENT_METHOD)\n .subscribe(\n payments => this.payments = payments,\n (error: any) => this.errorMessage = <any>error\n );\n }\n\n loadPaymentViewComponent(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.paymentLibComponent.paymentMethod = paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n}\n","/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Meta } from '@angular/platform-browser';\nimport { Observable } from 'rxjs';\n\n@Injectable()\nexport class WebComponentHttpClient {\n constructor(\n private http: HttpClient,\n private meta: Meta\n ) { }\n\n post(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.post(url, body, opts);\n }\n\n put(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.put(url, body, opts);\n }\n\n get(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.get(url, opts);\n }\n\n delete(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.delete(url, opts);\n }\n \n patch(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.patch(url, body, opts);\n }\n\n addHeaders(options: any): any {\n const csrfToken = this.meta.getTag('name=csrf-token');\n const headers = {};\n \n if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n if (csrfToken === null) {\n if( document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')) !== undefined ) {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')).split('=')[1]; \n } else {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith(' XSRF-TOKEN')).split('=')[1];\n }\n } else {\n headers['CSRF-Token'] = csrfToken.content;\n }\n options.headers = new HttpHeaders(headers);\n options.responseType = 'text';\n return options;\n }\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { v4 as uuidv4 } from 'uuid';\nimport {IPayment} from '../../interfaces/IPayment';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { catchError } from 'rxjs/operators';\nimport { LoggerService } from '../shared/logger/logger.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { PayhubAntennaRequest } from '../../interfaces/PayhubAntennaRequest';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { Meta } from '@angular/platform-browser';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { IAllocationPaymentsRequest } from '../../interfaces/IAllocationPaymentsRequest';\nimport {IOrderReferenceFee} from '../../interfaces/IOrderReferenceFee';\nimport { BehaviorSubject } from 'rxjs';\nimport { IserviceRequestPbaPayment } from '../../interfaces/IserviceRequestPbaPayment';\nimport { IserviceRequestCardPayment } from '../../interfaces/IserviceRequestCardPayment';\nimport { RefundsRequest } from '../../interfaces/RefundsRequest';\nimport { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\nimport { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';\nimport { error } from '@angular/compiler/src/util';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PaymentViewService {\n private ordersList = <BehaviorSubject<IOrderReferenceFee[]>>new BehaviorSubject([]);\n\n private meta: Meta;\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getPaymentDetails(paymentReference: string, paymentMethod: string): Observable<IPayment> {\n this.logger.info('Payment-view-service getPaymentDetails for: ', paymentReference);\n\n return this.http.get<IPayment>(paymentMethod === 'card' || paymentMethod === 'cash' || paymentMethod === 'cheque' || paymentMethod === 'postal order' ?\n `${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}` :\n `${this.paymentLibService.API_ROOT}/credit-account-payments/${paymentReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getPaymentGroupDetails(paymentGroupReference: string): Observable<IPaymentGroup> {\n this.logger.info('Payment-view-service getPaymentGroupDetails for: ', paymentGroupReference);\n\n return this.http.get<IPayment>(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getApportionPaymentDetails(paymentReference: string): Observable<IPaymentGroup> {\n this.logger.info('Payment-view-service getPaymentGroupDetails for: ', paymentReference);\n\n return this.http.get<IPayment>(`${this.paymentLibService.API_ROOT}/payment-groups/fee-pay-apportion/${paymentReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getPBAaccountDetails(): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/pba-accounts`;\n return this.http.get(url, { withCredentials: true }).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postWays2PayCardPayment(serviceRef: string, body: IserviceRequestCardPayment): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/service-request/${serviceRef}/card-payments`;\n const rurl = this.paymentLibService.CARDPAYMENTRETURNURL.replace('.prod', '');\n body['return-url'] = `${rurl}/payment`;\n return this.https.post(url, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n \n postPBAaccountPayment(serviceRef: string, body: IserviceRequestPbaPayment): Observable<any> {\n let randomKey = 'idam-key-' + Math.random().toString().split('.').join('-');\n body['idempotency_key'] = randomKey; \n const url = `${this.paymentLibService.API_ROOT}/service-request/${serviceRef}/pba-payments`;\n return this.https.post(url, body);\n }\n\n postBSPayments(body: AllocatePaymentRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/bulk-scan-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSUnidentifiedPayments(body: UnidentifiedPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSUnsolicitedPayments(body: UnsolicitedPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSAllocationPayments(body: IAllocationPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postPaymentGroupWithRemissions(paymentGroupReference: string, feeId: number, body: AddRemissionRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}/fees/${feeId}/remissions`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n deleteFeeFromPaymentGroup(feeId: number): Observable<any> {\n this.logger.info('Payment-view-service deleteFeeFromPaymentGroup for: ', feeId);\n return this.https.delete(`${this.paymentLibService.API_ROOT}/fees/${feeId}`).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postPaymentToPayHub(body: PaymentToPayhubRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/card-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postPaymentAntennaToPayHub(body: PayhubAntennaRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/telephony-card-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n downloadSelectedReport(reportName: string, startDate: string, endDate:string): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/report/data?date_from=${startDate}&date_to=${endDate}&report_type=${reportName}`;\n return this.https.get(url, { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n downloadFailureReport(startDate: string, endDate:string): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/payment-failures/failure-report?date_from=${startDate}&date_to=${endDate}`;\n return this.https.get(url, { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getBSfeature(): Observable<any> {\n return this.https.get('api/payment-history/bulk-scan-feature', { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getSiteID(): Observable<any> {\n return this.https.get('api/payment-history/refdata/legacy-sites', { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getPartyDetails(caseNumber: string): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/case-payment-orders?case_ids=${caseNumber}`;\n return this.https.get(url, { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n \n setOrdersList(orderLevelFees: IOrderReferenceFee[]): void {\n this.ordersList.next(Object.assign([], orderLevelFees));\n}\n getOrdersList() {\n return this.ordersList;\n }\n\n //issue refund\n postRefundsReason(body: PostRefundRetroRemission): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/refund-for-payment`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n // retro remissions\n postPaymentGroupWithRetroRemissions(paymentGroupReference: string, feeId: number, body: AddRetroRemissionRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}/fees/${feeId}/retro-remission`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postRefundRetroRemission(body:PostIssueRefundRetroRemission) {\n return this.https.post(`${this.paymentLibService.API_ROOT}/refund-retro-remission`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getPaymentFailure(paymentReference: string): Observable<any> {\n return this.https.get(`${this.paymentLibService.API_ROOT}/payment-failures/${paymentReference}`, {\n withCredentials: true\n }).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\nimport { ChangeDetectorRef } from '@angular/core';\nimport { IPaymentFailure } from '../../interfaces/IPaymentFailure';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-payment-view',\n templateUrl: './payment-view.component.html',\n styleUrls: ['./payment-view.component.css']\n})\nexport class PaymentViewComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() isTakePayment: boolean;\n @Input() caseType: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() isOldPcipalOff: boolean;\n @Input() orderRef: string;\n @Input() orderStatus: string;\n @Input() orderTotalPayments: number;\n @Input() payment: IPayment;\n @Input() LOGGEDINUSERROLES: string[];\n @Input() ISPAYMENTSTATUSENABLED: string;\n @Input() orderParty: string;\n @Input() orderCreated: Date;\n @Input() orderCCDEvent: string;\n @Input() orderFeesTotal: number;\n @Input() orderRemissionTotal: number;\n @Input() orderDetail: any[];\n @Input(\"isServiceRequest\") isServiceRequest: string;\n errorMsg: string;\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n ccdCaseNumber: string;\n selectedOption: string;\n dcnNumber: string;\n isStatusAllocated: boolean;\n isRemissionsMatch: boolean;\n feeId: IFee;\n viewStatus: string;\n isRefundRemission: boolean = false;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n remissions: IRemission[] = [];\n allPaymentsFailure: IPaymentFailure[] = [];\n selectedPaymentsStatus: IPaymentFailure;\n remissionFeeAmt: number;\n isRefundRemissionBtnEnable: boolean;\n serviceReference: string;\n isFromServiceRequestPage: boolean;\n isFromPaymentDetailPage: boolean;\n\n constructor(private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) {\n }\n\n ngAfterContentChecked(): void {\n this.cd.detectChanges();\n } \n\n ngOnInit() {\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION;\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.serviceReference = this.paymentLibComponent.paymentGroupReference;\n this.viewStatus = 'paymentview';\n this.paymentViewService.getApportionPaymentDetails(this.paymentLibComponent.paymentReference).subscribe(\n paymentGroup => {\n let fees = [];\n paymentGroup.fees.forEach(fee => {\n this.isRemissionsMatch = false;\n\n paymentGroup.remissions.forEach(rem => {\n if (rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n if (!this.isRemissionsMatch) {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n \n },\n (error: any) => this.errorMessage = error\n );\n this.paymentViewService.getPaymentFailure(this.paymentLibComponent.paymentReference).subscribe({\n next: (res) => {\n JSON.parse(res).payment_failure_list.reverse().forEach(payments => {\n\n this.allPaymentsFailure.push(payments.payment_failure_initiated);\n if(payments.payment_failure_closed) {\n this.allPaymentsFailure.push(payments.payment_failure_closed);\n }\n });\n this.allPaymentsFailure = this.allPaymentsFailure.reverse();\n },\n error: (e) => {\n this.allPaymentsFailure = [];\n this.errorMsg = \"Server error\"\n }\n })\n }\n\n get isCardPayment(): boolean {\n return this.paymentGroup.payments[0].method === 'card';\n }\n\n get isTelephonyPayment(): boolean {\n return this.paymentGroup.payments[0].channel === 'telephony';\n }\n\n public goToPaymentList(): void {\n this.paymentLibComponent.viewName = 'payment-list';\n }\n goToServiceRequestPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = false;\n this.paymentLibComponent.SERVICEREQUEST = 'true';\n this.paymentLibComponent.isFromServiceRequestPage = true;\n window.location.reload();\n }\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n if (!this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.resetOrderData();\n } else {\n this.OrderslistService.getorderRefs().subscribe((data) => this.orderRef = data);\n this.OrderslistService.getorderCCDEvents().subscribe((data) => this.orderCCDEvent = data);\n this.OrderslistService.getorderCreateds().subscribe((data) => this.orderCreated = data);\n this.OrderslistService.getorderDetail().subscribe((data) => this.orderDetail = data);\n this.OrderslistService.getorderPartys().subscribe((data) => this.orderParty = data);\n this.OrderslistService.getorderRemissionTotals().subscribe((data) => this.orderRemissionTotal = data);\n this.OrderslistService.getorderFeesTotals().subscribe((data) => this.orderFeesTotal = data);\n this.OrderslistService.getoorderTotalPaymentss().subscribe((data) => this.orderTotalPayments = data);\n this.viewStatus = 'order-full-view';\n }\n \n }\n\n addRemission(fee: IFee) {\n if(this.chkForAddRemission(fee.code)) {\n this.feeId = fee;\n this.paymentViewService.getApportionPaymentDetails(this.paymentGroup.payments[0].reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n this.paymentLibComponent.isFromPaymentDetailPage = true;\n this.viewStatus = 'addremission';\n this.isRefundRemission = true;\n this.cd.detectChanges();\n },\n (error: any) => this.errorMessage = error\n );\n }\n }\n\n checkForFees(paymentGroup: any) {\n if(paymentGroup !== null && paymentGroup !== undefined)\n {\n if (paymentGroup.fees !== null && paymentGroup.fees !== undefined) {\n return true;\n }\n \n }\n return false;\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n if(this.chkIsRefundRemissionBtnEnable()) {\n this.payment = payment;\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.payment.reference));\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n this.viewStatus = 'addrefundforremission';\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n if (this.paymentGroup !== null && this.paymentGroup !== undefined) {\n this.paymentGroup.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n issueRefund(paymentgrp: IPaymentGroup) {\n if (paymentgrp !== null && paymentgrp !== undefined) {\n if(this.chkIssueRefundBtnEnable(paymentgrp.payments[0])) {\n this.paymentGroup = paymentgrp;\n this.viewStatus = 'issuerefund';\n this.isRefundRemission = true;\n this.paymentLibComponent.isFromPaymentDetailPage = true;\n this.isFromPaymentDetailPage = true;\n this.isFromServiceRequestPage = this.paymentLibComponent.isFromServiceRequestPage;\n }\n }\n }\n\n getRemissionByFeeCode(feeCode: string, remissions: IRemission[]): IRemission {\n if (remissions && remissions.length > 0) {\n for (const remission of remissions) {\n if (remission.fee_code === feeCode) {\n return remission;\n }\n }\n }\n return null;\n }\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n this.isIssueRefunfBtnEnable = true;\n }\n if (this.isIssueRefunfBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n\n chkForPBAPayment(): boolean {\n if (this.paymentGroup !== null && this.paymentGroup !== undefined) {\n let payment = this.paymentGroup.payments[0];\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n return true;\n }\n return false;\n }\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(this.paymentGroup.payments[0])) {\n if (this.paymentGroup.remissions && this.paymentGroup.remissions.length > 0) {\n for (const remission of this.paymentGroup.remissions) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n return true;\n }\n return true;\n\n } else {\n return false;\n }\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n if(payment !== null && payment !== undefined) {\n let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\n }\n }\n\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n\n goToPaymentFailuePage(payment: any) {\n this.viewStatus = 'payment-failure';\n this.selectedPaymentsStatus = payment;\n }\n goBackToPaymentView(event: any) {\n event.preventDefault();\n this.viewStatus = 'paymentview';\n }\n}","import { Injectable } from '@angular/core';\nimport {HttpClient, HttpHeaders} from '@angular/common/http';\nimport { Meta } from '@angular/platform-browser';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {catchError} from 'rxjs/operators';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { IPatchRefundAction } from '../../interfaces/IPatchRefundAction';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { IssueRefundRequest } from '../../interfaces/IssueRefundRequest';\nimport { IResubmitRefundRequest } from '../../interfaces/IResubmitRefundRequest';\nimport { IRefundStatusHistory } from '../../interfaces/IRefundStatusHistory';\n@Injectable({\n providedIn: 'root'\n})\nexport class RefundsService {\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService,\n private meta: Meta\n ) { }\n\n getRefundReasons(): Observable<IRefundReasons[]> {\n return this.http.get<IRefundReasons[]>(`${this.paymentLibService.REFUNDS_API_ROOT}/reasons`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getRefundRejectReasons(): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/rejection-reasons`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getRefundActions(refundReference: string): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/${refundReference}/actions`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\npatchRefundActions(body:IPatchRefundAction, refundReference: string, reviewerAction: string): Observable<any> {\n // const opts = this.addHeaders({});\n return this.https.patch(`${this.paymentLibService.REFUNDS_API_ROOT}/${refundReference}/action/${reviewerAction}`, body)\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundList(refundstatus?: string, selfexclusive?:boolean): Observable<IRefundList[]> {\n return this.http.get<IRefundList[]>(`${this.paymentLibService.REFUNDS_API_ROOT}?status=${refundstatus}&excludeCurrentUser=${selfexclusive}`, \n {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundStatusHistory(reference?: string) {\n return this.http.get<IRefundStatusHistory>(`${this.paymentLibService.REFUNDS_API_ROOT}/${reference}/status-history`, \n {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundStatusList(ccdCaseNumber:string): Observable<IRefundList[]> {\n return this.http.get<IRefundList[]>(`${this.paymentLibService.REFUNDS_API_ROOT}?ccdCaseNumber=${ccdCaseNumber}`, {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetUserDetails(): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/get-user-details`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n \npostIssueRefund(body: IssueRefundRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.REFUNDS_API_ROOT}/refund`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\npatchResubmitRefund(body: IResubmitRefundRequest, refund_reference: string): Observable<any> {\n // const opts = this.addHeaders({});\n return this.https.patch(`${this.paymentLibService.REFUNDS_API_ROOT}/resubmit/${refund_reference}`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\naddHeaders(options: any): any {\n const csrfToken = this.meta.getTag('name=csrf-token');\n const headers = {};\n if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n if (csrfToken.content === null) {\n if( document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')) !== undefined ) {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')).split('=')[1]; \n } else {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith(' XSRF-TOKEN')).split('=')[1];\n }\n } else {\n headers['CSRF-Token'] = csrfToken.content;\n }\n options.headers = new HttpHeaders(headers);\n options.responseType = 'text';\n return options;\n}\n}\n","import {Component, OnInit, Input} from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport {RefundsService} from '../../services/refunds/refunds.service';\nimport { IRefundAction } from '../../interfaces/IRefundAction';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { IRefundRejectReason } from '../../interfaces/IRefundRejectReason';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { ActivatedRoute,Router } from '@angular/router';\n\n@Component({\n selector: 'ccpay-process-refund',\n templateUrl: './process-refund.component.html',\n styleUrls: ['./process-refund.component.css']\n})\nexport class ProcessRefundComponent implements OnInit {\n @Input() refundReference: string;\n @Input() refundlistsource: IRefundList;\n\n processRefundForm: FormGroup;\n\n errorMessage = this.getErrorMessage(false, '', '', '');\n sendmeback: string = null;\n viewStatus: string;\n refundActionList: IRefundAction[] = []; \n refundRejectReasonList: IRefundRejectReason[] = []; \n isSendMeBackClicked: boolean = false;\n isRejectClicked: boolean = false;\n isOtherClicked: boolean = false;\n isSuccesspageEnable: boolean = false;\n\n refundActionsHasError: boolean = false;\n refundRejectReasonHasError: boolean = false;\n isReasonFieldEmpty: boolean = false;\n isReasonFieldInvalid: boolean = false;\n reasonFieldMinHasError: boolean = false;\n reasonFieldMaxHasError: boolean = false;\n isReasonEmpty: boolean = false;\n isReasonInvalid: boolean = false;\n successMsg: string = null;\n navigationpage: string;\n ccdCaseNumber: string;\n isFromRefundListPage: boolean;\n\n isConfirmButtondisabled: boolean = true;\n constructor(private RefundsService: RefundsService,\n private formBuilder: FormBuilder,\n private OrderslistService: OrderslistService,\n private paymentLibComponent: PaymentLibComponent,\n private router: Router,\n private activeRoute: ActivatedRoute) {\n }\n\n ngOnInit() {\n this.viewStatus = 'RefundProcess';\n this.RefundsService.getRefundActions(this.refundReference).subscribe(\n refundActionList => {\n this.refundActionList = <any>refundActionList;\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err, err);\n }\n );\n this.processRefundForm = this.formBuilder.group({\n refundActionField: new FormControl('', Validators.compose([\n Validators.required\n ])),\n refundRejectReasonField: new FormControl('', Validators.compose([\n Validators.required\n ])),\n sendMeBackField: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$'),\n\n ])),\n enterReasonField: new FormControl('', Validators.compose([\n Validators.required,\n Validators.maxLength(30),\n Validators.pattern('^([a-zA-Z0-9.\\\\s]*)$'),\n ])),\n });\n this.ccdCaseNumber = this.refundlistsource.ccd_case_number;\n\n if((typeof this.paymentLibComponent.TAKEPAYMENT === 'string' && this.paymentLibComponent.TAKEPAYMENT === 'false') || (typeof this.paymentLibComponent.TAKEPAYMENT === 'boolean' && !this.paymentLibComponent.TAKEPAYMENT) ) {\n this.isFromRefundListPage = true;\n }\n }\n checkRefundActions(code: string) {\n this.refundActionsHasError = false;\n this.isReasonFieldEmpty = false;\n this.isReasonEmpty = false;\n this.isReasonInvalid = false;\n this.refundRejectReasonHasError = false;\n if(code === 'Return to caseworker') {\n this.isConfirmButtondisabled = true;\n this.isSendMeBackClicked = true;\n this.isRejectClicked = false;\n this.isOtherClicked = false;\n\n } else if (code === 'Approve') {\n this.isSendMeBackClicked = false;\n this.isConfirmButtondisabled = false;\n this.isRejectClicked = false;\n this.isOtherClicked = false;\n\n } else if (code === 'Reject') {\n this.isRejectClicked = true;\n this.isSendMeBackClicked = false;\n this.isOtherClicked = false;\n this.RefundsService.getRefundRejectReasons().subscribe(\n refundRejectReasonList => {\n this.refundRejectReasonList = <any>refundRejectReasonList;\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err, err);\n }\n );\n } else if (code === 'RE005') {\n this.isOtherClicked = true;\n } else if (code !== 'RE005') {\n this.isOtherClicked = false;\n }\n }\n processRefundSubmit() {\n let processRefundRequest;\n let status;\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n const controls = this.processRefundForm.controls;\n const processFormError = controls.sendMeBackField.errors;\n\n if (this.processRefundForm.dirty && controls.refundActionField.valid \n && (controls.refundActionField.value == 'Approve'\n || (controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.valid && controls.refundRejectReasonField.value != 'RE005')\n || (controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.value == 'RE005' && controls.enterReasonField.valid)\n || (controls.refundActionField.value == 'Return to caseworker' && controls.sendMeBackField.valid))) {\n if (controls.refundActionField.value === 'Approve'){\n status = 'APPROVE';\n processRefundRequest = {\n code:'',\n reason: ''\n };\n } else if (controls.refundActionField.value === 'Reject') {\n status = 'REJECT';\n\n processRefundRequest = {\n code: controls.refundRejectReasonField.value ? controls.refundRejectReasonField.value : '',\n reason: controls.refundRejectReasonField.value == 'RE005' ? controls.enterReasonField.value : ''\n };\n } else if (controls.refundActionField.value === 'Return to caseworker') {\n status = 'SENDBACK';\n\n processRefundRequest = {\n code: '',\n reason: controls.sendMeBackField.value\n };\n }\n this.RefundsService.patchRefundActions(processRefundRequest, this.refundReference, status).subscribe(\n response => {\n this.isSuccesspageEnable = true;\n // this.successMsg = JSON.parse(response)['data'];\n this.successMsg = response.replace(/['\"]+/g, '');\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err, err);\n }\n );\n } else {\n if(controls.refundActionField.value == \"\") {\n this.resetForm([true, false, false, false, false, false, false, false], 'action');\n }\n if(controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.value == \"\") {\n this.resetForm([false, true, false, false, false, false, false, false], 'rejectReason');\n }\n if(controls.refundActionField.value == 'Return to caseworker') {\n if(controls.sendMeBackField.value == '' ) {\n this.resetForm([false, false, true, false, false, false, false, false], 'addAreason');\n }\n if(controls.sendMeBackField.value != '' && controls.sendMeBackField.invalid ) {\n this.resetForm([false, false, false, true, false, false, false, false], 'addAreason');\n }\n if(processFormError && processFormError.minlength && processFormError.minlength.actualLength < 3 ) {\n this.resetForm([false, false, false, false, true, false, false, false], 'addAreason');\n }\n if(processFormError && processFormError.maxlength && processFormError.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, false, false, true, false, false], 'addAreason');\n }\n }\n if(controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.value == 'RE005') {\n if(controls.enterReasonField.value === \"\") {\n this.resetForm([false, false, false, false, false, false, true, false], 'enterReason');\n }\n if(controls.enterReasonField.value!== \"\" && controls.enterReasonField.invalid) {\n this.resetForm([false, false, false, false, false, false, false, true], 'enterReason');\n }\n }\n }\n\n }\n getErrorMessage(isErrorExist, status, errorMsg, err) {\n let bodyTxt = 'Please try again later';\n if (status !== 500) {\n if (errorMsg !== undefined) {\n bodyTxt = errorMsg;\n } else {\n bodyTxt = err;\n }\n \n }\n return {\n title: 'Something went wrong',\n body: bodyTxt,\n showError: isErrorExist\n };\n }\n loadRefundListPage() {\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n if (this.navigationpage === 'casetransactions') {\n // window.location.href='/refund-list?takePayment=false&refundlist=true';\n // // this.OrderslistService.setnavigationPage('casetransactions');\n // // this.OrderslistService.setisFromServiceRequestPage(false);\n // // this.paymentLibComponent.VIEW ='case-transactions';\n // // this.paymentLibComponent.viewName = 'case-transactions';\n // // this.paymentLibComponent.ISBSENABLE = true;\n // // this.paymentLibComponent.isRefundStatusView = false;\n this.paymentLibComponent.viewName = 'refundstatuslist';\n this.paymentLibComponent.isRefundStatusView = true;\n } else {\n this.paymentLibComponent.viewName = 'refundstatuslist';\n this.paymentLibComponent.isRefundStatusView = true;\n }\n }\n loadRefundsHomePage() {\n if(typeof this.paymentLibComponent.TAKEPAYMENT === 'string' && this.paymentLibComponent.TAKEPAYMENT === 'false') {\n //window.location.href='/refund-list?takePayment=false&refundlist=true';\n this.paymentLibComponent.viewName = 'refund-list';\n }\n else {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.VIEW ='case-transactions';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n }\n }\n redirecttoRefundListPage() {\n if((typeof this.paymentLibComponent.TAKEPAYMENT === 'string' && this.paymentLibComponent.TAKEPAYMENT === 'false') || (typeof this.paymentLibComponent.TAKEPAYMENT === 'boolean' && !this.paymentLibComponent.TAKEPAYMENT) ) {\n // window.location.href='/refund-list?takePayment=false&refundlist=true';\n this.paymentLibComponent.viewName = 'refund-list';\n }\n else {\n this.loadRefundListPage();\n }\n }\n // loadCaseTransactionPage() {\n // this.paymentLibComponent.isRefundStatusView = false;\n // this.paymentLibCo}mponent.TAKEPAYMENT = true;\n // this.paymentLibComponent.viewName = 'case-transactions';\n // this.paymentViewService.getBSfeature().subscribe(\n // features => {\n // let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n // this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n // },\n // err => {\n // this.paymentLibComponent.ISBSENABLE = false;\n // }\n // );\n\n // let partUrl = `selectedOption=${this.paymentLibComponent.SELECTED_OPTION}`;\n // partUrl += this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n // partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n // partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n // partUrl += this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n // partUrl += `&caseType=${this.paymentLibComponent.CASETYPE}`;\n // partUrl += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n // partUrl += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n // let url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=true&${partUrl}`;\n // this.router.navigateByUrl(url);\n // }\n\n resetForm(vals, field) {\n if(field==='action' || field==='all') {\n this.refundActionsHasError = vals[0];\n }\n if(field==='rejectReason' || field==='all') {\n this.refundRejectReasonHasError = vals[1];\n }\n if(field==='addAreason' || field==='all') {\n this.isReasonFieldEmpty = vals[2];\n this.isReasonFieldInvalid = vals[3];\n this.reasonFieldMinHasError = vals[4];\n this.reasonFieldMaxHasError = vals[5];\n }\n if(field==='enterReason' || field==='all') {\n this.isReasonEmpty = vals[6];\n this.isReasonInvalid = vals[7];\n }\n }\n\n goToCaseReview() {\n this.router.navigate([`/cases/case-details/${this.ccdCaseNumber}`], {relativeTo: this.activeRoute});\n }\n}\n","import {Component, OnInit, Input} from '@angular/core';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { IRefundList } from '../../interfaces/IRefundList';\n\n@Component({\n selector: 'ccpay-refund-list',\n templateUrl: './refund-list.component.html',\n styleUrls: ['./refund-list.component.css']\n})\nexport class RefundListComponent implements OnInit {\n @Input('USERID') USERID: string;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: any[];\n @Input('LOGGEDINUSEREMAIL') LOGGEDINUSEREMAIL:string;\n\n constructor(private refundService: RefundsService) {\n }\n\n tableApprovalHeader: string;\n tableRejectedHeader: string;\n submittedRefundList: IRefundList[] = [];\n rejectedRefundList: IRefundList[] = [];\n approvalStatus = 'Sent for approval';\n rejectStatus = 'Update required';\n // approvalStatus = 'sent for approval';\n // rejectStatus = 'sent back';\n errorMessage = null;\n isApproveTableVisible:boolean;\n isRejectTableVisible:boolean;\n dropdownvalue: string;\n isAuthorized: boolean = true;\n userLst\n ngOnInit() {\n \n this.userLst = this.LOGGEDINUSERROLES;\n\n \n if(this.LOGGEDINUSERROLES.some(i =>i.includes('payments-refund-approver'))){\n this.isAuthorized = true;\n } else {\n this.isApproveTableVisible = false;\n this.isAuthorized = false;\n }\n\n \n this.tableApprovalHeader = 'Refunds to be approved';\n this.tableRejectedHeader = 'Refunds returned to caseworker';\n\n if(this.isAuthorized) {\n this.refundService.getRefundList(this.approvalStatus,true).subscribe(\n refundList => {\n this.submittedRefundList = refundList['refund_list'];\n this.isApproveTableVisible = true;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n }\n\n this.refundService.getRefundList(this.rejectStatus,false).subscribe(\n refundList => {\n this.rejectedRefundList = refundList['refund_list'];\n this.isRejectTableVisible = true;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n\n }\n \n}","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {Observable} from 'rxjs/internal/Observable';\n\nimport {ICardDetails} from '../../interfaces/ICardDetails';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { catchError } from 'rxjs/operators';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class CardDetailsService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getCardDetails(paymentReference: string): Observable<ICardDetails> {\n this.logger.info('Card-detail-service getCardDetails for: ', paymentReference);\n\n return this.http.get<ICardDetails>(`${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}/details`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit } from '@angular/core';\nimport { CardDetailsService } from '../../services/card-details/card-details.service';\nimport {ICardDetails} from '../../interfaces/ICardDetails';\nimport { PaymentLibComponent } from '../../payment-lib.component';\n\n@Component({\n selector: 'ccpay-card-details',\n templateUrl: './card-details.component.html',\n styleUrls: ['./card-details.component.css']\n})\nexport class CardDetailsComponent implements OnInit {\n pageTitle: string = 'Card details';\n cardDetails: ICardDetails;\n paymentReference: string;\n errorMessage: string;\n\n constructor(private cardDetailsService: CardDetailsService,\n private paymentLibComponent: PaymentLibComponent) { }\n\n ngOnInit() {\n this.cardDetailsService.getCardDetails(this.paymentLibComponent.paymentReference).subscribe(\n cardDetails => this.cardDetails = cardDetails,\n (error: any) => this.errorMessage = <any>error\n );\n }\n\n get getPaymentReference(): string {\n return this.paymentReference;\n }\n\n}\n","import { Component } from '@angular/core';\n\n@Component({\n template: `\n <h1>This is not the page you were looking for!</h1>\n `\n})\nexport class PageNotFoundComponent { }\n","import { Injectable } from '@angular/core';\nimport { PaymentLibService } from '../../payment-lib.service';\nimport { HttpClient } from '@angular/common/http';\nimport { IStatusHistories } from '../../interfaces/IStatusHistories';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { catchError } from 'rxjs/operators';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class StatusHistoryService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getPaymentStatusesByReference(paymentReference: string, paymentMethod: string): Observable<IStatusHistories> {\n this.logger.info('Status-history-service getPaymentStatusesByReference for: ', paymentReference);\n\n return this.http.get<IStatusHistories>(paymentMethod === 'card' || paymentMethod === 'cash' || paymentMethod === 'cheque' || paymentMethod === 'postal order' ?\n `${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}/statuses` :\n `${this.paymentLibService.API_ROOT}/credit-account-payments/${paymentReference}/statuses`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { IStatusHistories } from '../../interfaces/IStatusHistories';\nimport { StatusHistoryService } from '../../services/status-history/status-history.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\n\n@Component({\n selector: 'ccpay-payment-statuses',\n templateUrl: './status-history.component.html',\n styleUrls: ['./status-history.component.css']\n})\nexport class StatusHistoryComponent implements OnInit {\n @Input() isTakePayment: boolean;\n pageTitle: string = 'Payment status history';\n statuses: IStatusHistories;\n errorMessage: string;\n\n constructor(private statusHistoryService: StatusHistoryService,\n private paymentLibComponent: PaymentLibComponent) { }\n\n ngOnInit() {\n this.statusHistoryService.getPaymentStatusesByReference(this.paymentLibComponent.paymentReference, this.paymentLibComponent.paymentMethod).subscribe(\n statuses => this.statuses = statuses,\n (error: any) => this.errorMessage = <any>error.replace(/\"/g,\"\")\n );\n \n }\n\n}\n","import { Component, Input, OnInit } from '@angular/core';\nimport { IPayment } from '../../interfaces/IPayment';\n\n@Component({\n selector: 'ccpay-pba-details',\n templateUrl: './pba-details.component.html',\n styleUrls: ['./pba-details.component.css']\n})\nexport class PbaDetailsComponent implements OnInit {\n @Input() payment: IPayment;\n\n constructor() { }\n\n ngOnInit() {\n }\n\n}\n","import { Injectable } from '@angular/core';\nimport { Logger } from './logger.service';\n\nexport let isDebugMode = false;\n\nconst noop = (): any => undefined;\n\n@Injectable({\n providedIn: 'root'\n})\nexport class ConsoleLoggerService implements Logger {\n\n get info() {\n if (isDebugMode) {\n return console.info.bind(console);\n } else {\n return noop;\n }\n }\n\n get warn() {\n if (isDebugMode) {\n return console.warn.bind(console);\n } else {\n return noop;\n }\n }\n\n get error() {\n if (isDebugMode) {\n return console.error.bind(console);\n } else {\n return noop;\n }\n }\n\n invokeConsoleMethod(type: string, args?: any): void {\n const logFn: Function = (console)[type] || console.log || noop;\n logFn.apply(console, [args]);\n }\n}\n","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {LoggerService} from '../shared/logger/logger.service';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport {catchError} from 'rxjs/operators';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class CaseTransactionsService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService\n ) { }\n\n getPaymentGroups(ccdCaseNumber: string): Observable<IPaymentGroup[]> {\n this.logger.info('Case-transactions-service getPaymentGroups for: ', ccdCaseNumber);\n\n return this.http.get<IPaymentGroup[]>(`${this.paymentLibService.API_ROOT}/cases/${ccdCaseNumber}/paymentgroups`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {catchError} from 'rxjs/operators';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class BulkScaningPaymentService {\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService\n ) { }\n\n getBSPaymentsByCCD(ccdCaseNumber: string): Observable<IBSPayments> {\n return this.http.get<IBSPayments>(`${this.paymentLibService.BULKSCAN_API_ROOT}/cases/${ccdCaseNumber}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getBSPaymentsByDCN(dcn: string): Observable<IBSPayments> {\n return this.http.get<IBSPayments>(`${this.paymentLibService.BULKSCAN_API_ROOT}/cases?document_control_number=${dcn}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSAllocatePayment(body: AllocatePaymentRequest, paymentRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentRef}/bulk-scan-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSPaymentStrategic(body: AllocatePaymentRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/bulk-scan-payments-strategic`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSWoPGStrategic(body: AllocatePaymentRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/bulk-scan-payments-strategic`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n patchBSChangeStatus(dcnNumber: string, status: string): Observable<any> {\n return this.https.patch(`${this.paymentLibService.API_ROOT}/bulk-scan-payments/${dcnNumber}/status/${status}`, status).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n calculateOutStandingAmount(paymentGroup: IPaymentGroup): number {\n let feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00;\n\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n });\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n } \n return (feesTotal - remissionsTotal) - paymentsTotal;\n }\n\n removeUnwantedString(input: string, replaceText: string) {\n const pattern = /[\\_]/gi;\n return input.replace(pattern, replaceText);\n }\n\n downloadSelectedReport(reportName: string, startDate: string, endDate:string): Observable<any> {\n return this.https.get(`${this.paymentLibService.BULKSCAN_API_ROOT}/report/data?date_from=${startDate}&date_to=${endDate}&report_type=${reportName}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { CaseTransactionsService } from '../../services/case-transactions/case-transactions.service';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IPaymentView } from '../../interfaces/IPaymentView';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { Router } from '@angular/router';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-case-transactions',\n templateUrl: './case-transactions.component.html',\n styleUrls: ['./case-transactions.component.css']\n})\nexport class CaseTransactionsComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input() isTakePayment: boolean;\n takePayment: boolean;\n ccdCaseNumber: string;\n excReference: string;\n paymentGroups: any[] = [];\n payments: IPayment[] = [];\n nonPayments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n fees: IFee[] = [];\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalNonOffPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n paymentRef: string;\n isTurnOff: boolean;\n isNewPcipalOff: boolean;\n isRefundRemission: boolean = true;\n isOldPcipalOff: boolean;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = true;\n isExceptionRecord: boolean = false;\n isUnprocessedRecordSelected: boolean = false;\n exceptionRecordReference: string;\n isAnyFeeGroupAvilable: boolean = true;\n isHistoricGroupAvailable: boolean = false;\n isBulkScanEnable;\n isRemissionsMatch: boolean;\n viewStatus = 'main';\n isRemoveBtnDisabled: boolean = false;\n feeId: IFee;\n clAmountDue: number = 0;\n unprocessedRecordCount: number;\n isFeeRecordsExist: boolean = false;\n isGrpOutstandingAmtPositive: boolean = false;\n totalRefundAmount: Number;\n caseType: String;\n // lsCcdNumber: any = ls.get<any>('ccdNumber');\n payment: IPayment;\n paymentGroup: IPaymentGroup;\n paymentView: IPaymentView;\n\n //Order changes\n orderDetail: any[] = [];\n\n isAddRemissionEnable: boolean = false;\n orderRemissionDetails: any[] = [];\n orderLevelFees: IOrderReferenceFee[] = [];\n ispaymentGroupApisuccess: boolean = false;\n cpoDetails: any = null;\n orderRef: string;\n orderStatus: string;\n orderParty: string;\n orderCreated: Date;\n orderCCDEvent: string;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n orderFeesTotal: number = 0.00;\n orderRemissionTotal: number = 0.00;\n orderTotalPayments: number = 0.00;\n orderPendingPayments: number = 0.00;\n isCPODown: boolean;\n test: boolean;\n isPBA: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n isAddRemissionBtnEnabled: boolean = false;\n isRefundRemissionBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n isEligible4PBAPayment = ['pui-finance-manager', 'pui-user-manager', 'pui-organisation-manager', 'pui-case-manager'];\n currentDate = new Date();\n isFromServiceRequestPage: boolean;\n navigationpage: string;\n remissionFeeAmt: number;\n constructor(private router: Router,\n private paymentViewService: PaymentViewService,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private caseTransactionsService: CaseTransactionsService,\n private paymentLibComponent: PaymentLibComponent,\n private OrderslistService: OrderslistService\n ) { }\n\n ngOnInit() {\n this.navigationpage = '';\n if(this.OrderslistService.getpaymentPageView() !== null) {\n this.OrderslistService.getpaymentPageView().subscribe((data) => this.paymentView = data);\n }\n if((this.LOGGEDINUSERROLES === undefined || this.LOGGEDINUSERROLES.length === 0 )&&this.OrderslistService.getUserRolesList() !== null) {\n this.OrderslistService.getUserRolesList().subscribe((data) => this.LOGGEDINUSERROLES = data);\n }\n if(this.OrderslistService.getnavigationPageValue() !== null) {\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n }\n \n if (this.paymentView !== undefined && this.paymentView !== null && this.paymentView.payment_group_reference !== undefined && this.navigationpage === 'paymentdetailspage') {\n this.goToPayementView(this.paymentView.payment_group_reference, this.paymentView.reference, this.paymentView.method);\n }\n this.isGrpOutstandingAmtPositive = false;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.caseType = this.paymentLibComponent.CASETYPE;\n if (this.paymentLibComponent.CCD_CASE_NUMBER === '') {\n this.ccdCaseNumber = this.paymentLibComponent.EXC_REFERENCE;\n }\n this.excReference = this.paymentLibComponent.EXC_REFERENCE;\n this.takePayment = this.paymentLibComponent.TAKEPAYMENT;\n const serviceRequest = this.paymentLibComponent.SERVICEREQUEST;\n if ( serviceRequest !== undefined && serviceRequest.toString() === 'true' ) {\n this.serviceRequestValue = 'true';\n } else {\n this.serviceRequestValue = 'false';\n }\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isNewPcipalOff = this.paymentLibComponent.ISNEWPCIPALOFF;\n this.isOldPcipalOff = this.paymentLibComponent.ISOLDPCIPALOFF;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n if (!this.isTurnOff) {\n // if (this.lsCcdNumber !== this.ccdCaseNumber) {\n // this.router.navigateByUrl(`/ccd-search?takePayment=true`);\n // }\n\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.isAnyFeeGroupAvilable =true;\n this.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts();\n this.calculateOrderFeesAmounts();\n this.calculateRefundAmount();\n if (this.isFromServiceRequestPage) {\n this.OrderslistService.getSelectedOrderRefId().subscribe((data) => this.orderRef = data);\n this.goToOrderViewDetailSection(this.orderRef);\n } else {\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).content[0];\n \n },\n (error: any) => {\n this.errorMessage = <any>error ? error.replace(/\"/g,\"\") : \"\";\n this.isCPODown = true;\n }\n );\n \n }\n\n \n },\n (error: any) => {\n this.errorMessage = <any>error ? error.replace(/\"/g,\"\") : \"\";\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n } else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.isAnyFeeGroupAvilable =true;\n this.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts();\n this.calculateOrderFeesAmounts();\n this.totalRefundAmount = this.calculateRefundAmount();\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).content[0];\n\n },\n (error: any) => {\n this.errorMessage = <any>error ? error.replace(/\"/g,\"\") : \"\";\n this.setDefaults();\n this.isCPODown = true;\n }\n );\n\n },\n (error: any) => {\n this.errorMessage = <any>error ? error.replace(/\"/g,\"\") : \"\";\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n }\n\n if( this.paymentGroups !== undefined) {\n this.checkForExceptionRecord();\n }\n \n if(this.OrderslistService.getisFromServiceRequestPages() !== null) {\n this.OrderslistService.getisFromServiceRequestPages().subscribe((data) => this.isFromServiceRequestPage = data);\n }\n \n }\n\n setDefaults(): void {\n this.totalPayments = 0.00;\n this.totalRemissions = 0.00;\n this.totalNonOffPayments = 0.00;\n this.totalFees = 0.00;\n }\n\n getAllocationStatus(payments: any) {\n\n let paymentAllocation = payments.payment_allocation,\n isAllocationStatusExist = paymentAllocation.length > 0;\n return isAllocationStatusExist ? paymentAllocation[0].allocation_status : '-';\n //return \"-\";\n\n }\n\n checkForExceptionRecord(): void {\n \n if (this.paymentGroups.length === 0 && (this.selectedOption.toLocaleLowerCase() === 'ccdorexception' || this.selectedOption.toLocaleLowerCase() === 'rc')) {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n recordData => {\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length > 0 && recordData['data'].ccd_reference > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length > 0 && recordData['data'].ccd_reference === undefined) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n }\n\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length === undefined && recordData['data'].ccd_reference > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n });\n }\n\n if (this.paymentGroups.length === 0 && this.selectedOption.toLocaleLowerCase() === 'dcn') {\n if (this.paymentLibComponent.CCD_CASE_NUMBER.length > 0 && this.paymentLibComponent.EXC_REFERENCE.length > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n } else if (this.paymentLibComponent.CCD_CASE_NUMBER.length === 0 && this.paymentLibComponent.EXC_REFERENCE.length > 0) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n } else {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n }\n if (this.paymentGroups.length > 0)\n this.paymentGroups.forEach(paymentGroup => {\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.case_reference !== undefined && payment.ccd_case_number === undefined) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n } else {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n\n });\n }\n });\n }\n\n calculateOrderFeesAmounts(): void {\n let feesTotal = 0.00;\n this.paymentGroups.forEach(paymentGroup => {\n this.resetOrderVariables();\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.orderFeesTotal = this.orderFeesTotal + fee.calculated_amount\n }\n )\n }\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n this.orderRemissionTotal = this.orderRemissionTotal + remission.hwf_amount;\n });\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n this.orderTotalPayments = this.orderTotalPayments + payment.amount;\n }\n });\n }\n\n // this.orderPendingPayments = (this.orderFeesTotal - this.orderRemissionTotal) - this.orderTotalPayments;\n if (paymentGroup.service_request_status === 'Paid') {\n this.orderStatus = paymentGroup.service_request_status;\n this.orderAddBtnEnable = false;\n } else if (paymentGroup.service_request_status === 'Partially paid' || paymentGroup.service_request_status === 'Not paid') {\n this.orderStatus = paymentGroup.service_request_status;\n this.orderAddBtnEnable = true;\n } \n\n //this.orderLevelFees.push({orderRefId:paymentGroup['payment_group_reference'],orderTotalFees: this.orderFeesTotal,orderStatus: this.orderStatus,orderParty:'Santosh', orderCCDEvent:'Case Creation',orderCreated: new Date(), orderAddBtnEnable: this.orderAddBtnEnable}); this.cpoDetails['createdTimestamp']\n if (this.cpoDetails !== null) {\n this.orderLevelFees.push({ orderRefId: paymentGroup['payment_group_reference'], orderTotalFees: this.orderFeesTotal, orderStatus: this.orderStatus, orderParty: this.cpoDetails['responsibleParty'], orderCCDEvent: this.cpoDetails['action'], orderCreated: paymentGroup['date_created'], orderAddBtnEnable: this.orderAddBtnEnable });\n\n } else {\n this.orderLevelFees.push({ orderRefId: paymentGroup['payment_group_reference'], orderTotalFees: this.orderFeesTotal, orderStatus: this.orderStatus, orderParty: '', orderCCDEvent: '', orderCreated: paymentGroup['date_created'], orderAddBtnEnable: this.orderAddBtnEnable });\n }\n\n if (this.orderStatus !== 'Paid') {\n this.OrderslistService.setOrdersList(this.orderLevelFees);\n }\n });\n };\n\n resetOrderVariables(): void {\n this.orderFeesTotal = 0.00;\n this.orderTotalPayments = 0.00;\n this.orderRemissionTotal = 0.00;\n this.orderPendingPayments = 0.00;\n this.isAddFeeBtnEnabled = true;\n\n };\n\n goToOrderViewDetailSection(orderReferenceObj: any) {\n if (this.isFromServiceRequestPage) {\n this.OrderslistService.setOrderRefId(orderReferenceObj);\n this.orderRef = orderReferenceObj;\n } else {\n this.OrderslistService.setOrderRefId(orderReferenceObj.orderRefId);\n this.orderRef = orderReferenceObj.orderRefId;\n }\n\n this.orderFeesTotal = 0.00;\n this.orderRemissionTotal = 0.00;\n this.orderTotalPayments = 0.00;\n this.orderPendingPayments = 0.00;\n\n this.orderDetail = this.paymentGroups.filter(x => x.payment_group_reference === this.orderRef);\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.fees) {\n orderDetail.fees.forEach(fee => {\n this.orderFeesTotal = this.orderFeesTotal + fee.calculated_amount;\n });\n }\n if (orderDetail.remissions) {\n orderDetail.remissions.forEach(remission => {\n this.orderRemissionTotal = this.orderRemissionTotal + remission.hwf_amount;\n });\n if (orderDetail.payments) {\n this.payment = orderDetail.payments[0];\n orderDetail.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n this.orderTotalPayments = this.orderTotalPayments + payment.amount;\n }\n });\n }\n }\n this.orderStatus = orderDetail.service_request_status;\n });\n //this.orderPendingPayments = (this.orderFeesTotal - this.orderRemissionTotal) - this.orderTotalPayments;\n // this.orderRef = orderReferenceObj.orderRefId;\n // if (this.orderPendingPayments <= 0.00) {\n // this.orderStatus = 'Paid';\n // } else if (this.orderFeesTotal > 0 && (this.orderTotalPayments > 0 || this.orderRemissionTotal > 0) && (this.orderTotalPayments < this.orderPendingPayments)) {\n // this.orderStatus = 'Partially paid'\n // } else {\n // this.orderStatus = 'Not paid'\n // }\n\n\n if (this.cpoDetails !== null) {\n this.orderParty = this.cpoDetails['responsibleParty'];\n this.orderCreated = this.cpoDetails['createdTimestamp'];\n this.orderCCDEvent = this.cpoDetails['action'];\n } else {\n this.orderParty = '';\n this.orderCCDEvent = '';\n this.orderCreated = orderReferenceObj.orderCreated;\n }\n this.viewStatus = 'order-full-view';\n }\n\n redirectToOrderFeeSearchPage(event: any, orderef: any) {\n if(orderef.orderAddBtnEnable) {\n event.preventDefault();\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = orderef.orderRefId;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n }\n\n \n\n\n calculateAmounts(): void {\n let feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00,\n nonOffLinePayment = 0.00;\n\n this.paymentGroups.forEach(paymentGroup => {\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n if (fee.date_created) {\n let a = fee.amount_due === undefined;\n let b = fee.amount_due <= 0;\n this.clAmountDue = a ? this.clAmountDue + fee.net_amount : b ? this.clAmountDue + 0 : this.clAmountDue + fee.amount_due;\n }\n fee['payment_group_reference'] = paymentGroup['payment_group_reference'];\n this.fees.push(fee);\n } else {\n feesTotal = feesTotal + fee.calculated_amount;\n this.fees.push(fee);\n }\n\n });\n }\n if (this.isTurnOff) {\n this.totalFees = feesTotal;\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n let allocationLen = payment.payment_allocation;\n\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n if (allocationLen.length === 0 || allocationLen.length > 0 && allocationLen[0].allocation_status === 'Allocated') {\n nonOffLinePayment = nonOffLinePayment + payment.amount;\n }\n if (allocationLen.length > 0) {\n this.nonPayments.push(payment);\n }\n }\n if (allocationLen.length === 0) {\n this.payments.push(payment);\n }\n payment.paymentGroupReference = paymentGroup.payment_group_reference\n this.allPayments.push(payment);\n } else {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n this.payments.push(payment);\n }\n payment.paymentGroupReference = paymentGroup.payment_group_reference\n this.allPayments.push(payment);\n }\n });\n }\n this.totalPayments = paymentsTotal;\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n this.totalNonOffPayments = nonOffLinePayment;\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remisison => {\n remissionsTotal = remissionsTotal + remisison.hwf_amount;\n this.remissions.push(remisison);\n });\n }\n this.totalRemissions = remissionsTotal;\n });\n\n }\n\n calculateRefundAmount() {\n if (!this.isTurnOff) {\n let isNewPaymentGroup = false;\n\n this.paymentGroups.forEach((paymentGroup, index) => {\n let grpOutstandingAmount = 0.00,\n feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00,\n fees = [];\n\n if (paymentGroup.fees) {\n // this.isFeeRecordsExist = true;\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n\n this.isRemissionsMatch = false;\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(rem => {\n if (rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n // if(!fees.find(k => k.code=fee.code))\n // {\n fees.push(fee);\n //}\n }\n });\n }\n if (!this.isRemissionsMatch) {\n fees.push(fee);\n }\n\n if (fee.date_created) {\n isNewPaymentGroup = true;\n } else {\n this.isHistoricGroupAvailable = true;\n this.paymentGroups[index]['old'] = true;\n }\n });\n this.paymentGroups[index].fees = fees;\n }\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n }\n grpOutstandingAmount = (feesTotal - remissionsTotal) - paymentsTotal;\n if (grpOutstandingAmount > 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = true;\n this.isFeeRecordsExist = true;\n this.paymentRef = paymentGroup.payment_group_reference;\n }\n if (paymentGroup.fees && paymentGroup.fees.length > 0 && grpOutstandingAmount <= 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = false;\n }\n });\n if ((!isNewPaymentGroup && this.isHistoricGroupAvailable) || (!isNewPaymentGroup && !this.isHistoricGroupAvailable)) {\n this.isAnyFeeGroupAvilable = false;\n }\n } else {\n let totalRefundAmount = 0,\n isFeeAmountZero = false;\n this.paymentGroups.forEach(paymentGroup => {\n let grpOutstandingAmount = 0.00,\n feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00;\n if (paymentGroup.fees) {\n this.isFeeRecordsExist = true;\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n if (fee.calculated_amount === 0) {\n isFeeAmountZero = true\n }\n });\n\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n }\n grpOutstandingAmount = (feesTotal - remissionsTotal) - paymentsTotal;\n if (grpOutstandingAmount < 0) {\n if (totalRefundAmount === 0) {\n totalRefundAmount = grpOutstandingAmount;\n } else {\n totalRefundAmount = (totalRefundAmount + grpOutstandingAmount);\n }\n }\n else if (grpOutstandingAmount > 0 || (grpOutstandingAmount === 0 && isFeeAmountZero)) {\n this.isGrpOutstandingAmtPositive = true;\n }\n });\n return totalRefundAmount * -1;\n }\n }\n\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n }\n\n redirectToFeeSearchPage(event: any) {\n event.preventDefault();\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n url += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n url += `&caseType=${this.caseType}`\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}${url}`);\n }\n\n addRemission(fee: IFee) {\n if(this.chkForAddRemission(fee.code)) {\n this.feeId = fee;\n this.viewStatus = 'addremission';\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error? error.replace(/\"/g,\"\") : \"\"\n );\n }\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n this.viewStatus = 'addrefundforremission';\n \n this.payment = payment;\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.payment.reference));\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n\n redirectToremissionPage(event: any) {\n event.preventDefault();\n this.paymentLibComponent.viewName = 'remission'\n }\n goToServiceRequestPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = false;\n this.paymentLibComponent.SERVICEREQUEST = 'true';\n this.paymentLibComponent.isFromServiceRequestPage = true;\n window.location.reload();\n }\n redirectToReportsPage(event: any) {\n event.preventDefault();\n this.router.navigateByUrl(`/reports?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}`);\n }\n\n loadFeeSummaryPage(paymentGroup: IPaymentGroup) {\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.payment_group_reference;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n\n goToPaymentViewComponent(paymentGroup: any) {\n this.paymentLibComponent.paymentMethod = paymentGroup.paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentGroup.paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n\n goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent({ paymentGroupReference, paymentReference, paymentMethod });\n }\n\n selectedUnprocessedFeeEvent(unprocessedRecordId: string) {\n if (unprocessedRecordId) {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = false;\n }\n this.isUnprocessedRecordSelected = true;\n } else {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = true;\n }\n this.isUnprocessedRecordSelected = false;\n }\n }\n\n getUnprocessedFeeCount(unProcessedRecordCount: number) {\n this.unprocessedRecordCount = unProcessedRecordCount;\n }\n\n calculateAmountDue(fee: IFee) {\n\n if (fee.date_created) {\n return fee.amount_due !== undefined ? fee.amount_due : fee.net_amount;\n } else {\n return \"0.00\";\n }\n }\n\n confirmRemoveFee(fee: IFee) {\n this.isRemoveBtnDisabled = false;\n this.feeId = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n cancelRemoval() {\n this.viewStatus = 'main';\n }\n\n removeFee(fee: any) {\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n window.location.reload();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n\n issueRefund(payment: IPayment) {\n if (payment !== null && payment !== undefined) {\n if(this.chkIssueRefundBtnEnable(payment)) {\n this.viewStatus = 'issuerefund';\n this.payment = payment;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.isRefundRemission = true;\n }\n }\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund()) {\n if (this.orderDetail[0]['remissions'].length > 0) {\n for (const remission of this.orderDetail[0]['remissions']) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n }\n return true;\n } else {\n return false;\n }\n }\n\n chkForPBAPayment(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isPBA = true;\n }\n });\n }\n });\n if (this.isPBA) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n this.isIssueRefunfBtnEnable = true;\n }\n if (this.isIssueRefunfBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n check4AllowedRoles2AccessPBApayment = (): boolean => {\n return this.isEligible4PBAPayment.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n if (payment !== null && payment !== undefined) {\n let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\n }\n }\n\n loadPBAAccountPage(orderRef: IPayment) {\n this.paymentLibComponent.pbaPayOrderRef = orderRef;\n this.paymentLibComponent.viewName = 'pba-payment';\n }\n}","export class PaymentToPayhubRequest {\n currency = 'GBP';\n description = 'PayBubble payment';\n channel = 'telephony';\n provider = 'pci pal';\n case_type: string;\n\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.case_type= caseType;\n }\n}\n","export class PayhubAntennaRequest {\n currency = 'GBP';\n case_type: string;\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.case_type= caseType;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IFee } from '../../interfaces/IFee';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { PayhubAntennaRequest } from '../../interfaces/PayhubAntennaRequest';\nimport { SafeHtml } from '@angular/platform-browser';\nimport {Router} from '@angular/router';\nimport {Location} from '@angular/common';\nimport { OrderslistService } from '../../services/orderslist.service';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-fee-summary',\n templateUrl: './fee-summary.component.html',\n styleUrls: ['./fee-summary.component.scss']\n})\n\nexport class FeeSummaryComponent implements OnInit {\n @Input() paymentGroupRef: string;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: string;\n @Input() caseType: string;\n @Input() isOldPcipalOff: string;\n @Input() isNewPcipalOff: string;\n\n\n bsPaymentDcnNumber: string;\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n viewStatus = 'main';\n currentFee: IFee;\n totalFee: number;\n payhubHtml: SafeHtml;\n service: string = \"\";\n platForm: string = \"\";\n upPaymentErrorMessage: string;\n selectedOption:string;\n isBackButtonEnable: boolean = true;\n outStandingAmount: number;\n isFeeAmountZero: boolean = false;\n totalAfterRemission: number = 0;\n isConfirmationBtnDisabled: boolean = false;\n isRemoveBtnDisabled: boolean = false;\n isPaymentExist: boolean = false;\n isRemissionsExist: Boolean = false;\n isRemissionsMatch = false;\n isStrategicFixEnable: boolean;\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private location: Location,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private OrderslistService: OrderslistService\n ) {}\n\n ngOnInit() {\n this.viewStatus = 'main';\n this.caseType = this.paymentLibComponent.CASETYPE;\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.setCaseType(this.paymentLibComponent.CASETYPE);\n if ((!this.isOldPcipalOff && this.isNewPcipalOff)) {\n this.platForm = '8x8';\n } else if ((this.isOldPcipalOff && !this.isNewPcipalOff)) {\n this.platForm = 'Antenna';\n } else if ((this.isOldPcipalOff && this.isNewPcipalOff)){\n this.platForm = '8x8';\n }\n\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n if (this.bsPaymentDcnNumber) {\n this.getUnassignedPaymentlist();\n }\n this.getPaymentGroup();\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.paymentLibComponent.DCN_NUMBER).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error';\n }\n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error'; \n } \n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n }\n\n }\n\n getRemissionByFeeCode(feeCode: string): IRemission {\n if (this.paymentGroup && this.paymentGroup.remissions && this.paymentGroup.remissions.length > 0) {\n for (const remission of this.paymentGroup.remissions) {\n if (remission.fee_code === feeCode) {\n return remission;\n }\n }\n }\n return null;\n }\n\n addRemission(fee: IFee) {\n this.currentFee = fee;\n this.viewStatus = 'add_remission';\n }\n\n getPaymentGroup() {\n let fees = [];\n this.paymentViewService.getPaymentGroupDetails(this.paymentGroupRef).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n this.isPaymentExist = paymentGroup.payments ? paymentGroup.payments.length > 0 : false;\n this.isRemissionsExist = paymentGroup.remissions ? paymentGroup.remissions.length > 0 : false;\n\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.totalAfterRemission = this.totalAfterRemission + fee.net_amount;\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true;\n }\n this.isRemissionsMatch = false;\n paymentGroup.remissions.forEach(rem => {\n if(rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n \n if(!this.isRemissionsMatch) {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees;\n }\n\n this.outStandingAmount = this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n\n confirmRemoveFee(fee: IFee){\n this.isRemoveBtnDisabled = false;\n this.currentFee = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n removeFee(fee: any){\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n if (this.paymentGroup.fees && this.paymentGroup.fees.length > 1){\n this.totalAfterRemission = 0;\n this.getPaymentGroup();\n this.viewStatus = 'main';\n return;\n }\n this.loadCaseTransactionPage();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n loadCaseTransactionPage() {\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n\n let partUrl = `selectedOption=${this.paymentLibComponent.SELECTED_OPTION}`;\n partUrl +=this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl +=this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl +=this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n\n let url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=true&${partUrl}`;\n this.router.navigateByUrl(url);\n }\n cancelRemission() {\n this.viewStatus = 'main';\n }\n redirectToFeeSearchPage(event: any, page?: string) {\n event.preventDefault();\n let partUrl =this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl +=this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl +=this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n\n if(this.viewStatus === 'feeRemovalConfirmation' || this.viewStatus === 'add_remission') {\n this.viewStatus = 'main';\n return;\n }\n let url = `/fee-search?ccdCaseNumber=${this.ccdCaseNumber}&selectedOption=${this.paymentLibComponent.SELECTED_OPTION}&paymentGroupRef=${this.paymentGroupRef}${partUrl}`;\n this.router.navigateByUrl(url);\n }\n takePayment() {\n this.isConfirmationBtnDisabled = true;\n const requestBody = new PaymentToPayhubRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType),\n antennaReqBody = new PayhubAntennaRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType);\n\n if(this.platForm === '8x8') {\n this.paymentViewService.postPaymentToPayHub(requestBody, this.paymentGroupRef).subscribe(\n response => {\n this.location.go(`payment-history?view=fee-summary`);\n this.payhubHtml = response;\n this.viewStatus = 'payhub_view';\n this.isBackButtonEnable=false;\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.router.navigateByUrl('/pci-pal-failure');\n }\n );\n } else if(this.platForm === 'Antenna') {\n\n this.paymentViewService.postPaymentAntennaToPayHub(antennaReqBody, this.paymentGroupRef).subscribe(\n response => {\n this.isBackButtonEnable=false;\n window.location.href = '/makePaymentByTelephoneyProvider';\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.router.navigateByUrl('/pci-pal-failure');\n }\n );\n }\n\n }\n\n goToAllocatePage(outStandingAmount: number, isFeeAmountZero: Boolean) {\n if (outStandingAmount > 0 || (outStandingAmount === 0 && isFeeAmountZero)) {\n this.paymentLibComponent.paymentGroupReference = this.paymentGroupRef;\n this.paymentLibComponent.viewName = 'allocate-payments';\n } else {\n this.loadCaseTransactionPage();\n }\n }\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\n\n\n\n@Component({\n selector: 'ccpay-error-banner',\n templateUrl: './error-banner.component.html',\n styleUrls: ['./error-banner.component.scss']\n})\n\nexport class ErrorBannerComponent implements OnInit {\n @Input('errorMessage') errorMessage;\n\n constructor(\n ) {}\n\n ngOnInit() {\n\n }\n}\n","\nexport class UnidentifiedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n unidentified_reason: string;\n\n constructor(payment_group_reference: string, payment_reference : string, unidentified_reason: any) {\n this.payment_allocation_status = {\n description: '',\n name: \"Unidentified\"\n };\n this.payment_group_reference = payment_group_reference ;\n this.payment_reference= payment_reference;\n this.unidentified_reason= unidentified_reason;\n\n }\n\n\n\n}\n","import { IBSPayments } from \"./IBSPayments\";\n\nexport class AllocatePaymentRequest {\n amount: Number;\n banked_date: String;\n ccd_case_number: String;\n exception_record: string;\n currency: String;\n document_control_number: String;\n external_provider: String;\n giro_slip_no: String;\n payer_name: String;\n payment_channel: Object;\n payment_status: Object;\n payment_method: String;\n case_type: String;\n payment_allocation_dto?: {\n allocation_reason: String,\n allocation_status: String,\n explanation: String,\n payment_allocation_status: Object,\n payment_group_reference: String,\n payment_reference: String,\n reason: String,\n receiving_office: String,\n unidentified_reason: String,\n user_id: String,\n user_name: String,\n case_type: String\n }\n\n constructor(ccd_case_number : string, unAllocatedPayment: IBSPayments, caseType: string, exceptionRecord: string, allocatedRequest?: any) {\n this.amount = unAllocatedPayment.amount;\n this.banked_date = unAllocatedPayment.date_banked;\n this.ccd_case_number = ccd_case_number;\n this.exception_record = exceptionRecord;\n this.currency= unAllocatedPayment.currency;\n this.document_control_number = unAllocatedPayment.dcn_reference;\n this.external_provider = 'exela';\n this.giro_slip_no = unAllocatedPayment.bgc_reference;\n this.payer_name = unAllocatedPayment.payer_name;\n this.payment_channel = {\n description: '',\n name: 'bulk scan'\n };\n this.payment_status ={\n description: 'bulk scan payment completed',\n name: 'success'\n }\n this.payment_method = unAllocatedPayment.payment_method;\n this.case_type= caseType;\n if(allocatedRequest) {\n this.payment_allocation_dto = allocatedRequest;\n }\n\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\n\n@Component({\n selector: 'app-mark-unidentified-payment',\n templateUrl: './mark-unidentified-payment.component.html',\n styleUrls: ['./mark-unidentified-payment.component.scss']\n})\nexport class MarkUnidentifiedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnidentifiedForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n isInvesticationDetailEmpty: boolean = false;\n investicationDetailHasError: boolean = false;\n investicationDetailMinHasError: boolean = false;\n investicationDetailMaxHasError: boolean = false;\n errorMessage = this.getErrorMessage(false);\n unassignedRecord:IBSPayments;\n siteID: string = null;\n investigationComment: string;\n isConfirmButtondisabled:Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n isStrategicFixEnable: boolean = true;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.markPaymentUnidentifiedForm = this.formBuilder.group({\n investicationDetail: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ]))\n });\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.getErrorMessage(false);\n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n saveAndContinue() {\n this.resetForm([false, false, false, false]);\n const investicationField = this.markPaymentUnidentifiedForm.controls.investicationDetail;\n const formerror = investicationField.errors;\n if (this.markPaymentUnidentifiedForm.dirty && this.markPaymentUnidentifiedForm.valid) {\n this.investigationComment = this.markPaymentUnidentifiedForm.controls.investicationDetail.value;\n this.viewStatus = 'unidentifiedContinueConfirm';\n }else {\n if(investicationField.value == '' ) {\n this.resetForm([true, false, false, false]);\n }\n if(investicationField.value != '' && investicationField.invalid ) {\n this.resetForm([false, true, false, false]);\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false, false, true, false]);\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, true]);\n }\n }\n }\n resetForm(val) {\n this.isInvesticationDetailEmpty = val[0];\n this.investicationDetailHasError = val[1];\n this.investicationDetailMinHasError = val[2];\n this.investicationDetailMaxHasError = val[3];\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const reason = this.markPaymentUnidentifiedForm.get('investicationDetail').value;\n\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Unidentified',\n payment_allocation_status: {\n description: '',\n name: 'Unidentified'\n },\n unidentified_reason: reason,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnidentifiedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, reason);\n if (response2.success) {\n this.paymentViewService.postBSUnidentifiedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n cancelMarkUnidentifiedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.markPaymentUnidentifiedForm.get('investicationDetail').value!==\"\"){\n this.viewStatus = 'unidentifiedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.viewStatus = 'mainForm';\n }\n }\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","\nexport class UnsolicitedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n receiving_office: string;\n receiving_email_address: string;\n sending_email_address: string;\n unidentified_reason: string;\n constructor(payment_group_reference: string, payment_reference : string, reason: string,responsible_office: string, responsible_person:string,email_id: string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Transferred\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.unidentified_reason= reason;\n this.receiving_office= responsible_office;\n this.receiving_email_address= email_id;\n this.sending_email_address= responsible_person;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\n\n\n@Component({\n selector: 'app-mark-unsolicited-payment',\n templateUrl: './mark-unsolicited-payment.component.html',\n styleUrls: ['./mark-unsolicited-payment.component.scss']\n})\nexport class MarkUnsolicitedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnsolicitedForm: FormGroup;\n viewStatus: string;\n reasonHasError: boolean = false;\n isReasonEmpty: boolean = false;\n reasonMinHasError: boolean = false;\n reasonMaxHasError: boolean = false;\n responsibleOfficeHasError: boolean = false;\n isResponsibleOfficeEmpty: boolean = false;\n errorMessage = this.getErrorMessage(false);\n ccdCaseNumber: string;\n bspaymentdcn: string;\n unassignedRecord: IBSPayments;\n siteID: string = null;\n reason: string;\n responsiblePerson: string;\n responsibleOffice: string;\n emailId: string;\n isConfirmButtondisabled: Boolean = false;\n isContinueButtondisabled: Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n selectedSiteId: string;\n selectedSiteName: string;\n isStrategicFixEnable: boolean = true;\n siteIDList;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.resetForm([false,false,false,false,false,false], 'all');\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.paymentViewService.getSiteID().subscribe(\n siteids => {\n this.isContinueButtondisabled = false;\n this.errorMessage = this.getErrorMessage(false);\n this.siteIDList = JSON.parse(siteids);\n },\n err => {\n window.scrollTo(0, 0);\n this.isContinueButtondisabled = true;\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n \n this.markPaymentUnsolicitedForm = this.formBuilder.group({\n reason: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n responsibleOffice: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s\\\\n,\\\\.-:]*)$')\n ])),\n responsiblePerson: new FormControl(''),\n emailId: new FormControl('')\n });\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const controls = this.markPaymentUnsolicitedForm.controls;\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Transferred',\n payment_allocation_status: {\n description: '',\n name: 'Transferred'\n },\n unidentified_reason: controls.reason.value,\n receiving_office: this.selectedSiteId,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n // controls.responsibleOffice.setValue('P219');\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const response1 = JSON.parse(res1),\n requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnsolicitedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, controls.reason.value, this.selectedSiteId, controls.responsiblePerson.value, controls.emailId.value);\n if (response2.success) {\n this.paymentViewService.postBSUnsolicitedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n saveAndContinue() {\n this.resetForm([false,false,false,false,false,false], 'all');\n const formerror = this.markPaymentUnsolicitedForm.controls.reason.errors;\n const reasonField = this.markPaymentUnsolicitedForm.controls.reason;\n //const officeIdField = this.selectedSiteId;\n const officeIdField = this.markPaymentUnsolicitedForm.controls.responsibleOffice;\n if (this.markPaymentUnsolicitedForm.dirty && this.markPaymentUnsolicitedForm.valid) {\n const controls = this.markPaymentUnsolicitedForm.controls;\n this.emailId = controls.emailId.value;\n this.responsibleOffice = officeIdField.value;\n this.responsiblePerson = controls.responsiblePerson.value;\n this.reason = controls.reason.value;\n this.viewStatus = 'unsolicitedContinueConfirm';\n }else {\n if( reasonField.value == '' ) {\n this.resetForm([true,false,false,false,false,false], 'reason');\n }\n if(reasonField.value != '' && this.markPaymentUnsolicitedForm.controls.reason.invalid ) {\n this.resetForm([false,true,false,false,false,false], 'reason');\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false,false,true,false,false,false], 'reason');\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false,false,false,true,false,false], 'reason');\n }\n if(officeIdField.value == '') {\n this.resetForm([false,false,false,false,true,false], 'responsibleOffice');\n }\n if(officeIdField.value != '' && officeIdField.invalid) {\n this.resetForm([false,false,false,false,false,true],'responsibleOffice');\n }\n }\n }\n resetForm(val, field) {\n if(field==='reason' || field==='all') {\n this.isReasonEmpty = val[0];\n this.reasonHasError = val[1];\n this.reasonMinHasError = val[2];\n this.reasonMaxHasError = val[3];\n }\n if(field==='responsibleOffice' || field==='all') {\n this.isResponsibleOfficeEmpty = val[4];\n this.responsibleOfficeHasError = val[5];\n }\n }\n\ncancelMarkUnsolicitedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.checkingFormValue()){\n this.viewStatus = 'unsolicitedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.markPaymentUnsolicitedForm.controls.responsibleOffice.setValue('');\n this.viewStatus = 'mainForm';\n }\n }\n checkingFormValue(){\n const formFields = this.markPaymentUnsolicitedForm.value;\n let valueExists = false;\n\n for (var field in formFields) {\n if (formFields.hasOwnProperty(field) && formFields[field] !==\"\") {\n valueExists = true;\n break;\n }\n }\n return valueExists;\n }\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n \n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n\n getErrorMessage(isErrorExist) {\n return {\n title: \"Something went wrong.\",\n body: \"Please try again later.\",\n showError: isErrorExist\n };\n }\n\n selectchange(args){ \n this.selectedSiteId = args.target.value; \n this.selectedSiteName = args.target.options[args.target.selectedIndex].text; \n } \n\n}\n","import { Component, OnInit, Output,Input, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport {Router} from '@angular/router';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-app-unprocessed-payments',\n templateUrl: './unprocessed-payments.component.html',\n styleUrls: ['./unprocessed-payments.component.scss']\n})\nexport class UnprocessedPaymentsComponent implements OnInit {\n\n @Input('FEE_RECORDS_EXISTS') FEE_RECORDS_EXISTS: boolean;\n @Input('PAYMENTREF') PAYMENTREF: string;\n @Input('ISTURNOFF') ISTURNOFF: boolean;\n @Input('IS_BUTTON_ENABLE') IS_BUTTON_ENABLE: boolean;\n @Input('IS_OS_AMT_AVAILABLE') IS_OS_AMT_AVAILABLE: boolean;\n @Input('ISNEWPCIPALOFF') ISNEWPCIPALOFF: boolean;\n @Input('ISOLDPCIPALOFF') ISOLDPCIPALOFF: boolean;\n @Input('ISSFENABLE') ISSFENABLE: boolean;\n @Input('PAYMENTSLENGTH') PAYMENTSLENGTH:Number;\n @Input('LEVEL')LEVEL:Number;\n\n @Output() selectedUnprocessedFeeEvent: EventEmitter<string> = new EventEmitter();\n @Output() getUnprocessedFeeCount: EventEmitter<string> = new EventEmitter();\n\n viewStatus = 'main';\n unassignedRecordList: IBSPayments;\n upPaymentErrorMessage: string = null;\n ccdCaseNumber: string;\n recordId: string = null;\n isRecordExist: boolean = false;\n dcnNumber: string = null;\n selectedOption: string;\n isUnprocessedRecordSelected: boolean = true;\n isAllocateToExistingFeebtnEnabled: boolean = false;\n isMarkAsUnidentifiedbtnEnabled: boolean = false;\n isAllocatedToNewFeebtnEnabled: boolean = false;\n isExceptionCase: boolean = false;\n serviceId: string = null;\n isBulkScanEnable;\n isNewpcipaloff;\n isOldpcipaloff;\n isTurnOff: boolean = true;\n isStFixEnable;\n unassignedRecordSelectedList: IBSPayments;\n unassignedRecordListLength: number = 0;\n showContent: boolean;\n\n constructor(private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private OrderslistService: OrderslistService\n ) { }\n\n ngOnInit() {\n // Todo ...\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isNewpcipaloff = this.paymentLibComponent.ISNEWPCIPALOFF;\n this.isOldpcipaloff = this.paymentLibComponent.ISOLDPCIPALOFF;\n this.isStFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.getFeeExists().subscribe( (data) => this.FEE_RECORDS_EXISTS = data);\n this.getUnassignedPaymentlist();\n\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.dcnNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n }\n\n }\n\n setValuesForUnassignedRecord(unassignedPayments) {\n \n this.unassignedRecordList = unassignedPayments.payments;\n if(this.unassignedRecordList){\n this.unassignedRecordListLength = unassignedPayments.payments.length\n }\n this.serviceId = unassignedPayments.responsible_service_id;\n if (unassignedPayments['ccd_reference'] === undefined) {\n this.isExceptionCase = true;\n }\n // this.isRecordExist = this.unassignedRecordList.length === 0;\n this.getUnprocessedFeeCount.emit(<any>this.unassignedRecordList.length);\n this.unprocessedPaymentSelectEvent(this.unassignedRecordList);\n }\n\n formatUnassignedRecordId(ID: Number) {\n return `unassignrecord-${ID}`;\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n\n redirectToFeeSearchPage(event: any, dcn_reference:any) {\n event.preventDefault();\n this.recordId = dcn_reference;\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n url += this.isOldpcipaloff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n url += this.isNewpcipaloff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}&dcn=${this.recordId}${url}`);\n }\n\n loadUnsolicitedPage(viewName: string, dcn_reference:any) {\n this.recordId = dcn_reference;\n this.paymentLibComponent.bspaymentdcn = this.recordId;\n this.paymentLibComponent.viewName = viewName;\n }\n\n unprocessedPaymentSelectEvent(selectedRecordReference: any) {\n this.isUnprocessedRecordSelected = true;\n this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit(selectedRecordReference);\n }\n\n resetButtons() {\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n }\n\n goToAllocatePage(dcn_reference:any) {\n this.paymentLibComponent.bspaymentdcn = dcn_reference;\n this.paymentLibComponent.unProcessedPaymentServiceId = this.serviceId\n this.paymentLibComponent.isTurnOff = this.ISTURNOFF;\n this.paymentLibComponent.isNewPcipalOff = this.ISNEWPCIPALOFF;\n this.paymentLibComponent.isOldPcipalOff = this.ISOLDPCIPALOFF;\n this.paymentLibComponent.ISSFENABLE = this.isStFixEnable;\n\n if(this.ISTURNOFF) {\n this.paymentLibComponent.paymentGroupReference = this.PAYMENTREF;\n this.paymentLibComponent.viewName = 'fee-summary';\n }else {\n this.paymentLibComponent.paymentGroupReference = null;\n this.paymentLibComponent.viewName = 'allocate-payments';\n }\n\n }\n\n validateButtons() {\n if ( this.isUnprocessedRecordSelected && this.isExceptionCase) {\n this.isMarkAsUnidentifiedbtnEnabled = true;\n } else if ( this.isUnprocessedRecordSelected && !this.isExceptionCase && !this.FEE_RECORDS_EXISTS) {\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = true;\n } else if( this.isUnprocessedRecordSelected && !this.isExceptionCase && this.FEE_RECORDS_EXISTS ) {\n if(!this.ISTURNOFF) {\n this.isAllocateToExistingFeebtnEnabled = true;\n this.isAllocatedToNewFeebtnEnabled = false;\n } else {\n this.isAllocateToExistingFeebtnEnabled = this.IS_OS_AMT_AVAILABLE;\n this.isAllocatedToNewFeebtnEnabled = true;\n }\n }\n }\n\n unprocessedPaymentUnSelectEvent(event: any) {\n event.preventDefault();\n this.recordId = null;\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n //this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit('');\n }\n\n showDetailRow(event: any,obj: any, i: any) {\n event.preventDefault();\n \n this.unassignedRecordSelectedList = obj;\n \n }\n}\n","import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport {IPayment} from '../../interfaces/IPayment';\nimport {Router} from '@angular/router';\n\n@Component({\n selector: 'ccpay-app-processed-payments',\n templateUrl: './processed-payments.component.html',\n styleUrls: ['./processed-payments.component.scss']\n})\nexport class ProcessedPaymentsComponent implements OnInit {\n\n @Input('NONPAYMENTS') NONPAYMENTS: IPayment[];\n @Output() goToPaymentViewComponent: EventEmitter<any> = new EventEmitter();\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService\n ) { }\n ngOnInit() {\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n redirectToPaymentViewPage(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent.emit({paymentGroupReference, paymentReference, paymentMethod});\n }\n}\n","\nexport class IAllocationPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n reason: string;\n explanation: string;\n user_name: string;\n constructor(payment_group_reference: string, payment_reference : string, reason? : string, explanation? : string, userName? : string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Allocated\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.reason = reason ? reason : null;\n this.explanation = explanation ? explanation : null;\n this.user_name = userName ? userName : null;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {CaseTransactionsService} from '../../services/case-transactions/case-transactions.service'; \nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport {IBSPayments} from '../../interfaces/IBSPayments';\nimport {AllocatePaymentRequest} from '../../interfaces/AllocatePaymentRequest';\nimport {IAllocationPaymentsRequest} from '../../interfaces/IAllocationPaymentsRequest';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n\n\n@Component({\n selector: 'app-allocate-payments',\n templateUrl: './allocate-payments.component.html',\n styleUrls: ['./allocate-payments.component.scss']\n})\nexport class AllocatePaymentsComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() caseType: string;\n\n overUnderPaymentForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n recordId:string;\n feedbackUrlLabel:string;\n unAllocatedPayment: IBSPayments = {\n amount: 0\n };\n siteID: string = null;\n errorMessage = this.errorHandlerService.getServerErrorMessage(false, false, '');\n paymentGroup: IPaymentGroup;\n paymentGroups: IPaymentGroup[] = [];\t\n remainingAmount: number;\n isRemainingAmountGtZero: boolean;\n isMoreDetailsBoxHide: boolean = true;\n isRemainingAmountLtZero: boolean;\n afterFeeAllocateOutstanding: number;\n amountForAllocation: number;\n isConfirmButtondisabled: boolean = false;\n isContinueButtondisabled: boolean = true;\n otherPaymentExplanation: string = null;\n selectedOption: string = null;\n isFeeAmountZero: boolean = false;\t\n\n paymentReasonHasError: boolean = false;\n paymentExplanationHasError: boolean = false;\n isPaymentDetailsEmpty: boolean = false;\n isPaymentDetailsInvalid: boolean = false;\n paymentDetailsMinHasError: boolean = false;\n paymentDetailsMaxHasError: boolean = false;\n isUserNameEmpty: boolean = false;\n isUserNameInvalid: boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n paymentReason: string = null;\n paymentExplanation: string = null;\n userName: string = null;\n paymentSectionLabel: any;\n paymentRef: string = null;\n isStrategicFixEnable: boolean = true;\n orderLevelFees: IOrderReferenceFee[] = [];\n cookieUserName: string[] = [];\n enCookieUserName: any;\n userNameField: string = null;\n\n reasonList: { [key: string]: { [key: string]: string } }= {\n overPayment: {\n hwfReward: 'Help with Fees (HWF) awarded. Please include the HWF reference number in the explanatory note',\n wrongFee: 'Incorrect payment received',\n notIssueCase: 'Unable to issue case',\n otherDeduction: 'Other'\n },\n shortFall: {\n helpWithFee: 'Help with Fees (HWF) application declined',\n wrongFee: 'Incorrect payment received',\n other: 'Other'\n }\n }\n explanationList = {\n overPayment: {\n referRefund: 'Details in case notes. Refund due',\n noRefund: 'Details in case notes. No refund due',\n noCase: 'No case created. Refund due',\n other: 'Other'\n },\n shortFall: {\n holdCase: 'I have put a stop on the case and contacted the applicant requesting the balance of payment',\n heldCase: 'I have put a stop on the case. The applicant needs to be contacted to request the balance of payment',\n other: 'Other'\n }\n }\n\n refund = {\n reason: {\n duplicate: 'Duplicate payment',\n humanerror: 'Human error',\n caseWithdrawn: 'Case withdrawn',\n other: 'Other'\n }\n }\n\n\n constructor(\n private errorHandlerService: ErrorHandlerService,\n private caseTransactionsService: CaseTransactionsService,\n private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n if (this.paymentLibComponent.paymentGroupReference !== null) {\n this.viewStatus = 'allocatePaymentConfirmation';\n }\n \n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.paymentRef = this.paymentLibComponent.paymentGroupReference;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.isTurnOff = this.paymentLibComponent.isTurnOff;\n this.overUnderPaymentForm = this.formBuilder.group({\n moreDetails: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n userName: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s]*)$')\n ])),\n });\n this.OrderslistService.getOrdersList().subscribe( (data) =>\n this.orderLevelFees = data.filter(data => data.orderStatus !== 'Paid'));\n this.OrderslistService.getCaseType().subscribe( (data) => this.caseType = data);\n this.getUnassignedPayment();\n }\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n }\n\n getPaymentGroupDetails(){\n\n if(!this.isTurnOff){\n this.paymentViewService.getPaymentGroupDetails(this.paymentRef).subscribe(\n paymentGroup => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false, false, '');\n this.paymentGroup = paymentGroup;\n this.saveAndContinue();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\n }\n );\n }else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false, false, '');\n this.paymentGroups = paymentGroups['payment_groups'].filter(paymentGroup => {\n paymentGroup.fees.forEach(fee => {\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true\n }\n });\n let fstCon = this.getGroupOutstandingAmount(<IPaymentGroup>paymentGroup),\n scndCn = fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero) && paymentGroup.payment_group_reference === this.paymentRef;\n return this.paymentRef ? scndCn : fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero);\n });\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\n }\n );\n }\n\n }\n\n selectedPaymentGroup(paymentGroup: IPaymentGroup) {\t\n this.isContinueButtondisabled = false;\t\n this.paymentGroup = paymentGroup;\t\n }\t\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n\n gotoSummaryPage(event: any) { \n event.preventDefault();\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n\n cancelAllocatePayment(event: any){\n event.preventDefault();\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n if(!this.isTurnOff){\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n } else {\n this.viewStatus = 'mainForm';\t\n }\n }\n confirmAllocatePayement(){\n this.enCookieUserName = document.cookie.split(\";\").find(row => row.includes(\"user-info\")).split(\"=\")[1].split(\";\");\n this.cookieUserName = JSON.parse(decodeURIComponent(this.enCookieUserName));\n \n const fullName = this.cookieUserName['forename'] + ' ' + this.cookieUserName['surname'];\n\n const paymentDetailsField = this.overUnderPaymentForm.controls.moreDetails,\n paymentFormError = this.overUnderPaymentForm.controls.moreDetails.errors,\n userNameField = fullName,\n isEmptyCondtion = this.paymentReason && this.paymentExplanation,\n isOtherOptionSelected = this.paymentExplanation === 'Other';\n\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n if ( (!this.isRemainingAmountGtZero && !this.isRemainingAmountLtZero) || isEmptyCondtion && (!isOtherOptionSelected && userNameField.length > 0 || isOtherOptionSelected && userNameField.length > 0 && paymentDetailsField.valid)) {\n this.isConfirmButtondisabled = true;\n this.otherPaymentExplanation = this.paymentExplanation === 'Other' ? paymentDetailsField.value : this.paymentExplanation;\n this.userName = userNameField;\n this.finalServiceCall();\n }else {\n if(!this.paymentReason) {\n this.resetForm([true, false, false, false, false, false, false, false], 'reason');\n }\n if(!this.paymentExplanation) {\n this.resetForm([false, true, false, false, false, false, false, false], 'explanation');\n }\n if(this.paymentExplanation && isOtherOptionSelected) {\n if(paymentDetailsField.value == '' ) {\n this.resetForm([false, false, true, false, false, false, false, false], 'other');\n }\n if(paymentDetailsField.value != '' && paymentDetailsField.invalid ) {\n this.resetForm([false, false, false, true, false, false, false, false], 'other');\n }\n if(paymentFormError && paymentFormError.minlength && paymentFormError.minlength.actualLength < 3 ) {\n this.resetForm([false, false, false, false, true, false, false, false], 'other');\n }\n if(paymentFormError && paymentFormError.maxlength && paymentFormError.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, false, false, true, false, false], 'other');\n }\n }\n if(userNameField.length === 0) {\n this.resetForm([false, false, false, false, false, false, true, false], 'username');\n }\n }\n }\n resetForm(vals, field) {\n if(field==='reason' || field==='all') {\n this.paymentReasonHasError = vals[0];\n }\n if(field==='explanation' || field==='all') {\n this.paymentExplanationHasError = vals[1];\n }\n if(field==='other' || field==='all') {\n this.isPaymentDetailsEmpty = vals[2];\n this.isPaymentDetailsInvalid = vals[3];\n this.paymentDetailsMinHasError = vals[4];\n this.paymentDetailsMaxHasError = vals[5];\n }\n if(field==='username' || field==='all') {\n this.isUserNameEmpty = vals[6];\n this.isUserNameInvalid = vals[7];\n }\n }\n finalServiceCall() {\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n reason: this.paymentReason,\n allocation_status:'Allocated',\n explanation: this.otherPaymentExplanation,\n payment_allocation_status: {\n description: '',\n name: 'Allocated'\n },\n payment_group_reference: this.paymentGroup.payment_group_reference,\n case_type: this.caseType,\n user_name: this.userName\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unAllocatedPayment, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSPaymentStrategic(postStrategicBody , this.paymentGroup.payment_group_reference).subscribe(\n res => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false, false, '');\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n });\n\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false, false, '');\n let response1 = JSON.parse(res1);\n if (response1.success) {\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unAllocatedPayment, this.siteID, this.exceptionReference);\n this.bulkScaningPaymentService.postBSAllocatePayment(requestBody, this.paymentGroup.payment_group_reference).subscribe(\n res2 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false, false, '');\n let response2 = JSON.parse(res2);\n const reqBody = new IAllocationPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, this.paymentReason, this.otherPaymentExplanation, this.userName);\n if (response2.success) {\n this.paymentViewService.postBSAllocationPayments(reqBody).subscribe(\n \n res3 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false, false, '');\n let response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n ); \n }\n }\n\n saveAndContinue(){\n if(this.paymentGroup) {\n this.isMoreDetailsBoxHide = true;\n this.overUnderPaymentForm.get('moreDetails').reset();\n this.overUnderPaymentForm.get('moreDetails').setValue('');\n this.overUnderPaymentForm.get('userName').reset();\n this.overUnderPaymentForm.get('userName').setValue('');\n this.paymentReason = '';\n this.paymentExplanation = '';\n let GroupOutstandingAmount = this.getGroupOutstandingAmount(this.paymentGroup);\n const remainingToBeAssigned = this.unAllocatedPayment.amount - GroupOutstandingAmount;\n this.isRemainingAmountGtZero = remainingToBeAssigned > 0;\n this.isRemainingAmountLtZero = remainingToBeAssigned < 0;\n this.paymentSectionLabel = this.isRemainingAmountGtZero ? { \n title: 'There is an Over payment of',\n reason: 'Provide a reason. This will be used in the Refund process.',\n }: this.isRemainingAmountLtZero ? { \n title: 'There is an Under payment of',\n reason: 'Provide a reason',\n }: { \n title:'Amount left to be allocated',\n reason:'',\n };\n this.feedbackUrlLabel = this.isRemainingAmountGtZero ? 'CONFIRMALLOCATION_SURPLUS' : this.isRemainingAmountLtZero ? 'CONFIRMALLOCATION_SHORTFALL' : 'CONFIRMALLOCATION';\n this.remainingAmount = this.isRemainingAmountGtZero ? remainingToBeAssigned : this.isRemainingAmountLtZero ? remainingToBeAssigned * -1 : 0;\n this.afterFeeAllocateOutstanding = remainingToBeAssigned >= 0 ? 0 : (remainingToBeAssigned * -1);\n this.amountForAllocation = GroupOutstandingAmount >= this.unAllocatedPayment.amount ? this.unAllocatedPayment.amount : GroupOutstandingAmount;\n if(this.isTurnOff){\n this.viewStatus = 'allocatePaymentConfirmation';\t\n }\n }\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false, false, '');\n this.unAllocatedPayment = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n this.getPaymentGroupDetails();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\n }\n );\n }\n selectRadioButton(key, type) {\n this.isMoreDetailsBoxHide = true;\n if( type === 'explanation' && key === 'other' ){\n this.isPaymentDetailsEmpty = false;\n this.isPaymentDetailsInvalid = false;\n this.paymentDetailsMinHasError = false;\n this.paymentDetailsMaxHasError = false;\n this.isMoreDetailsBoxHide = false;\n }\n }\n OrderListSelectEvent(orderef: any){\n this.isContinueButtondisabled = false;\n this.recordId= orderef;\n }\n\n redirectToOrderFeeSearchPage() {\n // this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = this.recordId;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n}\n}\n","import { IFee } from './IFee';\n\nexport class AddRemissionRequest {\n beneficiary_name: string;\n ccd_case_number: string;\n fee: IFee;\n hwf_amount: number;\n hwf_reference: string;\n payment_group_reference: string;\n case_type: string;\n\n constructor(ccd_case_number: string, fee: IFee, hwf_amount: number, hwf_reference: string, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.fee = fee;\n this.hwf_amount = hwf_amount;\n this.hwf_reference = hwf_reference;\n this.case_type = caseType;\n }\n}\n","export class AddRetroRemissionRequest {\n hwf_amount: number;\n hwf_reference: string;\n\n constructor(hwf_amount: number, hwf_reference: string) {\n this.hwf_amount = hwf_amount;\n this.hwf_reference = hwf_reference;\n }\n}\n","export class PostRefundRetroRemission {\n payment_reference: string;\n refund_reason: string;\n \n constructor(payment_reference : string, refund_reason : string) {\n this.payment_reference= payment_reference;\n this.refund_reason = refund_reason;\n } \n}","export class PostIssueRefundRetroRemission {\n remissionReference: string;\n \n constructor(remissionReference : string) {\n this.remissionReference= remissionReference;\n } \n}","import { Component, OnInit, Input, Output, EventEmitter} from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl, RequiredValidator } from '@angular/forms';\nimport { IFee } from '../../interfaces/IFee';\nimport {Router} from '@angular/router';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { RefundsRequest } from '../../interfaces/RefundsRequest';\nimport { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';\nimport { IssueRefundRequest } from '../../interfaces/IssueRefundRequest';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\nimport { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';\nimport {ChangeDetectorRef} from '@angular/core';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { OrderslistService } from '../../services/orderslist.service';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-add-remission',\n templateUrl: './add-remission.component.html',\n styleUrls: ['./add-remission.component.scss']\n})\nexport class AddRemissionComponent implements OnInit {\n @Input() fee: IFee;\n @Input() payment: IPayment;\n @Input() remission: IRemission;\n @Input() ccdCaseNumber: string;\n @Input() caseType: string;\n @Input() viewCompStatus: string;\n @Input() paymentGroupRef: string;\n @Input() isTurnOff: boolean;\n @Input() isRefundRemission: boolean;\n @Input() isOldPcipalOff: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() isStrategicFixEnable: boolean;\n @Input() paidAmount: any;\n @Input() isFromRefundListPage: boolean;\n @Input() isFromPaymentDetailPage: boolean;\n @Input() isFromServiceRequestPage: boolean;\n @Input() feeamount: number;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input('orderDetail') orderDetail: any[];\n @Input('orderRef') orderRef: string;\n @Input('orderStatus') orderStatus: string;\n @Input('orderParty') orderParty: string;\n @Input('orderCreated') orderCreated: Date;\n @Input('orderCCDEvent') orderCCDEvent: string;\n @Input('takepayment') takePayment: boolean;\n @Input('orderFeesTotal') orderFeesTotal: number;\n @Input('orderTotalPayments') orderTotalPayments: number;\n @Input('orderRemissionTotal') orderRemissionTotal: number;\n @Output() cancelRemission: EventEmitter<void> = new EventEmitter();\n //@Output() refundListReason: EventEmitter<any> = new EventEmitter({reason:string, code:string});\n @Output() refundListReason = new EventEmitter<{reason: string, code: string}>();\n @Output() refundListAmount: EventEmitter<string> = new EventEmitter();\n\n refund = {\n reason: {\n duplicate: 'Duplicate payment',\n humanerror: 'Human error',\n caseWithdrawn: 'Case withdrawn',\n other: 'Other'\n }\n }\n\n remissionForm: FormGroup;\n hasErrors = false;\n viewStatus = 'main';\n errorMessage = null;\n option: string = null;\n isConfirmationBtnDisabled: boolean = false;\n bsPaymentDcnNumber: string;\n selectedValue = 'yes';\n amount: any;\n retroRemission: boolean = false;\n remissionReference: string = '';\n refundReference: string;\n refundAmount: string;\n paymentExplanationHasError: boolean = false;\n refundReason:string;\n selectedRefundReason: string;\n displayRefundReason: string;\n refundCode:string;\n remessionPayment:IPayment;\n isRemissionCodeEmpty: boolean = false;\n remissionCodeHasError: boolean = false;\n isAmountEmpty: boolean = false;\n isReasonEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n refundHasError:boolean = false;\n isPaymentSuccess: boolean = false;\n isRemissionApplied: boolean = false;\n remissionamt:number;\n // refundReasons: any[] = [];\n commonRefundReasons: any[] = [];\n showReasonText: boolean;\n isRefundReasonsSelected: boolean;\n default: string;\n reasonLength: number;\n refundReasons:IRefundReasons[];\n pattern1: string;\n pattern2: string;\n sendOrderDetail: any[];\n sendOrderRef: string;\n component: { account_number: string; amount: number; case_reference: string; ccd_case_number: string; channel: string; currency: string; customer_reference: string; date_created: string; date_updated: string; description: string; method: string; organisation_name: string; payment_allocation: any[]; reference: string; service_name: string; site_id: string; status: string; };\n\n constructor(private formBuilder: FormBuilder,\n private router: Router,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private refundService: RefundsService,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.default = 'Select a different reason';\n this.pattern1 = '^([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})$';\n this.pattern2 = '^([A-Za-z]{2}[0-9]{2})-([0-9]{6})$';\n if(this.viewCompStatus !== '' && this.viewCompStatus !== undefined){\n this.viewStatus = '';\n }\n if(this.remission) {\n }\n if(this.fee) {\n this.amount = (this.fee.volume * this.fee.calculated_amount);\n }\n if (this.payment){\n this.remessionPayment = this.payment;\n if(this.payment.status === 'Success') {\n this.isPaymentSuccess = true;\n }\n }\n this.option = this.paymentLibComponent.SELECTED_OPTION;\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.remissionForm = this.formBuilder.group({\n remissionCode: new FormControl('', \n Validators.compose([\n Validators.required,\n Validators.pattern(`(${this.pattern1})|(${this.pattern2})`)\n ]) \n ),\n amount: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[0-9]+(\\.[0-9]{1,2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n refundDDReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl()\n });\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundDDReason'].setValue('Select a different reason', {onlySelf: true});\n \n if(this.viewCompStatus === ''){\n this.viewStatus = 'main';\n }\n \n if(this.viewCompStatus === 'issuerefund'){\n this.refundService.getRefundReasons().subscribe(\n refundReasons => { \n this.refundReasons = refundReasons.filter((data) => data.recently_used === false);\n this.refundReasons = this.refundReasons.filter((data) => data.name !== 'Retrospective remission');\n this.cd.detectChanges();\n this.commonRefundReasons = refundReasons.filter((data) => data.recently_used === true);\n this.commonRefundReasons.sort((a, b) => a.toString().localeCompare(b));\n this.cd.detectChanges();\n } );\n }\n \n if(this.viewCompStatus === 'processretroremissonpage' && this.isFromRefundListPage){\n this.viewStatus = 'processretroremissonpage';\n }\n\n }\n\n addRemission() {\n this.resetRemissionForm([false, false, false, false, false, false], 'All');\n const remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount > remissionctrls.amount.value; \n this.remissionForm.controls['refundReason'].setErrors(null);\n this.remissionForm.controls['refundDDReason'].setErrors(null);\n if (this.remissionForm.dirty && this.remissionForm.valid && isRemissionLessThanFee) {\n this.viewStatus = 'confirmation';\n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false, false], 'amount');\n }\n if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true, false], 'amount');\n }\n }\n }\n\n confirmRemission() {\n this.isConfirmationBtnDisabled = true;\n const newNetAmount = this.remissionForm.controls.amount.value,\n remissionAmount = this.fee.net_amount - newNetAmount,\n requestBody = new AddRemissionRequest\n (this.ccdCaseNumber, this.fee, remissionAmount, this.remissionForm.controls.remissionCode.value, this.caseType);\n this.paymentViewService.postPaymentGroupWithRemissions(decodeURIComponent(this.paymentGroupRef).trim(), this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response).success) {\n let LDUrl = this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable'\n LDUrl += `&caseType=${this.caseType}`\n LDUrl += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable'\n LDUrl += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable'\n if (this.paymentLibComponent.bspaymentdcn) {\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(`/payment-history/${this.ccdCaseNumber}?view=fee-summary&selectedOption=${this.option}&paymentGroupRef=${this.paymentGroupRef}&dcn=${this.paymentLibComponent.bspaymentdcn}${LDUrl}`);\n }else {\n this.gotoCasetransationPage();\n }\n\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n }\n );\n }\n\n resetRemissionForm(val, field){\n if (field==='All'){\n this.isRemissionCodeEmpty = val[0];\n this.remissionCodeHasError = val[1];\n this.isAmountEmpty = val[2];\n this.amountHasError = val[3];\n this.isRemissionLessThanFeeError = val[4];\n this.isReasonEmpty = val[5];\n } else if(field==='remissionCode' || field==='All') {\n this.isRemissionCodeEmpty = val[0];\n this.remissionCodeHasError = val[1];\n } else if (field==='amount' || field==='All'){\n this.isAmountEmpty = val[2];\n this.amountHasError = val[3];\n this.isRemissionLessThanFeeError = val[4];\n } else if (field==='reason' || field==='All'){\n this.isReasonEmpty = val[5];\n }\n }\n\n // Add retro remission changes\n addRemissionCode() {\n this.errorMessage = false;\n this.viewStatus = '';\n this.isRefundRemission = false;\n this.resetRemissionForm([false, false, false, false, false, false], 'All');\n const remissionctrls=this.remissionForm.controls\n // isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value; \n this.remissionForm.controls['refundReason'].setErrors(null);\n this.remissionForm.controls['refundDDReason'].setErrors(null);\n this.remissionForm.controls['amount'].setErrors(null);\n if (this.remissionForm.dirty && this.remissionForm.valid ) {\n this.viewCompStatus = '';\n this.viewStatus = \"processretroremissonpage\";\n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false], 'amount');\n }\n if(remissionctrls['reason'].value == '') {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n }\n if(remissionctrls.amount.valid){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n }\n \n }\n }\n\n\n gotoAddRetroRemissionCodePage() {\n this.errorMessage = false;\n if(this.isRefundRemission) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListAmount.emit();\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n }\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n } \n this.viewStatus = '';\n this.selectedValue = 'yes';\n this.viewCompStatus = \"addremission\";\n this.isRefundRemission = true;\n this.errorMessage = '';\n if(this.isFromPaymentDetailPage) {\n this.paymentLibComponent.viewName = 'payment-view';\n }\n }\n\n gotoCheckRetroRemissionPage(payment: IPayment) {\n this.paymentLibComponent.iscancelClicked = false;\n this.errorMessage = '';\n this.resetRemissionForm([false, false, false, false, false], 'All');\n if( !this.isRefundRemission) {\n var remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value; \n if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' || remissionctrls['amount'].value < 0) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, false, false, true, false], 'amount');\n } else if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n }\n }\n } else {\n var remissionctrls=this.remissionForm.controls;\n //if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' || remissionctrls['amount'].value < 0 ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n this.refundListAmount.emit(remissionctrls['amount'].value);\n }\n //}\n \n }\n }\n\n gotoProcessRetroRemissionPage() {\n this.viewStatus = '';\n this.viewCompStatus = 'addremission';\n this.isRefundRemission = true;\n this.errorMessage = '';\n }\n\n confirmRetroRemission() {\n if(!this.isConfirmationBtnDisabled) {\n this.retroRemission = true;\n this.remissionamt = this.remissionForm.controls.amount.value;\n const requestBody = new AddRetroRemissionRequest(this.remissionamt,this.remissionForm.controls.remissionCode.value )\n this.paymentViewService.postPaymentGroupWithRetroRemissions(decodeURIComponent(this.paymentGroupRef).trim(), this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.isRemissionApplied = true;\n this.viewCompStatus = '';\n this.viewStatus = 'retroremissionconfirmationpage';\n this.remissionReference =JSON.parse(response).remission_reference;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n }\n );\n }\n }\n\n processRefund() {\n this.errorMessage = '';\n this.isConfirmationBtnDisabled = true;\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n if (this.remissionReference === undefined || this.remissionReference === '') {\n this.remissionReference = this.remission.remission_reference;\n }\n const requestBody = new PostIssueRefundRetroRemission(this.remissionReference);\n this.paymentViewService.postRefundRetroRemission(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n })\n }\n\n // Issue Refund changes\n\n gotoIssueRefundConfirmation(payment: IPayment) {\n this.paymentLibComponent.iscancelClicked = false;\n if(this.paymentLibComponent.REFUNDLIST === \"true\") {\n this.isFromRefundListPage = true; \n }\n this.errorMessage = '';\n this.refundReason = this.remissionForm.controls['refundReason'].value === null ? this.remissionForm.controls['refundDDReason'].value : this.remissionForm.controls['refundReason'].value;\n if(!this.refundReason || this.refundReason === 'Select a different reason') {\n this.refundHasError = true;\n } else if(this.selectedRefundReason.includes('Other') && (this.remissionForm.controls['reason'].value == '' || this.remissionForm.controls['reason'].value == null)) {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n } else if (this.selectedRefundReason.includes('Other') && this.remissionForm.controls['reason'].value !== '') {\n this.refundHasError = false;\n this.refundReason += '-' + this.remissionForm.controls['reason'].value;\n this.displayRefundReason = this.selectedRefundReason + '-' + this.remissionForm.controls['reason'].value;\n if ( this.isFromRefundListPage ) {\n this.refundListReason.emit({reason: this.displayRefundReason, code: this.refundReason});\n } else {\n this.viewCompStatus = '';\n this.viewStatus = 'checkissuerefundpage';\n }\n \n } else {\n this.displayRefundReason = this.selectedRefundReason;\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n } else {\n this.viewCompStatus = '';\n this.viewStatus = 'checkissuerefundpage';\n }\n \n }\n }\n\n gotoIssueRefundPage() {\n this.errorMessage = '';\n this.viewCompStatus = 'issuerefund';\n this.viewStatus = '';\n this.isRefundRemission = true;\n this.errorMessage = false;\n this.refundHasError = false;\n this.isReasonEmpty = false;\n }\n\n changeIssueRefundReason() {\n // this.remissionForm.controls['refundReason'].setValue('Duplicate payment');\n this.errorMessage = '';\n this.refundHasError = false;\n this.isReasonEmpty = false;\n this.viewCompStatus = 'issuerefund';\n this.viewStatus = '';\n this.isRefundRemission = true;\n }\n\n confirmIssueRefund() {\n this.isConfirmationBtnDisabled = true;\n this.errorMessage = '';\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n \n const requestBody = new PostRefundRetroRemission(this.payment.reference,this.refundReason);\n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference =JSON.parse(response).refund_reference;\n if(JSON.parse(response).refund_amount) {\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n })\n }\n\n// Retro Refund\n\n confirmRetroRefund() {\n this.isConfirmationBtnDisabled = true;\n this.errorMessage = '';\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n\n const requestBody = new PostRefundRetroRemission(this.payment.reference,'RR004-Retrospective remission');\n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'retrorefundconfirmationpage';\n this.refundReference =JSON.parse(response).refund_reference;\n if(JSON.parse(response).refund_amount) {\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n });\n }\n\n selectRadioButton(key, value) {\n localStorage.setItem(\"myradio\", key);\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundDDReason'].setValue('Select a different reason', {onlySelf: true});\n remissionctrls['reason'].reset();\n this.isRefundReasonsSelected = true;\n this.errorMessage = false;\n this.isReasonEmpty = false;\n this.showReasonText = false;\n this.refundHasError = false;\n this.selectedRefundReason = key;\n if(this.selectedRefundReason.includes('Other')) {\n this.showReasonText = true;\n this.refundHasError = false;\n this.refundReason = key;\n }\n }\n\n selectchange(args) {\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundReason'].reset();\n remissionctrls['reason'].reset();\n this.isRefundReasonsSelected = false;\n this.showReasonText = false;\n this.refundHasError = false;\n this.selectedRefundReason = args.target.options[args.target.options.selectedIndex].id;\n this.reasonLength = (29-this.selectedRefundReason.split('- ')[1].length);\n\n if(this.selectedRefundReason.includes('Other')) {\n this.showReasonText = true;\n this.refundHasError = false;\n this.refundReason = args.target.options[args.target.options.selectedIndex].id;\n }\n\n\n }\n\n gotoServiceRequestPage(event: any) {\n this.errorMessage ='';\n event.preventDefault();\n if (this.isFromServiceRequestPage && !this.isFromPaymentDetailPage) {\n this.viewStatus = 'order-full-view';\n this.viewCompStatus = '';\n } else if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n } else {\n this.paymentLibComponent.paymentMethod = this.payment.method;\n this.paymentLibComponent.paymentGroupReference = this.paymentLibComponent.paymentGroupReference\n this.paymentLibComponent.paymentReference = this.payment.reference;\n this.paymentLibComponent.viewName = 'payment-view';\n this.OrderslistService.setOrderRef(this.orderRef);\n this.OrderslistService.setorderCCDEvent(this.orderCCDEvent);\n this.OrderslistService.setorderCreated(this.orderCreated);\n this.OrderslistService.setorderDetail(this.orderDetail);\n this.OrderslistService.setorderParty(this.orderParty);\n this.OrderslistService.setorderTotalPayments(this.orderTotalPayments);\n this.OrderslistService.setorderRemissionTotal(this.orderRemissionTotal);\n this.OrderslistService.setorderFeesTotal(this.orderFeesTotal);\n this.viewStatus = 'payment-view';\n this.sendOrderDetail = this.orderDetail;\n this.sendOrderRef = this.orderRef;\n if(this.LOGGEDINUSERROLES === undefined) {\n this.OrderslistService.getUserRolesList().subscribe((data) => this.LOGGEDINUSERROLES = data);\n }\n this.viewCompStatus = '';\n }\n // if (this.paymentLibComponent.TAKEPAYMENT === undefined && this.paymentLibComponent.SERVICEREQUEST === undefined) {\n // this.paymentLibComponent.SERVICEREQUEST = 'false';\n // this.paymentLibComponent.TAKEPAYMENT = false;\n // }\n // if (this.isFromServiceRequestPage) {\n // //this.paymentLibComponent.TAKEPAYMENT = false;\n // this.paymentLibComponent.isFromRefundStatusPage = false;\n // this.viewStatus = 'main'\n // this.paymentLibComponent.viewName = 'case-transactions';\n // this.OrderslistService.setisFromServiceRequestPage(true);\n // this.OrderslistService.setnavigationPage('servicerequestpage');\n // }\n // if ( this.isFromRefundListPage ) {\n // this.paymentLibComponent.iscancelClicked = true;\n // this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n // this.paymentLibComponent.isFromRefundStatusPage = true;\n // } \n // if(!this.paymentLibComponent.isFromRefundStatusPage) {\n // if(this.payment) {\n // this.OrderslistService.setpaymentPageView({method: this.payment.method,payment_group_reference: this.paymentGroupRef, reference:this.payment.reference});\n // }\n // if (this.isFromServiceRequestPage) { \n // this.OrderslistService.setnavigationPage('servicerequestpage');\n // } else {\n // this.OrderslistService.setnavigationPage('paymentdetailspage');\n // }\n // this.errorMessage = '';\n // this.paymentLibComponent.viewName = 'case-transactions';\n // // this.paymentLibComponent.TAKEPAYMENT = true;\n // this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n // this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n // this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n // this.paymentLibComponent.isFromServiceRequestPage = true; \n // this.paymentLibComponent.ISBSENABLE = true;\n // let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n // partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n // partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n // partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n // partUrl += `&caseType=${this.caseType}`;\n // partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n // partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n // if(this.isFromPaymentDetailPage) {\n // partUrl += this.paymentLibComponent.isFromPaymentDetailPage\n // }\n // if(!this.paymentLibComponent.TAKEPAYMENT) {\n // this.paymentLibComponent.TAKEPAYMENT = undefined;\n // }\n // if ( this.paymentLibComponent.SERVICEREQUEST) {\n // const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&selectedOption=${this.option}${partUrl}`;\n // this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n // this.router.onSameUrlNavigation = 'reload';\n // this.router.navigateByUrl(url);\n // } else {\n // const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n // this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n // this.router.onSameUrlNavigation = 'reload';\n // this.router.navigateByUrl(url);\n // }\n \n // } else {\n // this.paymentLibComponent.viewName === 'refundstatuslist';\n // this.paymentLibComponent.isFromRefundStatusPage = true;\n // }\n }\n\n gotoCasetransationPage() {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.errorMessage = '';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.VIEW = 'case-transactions';\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n this.paymentLibComponent.isFromServiceRequestPage = true; \n this.resetOrderData();\n let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n\n gotoCasetransationPageCancelBtnClicked(event: Event) {\n event.preventDefault();\n if( !this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.VIEW ='case-transactions';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n // this.OrderslistService.setnavigationPage('casetransactions');\n // this.OrderslistService.setisFromServiceRequestPage(false);\n // this.paymentLibComponent.VIEW ='case-transactions';\n // this.paymentLibComponent.viewName = 'case-transactions';\n // this.paymentLibComponent.ISBSENABLE = true;\n // this.paymentLibComponent.isRefundStatusView = false;\n // this.resetOrderData(); let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n // partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n // partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n // partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n // partUrl += `&caseType=${this.caseType}`;\n // partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n // partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n // const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n // this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n // this.router.onSameUrlNavigation = 'reload';\n // this.router.navigateByUrl(url);\n } else { \n\n if (this.paymentLibComponent.REFUNDLIST) {\n this.paymentLibComponent.viewName = 'refund-list';\n return;\n }\n if (this.paymentLibComponent.TAKEPAYMENT === undefined && this.paymentLibComponent.SERVICEREQUEST === undefined) {\n this.paymentLibComponent.SERVICEREQUEST = 'false';\n }\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.OrderslistService.setpaymentPageView({method: '',payment_group_reference: '', reference:''});\n this.OrderslistService.setnavigationPage('casetransactions');\n this.errorMessage = '';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n this.paymentLibComponent.isFromServiceRequestPage = true; \n this.paymentLibComponent.ISBSENABLE = true;\n let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n if(this.isFromPaymentDetailPage) {\n partUrl += this.paymentLibComponent.isFromPaymentDetailPage\n }\n\n if(!this.paymentLibComponent.SERVICEREQUEST) {\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n } else {\n const url =`/payment-history/${this.ccdCaseNumber}?selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n }\n \n }\n\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n\n\n getFormattedCurrency(currency:number){\n if(currency.toString().includes(\".\")){\n return currency\n }\n return currency.toString().concat(\".00\");\n }\n \n}","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'ccdHyphens'\n})\nexport class CcdHyphensPipe implements PipeTransform {\n constructor() {}\n transform(value: any, args?: any): any {\n const pattern = /^([0-9]{4})+([0-9]{4})+([0-9]{4})+([0-9]{4})$/;\n if ( value.match(pattern)) {\n return value.replace(pattern,'$1-$2-$3-$4') \n }\n return value;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'capitalize'\n})\nexport class CapitalizePipe implements PipeTransform {\n constructor() { }\n transform(s: any, args?: any): any {\n return s && s[0].toUpperCase() + s.slice(1) || \"\";\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'keyValue'\n})\nexport class keyValuePipe implements PipeTransform {\n constructor() {}\n transform(input: any): any {\n let keys = [];\n for (let key in input) {\n if (input.hasOwnProperty(key)) {\n keys.push({ key: key, value: input[key]});\n }\n }\n return keys;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\nimport { DomSanitizer, SafeHtml } from '@angular/platform-browser';\n\n@Pipe({ name: 'sanitizeHtml' })\nexport class SanitizeHtmlPipe implements PipeTransform {\n constructor(private sanitizer: DomSanitizer) {}\n transform(value: any): SafeHtml {\n return this.sanitizer.bypassSecurityTrustHtml(value);\n }\n}\n","import { Injectable } from '@angular/core';\nimport * as FileSaver from 'file-saver';\nimport * as XLSX from 'xlsx';\nimport * as XLSXStyle from 'xlsx-style';\n\n\nconst EXCEL_TYPE = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8';\nconst EXCEL_EXTENSION = '.xlsx';\n\n@Injectable()\nexport class XlFileService {\n\n constructor() { }\n\n public exportAsExcelFile(json: any[], excelFileName: string): void {\n let worksheet: XLSX.WorkSheet; \n let workbook: XLSX.WorkBook; \n console.log(excelFileName);\n\n if(excelFileName.match('Data_Loss')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['loss_resp','payment_asset_dcn','env_ref','env_item','resp_service_id','resp_service_name','date_banked','bgc_batch','payment_method','amount']});\n worksheet = this.setDataLossReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Unprocessed')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','exception_ref','ccd_ref','date_banked','bgc_batch','payment_asset_dcn','env_ref','env_item','payment_method','amount']});\n worksheet = this.setUnprocessedReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Processed_Unallocated')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','allocation_status','receiving_office','allocation_reason','ccd_exception_reference','ccd_case_reference','payment_asset_dcn','env_ref','env_item','date_banked','bgc_batch','payment_method','amount']});\n worksheet = this.setProcessedUnallocatedReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Payment failure')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['payment_reference','ccd_reference','org_id','service_name','failure_reference','failure_reason','disputed_amount','event_name','event_date','representment_status','representment_date','refund_references','refund_amount','refund_date']});\n worksheet = this.setPaymentFailureReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else {\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','surplus_shortfall','balance','payment_amount','ccd_case_reference', 'ccd_exception_reference', 'processed_date', 'reason', 'explanation', 'user_name']});\n worksheet = this.setShortFallReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n }\n workbook = { Sheets: { 'data': worksheet }, SheetNames: ['data'] };\n const excelBuffer: any = XLSX.write(workbook, { bookType: 'xlsx', type: 'array' });\n this.saveAsExcelFile(excelBuffer, excelFileName);\n }\n\n\nprivate autoFitColumns (worksheet: XLSX.WorkSheet,json:any) : XLSX.WorkSheet {\n let objectMaxLength = []; \n let ColWidth = [];\n let obj = <any>Object;\n for (let i = 0; i < json.length; i++) {\n let value = obj.values(json[i]);\n let key = obj.keys(json[i]);\n for (let j = 0; j < value.length; j++) {\n if(value[j] === null){\n value[j] = '';\n }\n objectMaxLength[j] =\n key[j].length >= value[j].length\n ? key[j].length+2\n : value[j].length+1;\n if( value[j].length === undefined){\n objectMaxLength[j] = key[j].length+2;\n }\n ColWidth.push({'width': +objectMaxLength[j]});\n }\n }\n worksheet['!cols'] = ColWidth;\n return worksheet;\n}\n\n\nprivate setDataLossReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Loss_Resp\";\n worksheet.B1.v = \"Payment_Asset_DCN\";\n worksheet.C1.v = \"Envelope_Ref\";\n worksheet.D1.v = \"Envelope_Item\";\n worksheet.E1.v = \"Resp_Service ID\";\n worksheet.F1.v = \"Resp_Service Name\";\n worksheet.G1.v = \"Date_Banked\";\n worksheet.H1.v = \"BGC_Batch\";\n worksheet.I1.v = \"Payment_Method\";\n worksheet.J1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setUnprocessedReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Exception_Ref\";\n worksheet.D1.v = \"CCD_Ref\";\n worksheet.E1.v = \"Date_Banked\";\n worksheet.F1.v = \"BGC_Batch\";\n worksheet.G1.v = \"Payment_Asset_DCN\";\n worksheet.H1.v = \"Envelope_Ref\";\n worksheet.I1.v = \"Envelope_Item\";\n worksheet.J1.v = \"Payment_Method\";\n worksheet.K1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setProcessedUnallocatedReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Allocation_Status\";\n worksheet.D1.v = \"Receiving_Office\";\n worksheet.E1.v = \"Allocation_Reason\";\n worksheet.F1.v = \"CCD_Exception_Ref\";\n worksheet.G1.v = \"CCD_Case_Ref\";\n worksheet.H1.v = \"Payment_Asset_DCN\";\n worksheet.I1.v = \"Envelope_Ref\";\n worksheet.J1.v = \"Envelope_Item\";\n worksheet.K1.v = \"Date_Banked\";\n worksheet.L1.v = \"BGC_Batch\";\n worksheet.M1.v = \"Payment_Method\";\n worksheet.N1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setPaymentFailureReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Payment reference\";\n worksheet.B1.v = \"CCD reference\";\n worksheet.C1.v = \"OrgID\";\n worksheet.D1.v = \"Service name\";\n worksheet.E1.v = \"Failure reference\";\n worksheet.F1.v = \"Failure reason\";\n worksheet.G1.v = \"Disputed amount\";\n worksheet.H1.v = \"Event name\";\n worksheet.I1.v = \"Event date\";\n worksheet.J1.v = \"Representment status\";\n worksheet.K1.v = \"Representment date\";\n worksheet.L1.v = \"Refund reference\";\n worksheet.M1.v = \"Refund amount\";\n worksheet.N1.v = \"Refund date\";\n return worksheet;\n}\nprivate setShortFallReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Over Payment_Under Payment\";\n worksheet.D1.v = \"Balance\";\n worksheet.E1.v = \"Payment_Amount\";\n worksheet.F1.v = \"CCD_Case_Ref\";\n worksheet.G1.v = \"Exception_Ref\";\n worksheet.H1.v = \"Processed_Date\";\n worksheet.I1.v = \"Reason\";\n worksheet.J1.v = \"Explanation\";\n worksheet.K1.v = \"Updated Name\";\n return worksheet;\n}\n\nprivate saveAsExcelFile(buffer: any, fileName: string): void {\n const data: Blob = new Blob([buffer], {\n type: EXCEL_TYPE\n });\n FileSaver.saveAs(data, fileName + EXCEL_EXTENSION);\n }\n}\n","import { Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormGroup, FormControl } from '@angular/forms';\nimport { formatDate } from \"@angular/common\";\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {XlFileService} from '../../services/xl-file/xl-file.service';\nimport { FindValueSubscriber } from 'rxjs/internal/operators/find';\n\n@Component({\n selector: 'ccpay-reports',\n templateUrl: './reports.component.html',\n styleUrls: ['./reports.component.scss']\n})\nexport class ReportsComponent implements OnInit {\n fmt = 'dd/MM/yyyy';\n loc = 'en-US';\n reportsForm: FormGroup;\n startDate: string;\n endDate: string;\n errorMeaagse: string;\n ccdCaseNumber: string;\n isDownLoadButtondisabled:Boolean = false;\n isStartDateLesthanEndDate: Boolean = false;\n isDateBetwnMonth: Boolean = false;\n isDateRangeBetnWeek: Boolean = false;\n errorMessage = this.errorHandlerService.getServerErrorMessage(false, false, '');\n paymentGroups: IPaymentGroup[] = [];\n\n constructor(\n private xlFileService: XlFileService,\n private errorHandlerService: ErrorHandlerService,\n private formBuilder: FormBuilder,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private paymentViewService: PaymentViewService) { }\n \n\n ngOnInit() {\n this.fromValidation();\n\n }\n\n getToday(): string {\n return new Date().toISOString().split('T')[0];\n }\n\n getSelectedFromDate(): void {\n this.validateDates(this.reportsForm.get('selectedreport').value);\n }\n\n validateDates(reportName){\n const selectedStartDate = this.tranformDate(this.reportsForm.get('startDate').value),\n selectedEndDate = this.tranformDate(this.reportsForm.get('endDate').value);\n const isDateRangeMoreThanWeek = (<any>new Date(selectedStartDate) - <any>new Date(selectedEndDate))/(1000 * 3600 * -24) > 7;\n const isDateRangeMoreThanMonth = (<any>new Date(selectedStartDate) - <any>new Date(selectedEndDate))/(1000 * 3600 * -24) > 30;\n if(new Date(selectedStartDate) > new Date(selectedEndDate) && selectedEndDate !== ''){\n this.reportsForm.get('startDate').setValue('');\n this.isDateRangeBetnWeek = false;\n this.isDateBetwnMonth = false;\n this.isStartDateLesthanEndDate = true;\n } else if(reportName && reportName ==='SURPLUS_AND_SHORTFALL' && isDateRangeMoreThanWeek ) {\n this.isDateRangeBetnWeek = true;\n this.isDateBetwnMonth = false;\n this.isStartDateLesthanEndDate = false;\n } else if(reportName && reportName ==='PAYMENT_FAILURE_EVENT' && isDateRangeMoreThanMonth ) {\n this.isDateRangeBetnWeek = false;\n this.isDateBetwnMonth = true;\n this.isStartDateLesthanEndDate = false;\n } else {\n this.isDateBetwnMonth = false;\n this.isDateRangeBetnWeek = false;\n this.isStartDateLesthanEndDate = false;\n }\n\n }\n\n fromValidation() {\n this.reportsForm = this.formBuilder.group({\n selectedreport: new FormControl('') ,\n startDate: new FormControl(''),\n endDate: new FormControl('') \n });\n}\n\ndownloadReport(){\n this.isDownLoadButtondisabled = true;\n const dataLossRptDefault = [{loss_resp:'',payment_asset_dcn:'',env_ref:'',env_item:'',resp_service_id:'',resp_service_name:'',date_banked:'',bgc_batch:'',payment_method:'',amount:''}],\n unProcessedRptDefault = [{resp_service_id:'',resp_service_name:'',exception_ref:'',ccd_ref:'',date_banked:'',bgc_batch:'',payment_asset_dcn:'',env_ref:'',env_item:'',payment_method:'',amount:''}],\n processedUnallocated =[{resp_service_id:'',resp_service_name:'',allocation_status:'',receiving_office:'',allocation_reason:'',ccd_exception_ref:'',ccd_case_ref:'',payment_asset_dcn:'',env_ref:'',env_item:'',date_banked:'',bgc_batch:'',payment_method:'',amount:'',updated_by:''}],\n shortFallsRptDefault = [{resp_service_id:'',resp_service_name:'',surplus_shortfall:'',balance:'',payment_amount:'',ccd_case_reference:'',ccd_exception_reference:'',processed_date:'', reason:'', explanation:'', user_name:''}],\n selectedReportName = this.reportsForm.get('selectedreport').value,\n selectedStartDate = this.tranformDate(this.reportsForm.get('startDate').value),\n selectedEndDate = this.tranformDate(this.reportsForm.get('endDate').value);\n\n if(selectedReportName === 'PROCESSED_UNALLOCATED' || selectedReportName === 'SURPLUS_AND_SHORTFALL' ){\n this.paymentViewService.downloadSelectedReport(selectedReportName,selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false, false, '');\n const result = JSON.parse(response);\n let res= {data: this.applyDateFormat(result)};\n if(res['data'].length === 0 && selectedReportName === 'PROCESSED_UNALLOCATED' ){\n res.data= processedUnallocated;\n } else if(res['data'].length === 0 && selectedReportName === 'SURPLUS_AND_SHORTFALL' ) {\n res.data= shortFallsRptDefault;\n } \n if(result['data'].length > 0) {\n for( var i=0; i< res['data'].length; i++) {\n if(res['data'][i][\"payment_asset_dcn\"] !== undefined) {\n res['data'][i]['env_ref'] = res['data'][i][\"payment_asset_dcn\"].substr(0,13);\n res['data'][i]['env_item'] = res['data'][i][\"payment_asset_dcn\"].substr(13,21);\n }\n if(res['data'][i][\"amount\"] !== undefined) {\n res['data'][i]['amount'] = this.convertToFloatValue(res['data'][i]['amount']);\n }\n if(res['data'][i][\"balance\"] !== undefined) {\n res['data'][i]['balance'] = this.convertToFloatValue(res['data'][i][\"balance\"]);\n }\n let Op = res['data'][i][\"surplus_shortfall\"];\n if(Op !== undefined) {\n res['data'][i]['surplus_shortfall'] = Op ==\"Surplus\" ? \"Over payment\":\"Under payment\";\n }\n if(res['data'][i][\"payment_amount\"] !== undefined) {\n res['data'][i]['payment_amount'] = this.convertToFloatValue(res['data'][i]['payment_amount']);\n }\n }\n } \n this.isDownLoadButtondisabled = false;\n this.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate));\n },\n (error: any) => {\n this.isDownLoadButtondisabled = false;\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\n })\n\n } else if(selectedReportName === 'PAYMENT_FAILURE_EVENT') {\n\n this.paymentViewService.downloadFailureReport(selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false, false, '');\n const result = {data: JSON.parse(response)['payment_failure_report_list']};\n let res = {data: this.applyDateFormat(result)};\n if (result['data'].length > 0) {\n for ( var i=0; i< res['data'].length; i++) {\n if (res['data'][i][\"disputed_amount\"] !== undefined) {\n res['data'][i]['disputed_amount'] = this.convertToFloatValue(res['data'][i][\"disputed_amount\"]);\n }\n if (res['data'][i][\"representment_status\"] !== undefined) {\n res['data'][i]['representment_status'] = res['data'][i][\"representment_status\"].toLowerCase() === 'yes' ? 'Success' : 'Failure';\n }\n }\n }\n this.isDownLoadButtondisabled = false;\n this.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate ));\n\n },\n (error: any) => {\n this.isDownLoadButtondisabled = false;\n const errorContent = error.replace(/[^a-zA-Z ]/g, '').trim();\n const statusCode = error.replace(/[^a-zA-Z0-9 ]/g, '').trim().split(' ')[0];\n if(statusCode === '404') {\n this.errorHandlerService.getServerErrorMessage(true, true, errorContent);\n }else {\n this.errorHandlerService.getServerErrorMessage(true, false, '');\n }\n })\n\n } else {\n this.bulkScaningPaymentService.downloadSelectedReport(selectedReportName,selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false, false, '');\n const result = JSON.parse(response);\n let res = {data: this.applyDateFormat(result)};\n if(res['data'].length === 0 && selectedReportName === 'DATA_LOSS' ){\n res.data= dataLossRptDefault;\n } else if(res['data'].length === 0 && selectedReportName === 'UNPROCESSED'){\n res.data = unProcessedRptDefault;\n }\n if(result['data'].length > 0) {\n for( var i=0; i< res['data'].length; i++) {\n if(res['data'][i][\"amount\"] !== undefined) {\n res['data'][i]['amount'] = this.convertToFloatValue(res['data'][i]['amount']);\n }\n if(res['data'][i][\"payment_asset_dcn\"] !== undefined) {\n res['data'][i]['env_ref'] = res['data'][i][\"payment_asset_dcn\"].substr(0,13);\n res['data'][i]['env_item'] = res['data'][i][\"payment_asset_dcn\"].substr(13,21);\n }\n }\n }\n this.isDownLoadButtondisabled = false;\n this.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate ));\n },\n (error: any) => {\n this.isDownLoadButtondisabled = false;\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\n })\n }\n }\n\n getFileName(selectedOption: string, startDate: string, endDate: string ) {\n const loc = 'en-US',\n stDt = formatDate(startDate, 'ddMMyy', loc),\n enDt = formatDate(endDate, 'ddMMyy', loc),\n now = new Date(),\n currentDate = formatDate(now, 'ddMMyy', loc),\n timestamp = `${currentDate}_${this.getTwodigit(now.getHours())}${this.getTwodigit(now.getMinutes())}${this.getTwodigit(now.getSeconds())}`,\n selectedOptionTxt = this.getCamelCaseString(selectedOption);\n \n return selectedOptionTxt+'_'+stDt+'_To_'+enDt+'_Run_'+ timestamp;\n } \n tranformDate(strDate: string) {\n let result = '';\n if (strDate) {\n let parts = strDate.split('-');\n result = `${parts[1]}/${parts[2]}/${parts[0]}`;\n }\n return result;\n }\n getTwodigit(input: number){\n return (\"0\" + input).slice(-2);\n }\n getCamelCaseString(selectedOption) {\n let result;\n switch(selectedOption) { \n case 'UNPROCESSED': { \n result = 'Unprocessed';\n break; \n } \n case 'DATA_LOSS': { \n result = 'Data_Loss';\n break; \n } \n case 'PROCESSED_UNALLOCATED': { \n result = 'Processed_Unallocated';\n break; \n } \n case 'SURPLUS_AND_SHORTFALL': { \n result = 'Over Payment_Under Payment';\n break; \n } \n case 'PAYMENT_FAILURE_EVENT': { \n result = 'Payment failure event';\n break; \n }\n default: { \n result = selectedOption;\n break; \n } \n } \n return result;\n }\n applyDateFormat(res) {\n return res['data'].map(value => {\n if (value['date_banked']) {\n value['date_banked'] = formatDate(value['date_banked'], this.fmt, this.loc);\n }\n if (value['event_date'] && value['event_date'].indexOf(',') === -1) {\n value['event_date'] = formatDate(value['event_date'], this.fmt, this.loc);\n } else if (value['event_date'] && value['event_date'].indexOf(',') !== -1) {\n value['event_date'] = this.multiDateFormater(value['event_date'])\n }\n\n if (value['representment_date'] && value['representment_date'].indexOf(',') === -1) {\n value['representment_date'] = formatDate(value['representment_date'], this.fmt, this.loc);\n } else if (value['representment_date'] && value['representment_date'].indexOf(',') !== -1) {\n value['representment_date'] = this.multiDateFormater(value['representment_date'])\n }\n\n if (value['refund_date'] && value['refund_date'].indexOf(',') === -1) {\n value['refund_date'] = formatDate(value['refund_date'], this.fmt, this.loc);\n } else if (value['refund_date'] && value['refund_date'].indexOf(',') !== -1) {\n value['refund_date'] = this.multiDateFormater(value['refund_date'])\n }\n return value;\n });\n }\n multiDateFormater(dateStr) {\n return dateStr.split(',').map((date) => formatDate(date, this.fmt, this.loc)).join(',');\n }\n \n convertToFloatValue(amt) {\n return amt ? Number.parseFloat(amt).toFixed(2): '0.00';\n }\n}\n","import {Component, ViewChild, Input, ChangeDetectorRef} from '@angular/core';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport { MatTableDataSource} from '@angular/material/table';\nimport {MatSort } from '@angular/material/sort';\nimport {Sort } from '@angular/material/sort';\nimport {MatPaginator } from '@angular/material/paginator';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { THIS_EXPR } from '@angular/compiler/src/output/output_ast';\nimport { ActivatedRoute,Router } from '@angular/router';\n@Component({\n selector: 'ccpay-table',\n templateUrl: './table.component.html',\n styleUrls: ['./table.component.css']\n})\nexport class TableComponent {\n @Input('DATASOURCE') DATASOURCE: any[];\n @Input('STATUS') STATUS: string;\n @Input('errorMessage') errorMessage: string;\n isApprovalFlow: boolean;\n // displayedColumns = ['ccdCaseNumber', 'refundReference', 'reason', 'createBy', 'updateDate', 'Action'];\n displayedColumns = ['ccd_case_number', 'refund_reference', 'user_full_name','date_created', 'date_updated', 'Action'];\n \n dataSource: MatTableDataSource<any>;\n userLst;\n actualcount: number;\n count: number;\n refundList: IRefundList[];\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n constructor(\n private paymentLibComponent: PaymentLibComponent,\n private cdRef: ChangeDetectorRef,\n private OrderslistService: OrderslistService,\n private router: Router,\n private activeRoute: ActivatedRoute\n ) {}\n ngOnInit() {\n this.errorMessage = this.errorMessage;\n if(this.STATUS.toLowerCase() === 'sent for approval') {\n this.isApprovalFlow = true;\n } else {\n this.isApprovalFlow = false;\n }\n this.refundList = this.DATASOURCE;\n this.dataSource = new MatTableDataSource(this.refundList);\n this.actualcount = this.dataSource.data.length;\n if( this.refundList !== undefined) {\n this.userLst = this.refundList.reduce((r,{user_full_name}) => (r[user_full_name]='', r) , {});\n this.userLst = Object.keys(this.userLst);\n }\n this.userLst.sort((a, b) => a.toString().localeCompare(b));\n }\n /**\n * Set the paginator and sort after the view init since this component will\n * be able to query its view for the initialized paginator and sort.\n */\n ngAfterViewInit() {\n \n this.dataSource.sort = this.sort;\n\n //const sortState: Sort = {active: 'date_updated', direction: 'desc'};\n // this.sort.active = sortState.active;\n // this.sort.direction = sortState.direction;\n // this.sort.sortChange.emit(sortState);\n this.dataSource.paginator = this.paginator;\n this.dataSource.sort = this.sort;\n this.cdRef.detectChanges();\n }\n applyFilter(filterValue: string) {\n filterValue = filterValue.trim(); // Remove whitespace\n filterValue = filterValue.toLowerCase(); // Datasource defaults to lowercase matches\n this.dataSource.filter = filterValue;\n }\n selectchange(args){\n this.dataSource.filter = args.target.value;\n this.actualcount = this.dataSource.data.length;\n this.dataSource.paginator = this.paginator;\n }\n goToRefundProcessComponent(refundReference: string, refundData: IRefundList ) {\n this.paymentLibComponent.refundlistsource = refundData;\n this.paymentLibComponent.refundReference = refundReference;\n this.paymentLibComponent.viewName = 'process-refund';\n }\n goToRefundViewComponent(refundReference: string, refundData: IRefundList ) {\n this.OrderslistService.setRefundView(refundData);\n this.paymentLibComponent.viewName='refundstatuslist';\n this.paymentLibComponent.CCD_CASE_NUMBER = refundData.ccd_case_number;\n this.paymentLibComponent.isRefundStatusView = true;\n this.paymentLibComponent.isCallFromRefundList = true;\n }\n goToCaseReview(ccdCaseNumber: string, refundData: IRefundList ) {\n this.router.navigate([`/cases/case-details/${ccdCaseNumber}`], {relativeTo: this.activeRoute});\n }\n}","export class IResubmitRefundRequest {\n refund_reason: string;\n amount: number;\n \n \n constructor(refund_reason : string, amount: number) {\n this.refund_reason= refund_reason;\n this.amount = amount;\n \n } \n }\n ","import { Component, OnInit, Input } from '@angular/core';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { FormBuilder, FormGroup, Validators, FormControl, RequiredValidator } from '@angular/forms';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { Router } from '@angular/router';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IRefundStatus } from '../../interfaces/IRefundStatus';\nimport { IResubmitRefundRequest } from '../../interfaces/IResubmitRefundRequest';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-refund-status',\n templateUrl: './refund-status.component.html',\n styleUrls: ['./refund-status.component.css']\n})\nexport class RefundStatusComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[] = [];\n @Input('API_ROOT') API_ROOT: string;\n @Input() isOldPcipalOff: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: boolean;\n @Input() isEliginbleToAccess: boolean;\n refundStatusForm: FormGroup;\n selectedRefundReason: string;\n rejectedRefundList: IRefundList[] = [];\n approvalStatus = 'Sent for approval';\n rejectStatus = 'Update required';\n // approvalStatus = 'sent for approval';\n // rejectStatus = 'sent back';\n errorMessage = null;\n viewName: string;\n refundReason: string;\n refundlist: IRefundList;\n bsPaymentDcnNumber: string;\n isCallFromRefundList: boolean;\n refundButtonState: string = '';\n isAmountEmpty: boolean = false;\n isReasonEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n refundHasError: boolean = false;\n refundReasons: any[] = [];\n refundStatusHistories: IRefundStatus[];\n refundReference: string;\n refundAmount: string;\n refundCode: string;\n isRefundBtnDisabled: boolean = true;\n oldRefundReason: string;\n refundreason: string;\n navigationpage: string;\n isLastUpdatedByCurrentUser: boolean = true;\n isProcessRefund: boolean = false;\n changedAmount: number;\n constructor(private formBuilder: FormBuilder,\n private refundService: RefundsService,\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private router: Router,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n\n // if (this.check4AllowedRoles2AccessRefund()) {\n this.resetRemissionForm([false, false, false, false], 'All');\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.isCallFromRefundList = this.paymentLibComponent.isCallFromRefundList;\n // if(this.paymentLibComponent.isFromRefundStatusPage) {\n // this.viewName = 'reviewandsubmitview';\n // }\n if (this.paymentLibComponent.isRefundStatusView) {\n this.viewName = 'refundview';\n this.OrderslistService.getRefundView().subscribe((data) => this.refundlist = data);\n this.OrderslistService.getCCDCaseNumberforRefund.subscribe((data) => this.ccdCaseNumber = data);\n } else {\n this.viewName = 'refundstatuslist';\n if(this.isEliginbleToAccess) {\n this.refundService.getRefundStatusList(this.ccdCaseNumber).subscribe(\n refundList => {\n this.rejectedRefundList = refundList['refund_list'];\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n } else {\n this.rejectedRefundList = [];\n }\n\n }\n\n\n this.refundStatusForm = this.formBuilder.group({\n amount: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[0-9]+(\\.[0-9]{1,2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl()\n });\n\n if(this.refundlist !== undefined) {\n this.getRefundsStatusHistoryList();\n\n if (this.LOGGEDINUSERROLES.some(i => i.includes('payments-refund-approver'))) {\n this.isProcessRefund = true;\n this.refundButtonState = this.refundlist.refund_status.name;\n return;\n }\n \n if (this.LOGGEDINUSERROLES.some(i => i.includes('payments-refund'))) {\n this.isProcessRefund = false;\n this.refundButtonState = this.refundlist.refund_status.name;\n }\n }\n //}\n }\n isFromPayBubble = (): boolean => { \n return this.API_ROOT === 'api/payment-history';\n }\n\n getRefundsStatusHistoryList() {\n if(this.refundlist !== undefined) {\n this.refundService.getRefundStatusHistory(this.refundlist.refund_reference).subscribe(\n statusHistoryList => {\n this.refundStatusHistories = statusHistoryList.status_history_dto_list;\n this.isLastUpdatedByCurrentUser = statusHistoryList.last_updated_by_current_user;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n }; \n }\n }\n\n goToRefundView(refundlist: IRefundList, navigationpage: string) {\n this.OrderslistService.setRefundView(refundlist);\n this.OrderslistService.setCCDCaseNumber(this.ccdCaseNumber);\n this.paymentLibComponent.viewName = 'refundstatuslist';\n this.paymentLibComponent.isRefundStatusView = true;\n this.refundlist = refundlist;\n this.OrderslistService.setnavigationPage(navigationpage);\n }\n\n loadCaseTransactionPage() {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n }\n\n loadRefundListPage() {\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n if (this.navigationpage === 'casetransactions') {\n this.loadCaseTransactionPage();\n } else {\n this.paymentLibComponent.viewName = 'refund-list';\n }\n }\n\n gotoReviewDetailsPage(event:any) {\n // event.preventDefault();\n this.errorMessage = false;\n this.paymentLibComponent.isRefundStatusView = true;\n this.ngOnInit();\n }\n\n gotoReviewAndReSubmitPage() {\n this.viewName = 'reviewandsubmitview';\n this.oldRefundReason = this.refundlist.reason;\n this.changedAmount = this.refundlist.amount;\n this.refundreason = this.refundStatusHistories.filter(data => data.status.toLowerCase() === 'update required')[0].notes;\n this.refundService.getRefundReasons().subscribe(\n refundReasons => {\n this.refundReasons = refundReasons;\n });\n }\n gotoRefundReasonPage() {\n this.isRefundBtnDisabled = false;\n this.paymentLibComponent.REFUNDLIST = \"true\";\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.errorMessage = false;\n this.viewName = 'issuerefund';\n }\n\n gotoAmountPage() {\n this.errorMessage = false;\n this.paymentLibComponent.REFUNDLIST = \"true\";\n this.isRefundBtnDisabled = false;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.viewName = 'processretroremissonpage';\n }\n\n goToReviewAndSubmitView() {\n const remissionctrls = this.refundStatusForm.controls\n if (this.refundStatusForm.dirty) {\n if (remissionctrls['amount'].value == '') {\n this.resetRemissionForm([true, false, false, false], 'amount');\n }\n else if (remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid) {\n this.resetRemissionForm([false, true, false, false], 'amount');\n }\n else if (remissionctrls['reason'].value == '') {\n this.resetRemissionForm([false, false, false, true], 'reason');\n } else {\n this.refundlist.reason = remissionctrls['reason'].value;\n this.viewName = 'reviewandsubmitview';\n }\n }\n\n }\n\n resetRemissionForm(val, field) {\n if (field === 'All') {\n this.isAmountEmpty = val[0];\n this.amountHasError = val[1];\n this.isRemissionLessThanFeeError = val[2];\n this.isReasonEmpty = val[3];\n } else if (field === 'amount' || field === 'All') {\n this.isAmountEmpty = val[0];\n this.amountHasError = val[1];\n this.isRemissionLessThanFeeError = val[2];\n } else if (field === 'reason' || field === 'All') {\n this.isReasonEmpty = val[3];\n }\n }\n\n selectRadioButton(key, value) {\n this.refundHasError = false;\n this.selectedRefundReason = key;\n if (key === 'Other') {\n this.refundHasError = false;\n this.refundReason = key;\n }\n }\n\n getRefundListReason(refundListReason: any) {\n if (this.paymentLibComponent.isFromRefundStatusPage && !this.paymentLibComponent.iscancelClicked) {\n this.refundlist.reason = refundListReason.reason;\n this.refundCode = refundListReason.code;\n } else {\n this.isRefundBtnDisabled = true;\n }\n this.viewName = 'reviewandsubmitview';\n this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;\n }\n\n getRefundAmount(amount: number) {\n if (this.paymentLibComponent.isFromRefundStatusPage && !this.paymentLibComponent.iscancelClicked) {\n if (amount > 0) {\n this.changedAmount = amount;\n // this.refundlist.amount = amount;\n }\n } else {\n this.isRefundBtnDisabled = true;\n }\n this.viewName = 'reviewandsubmitview';\n this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;\n }\n\n gotoReviewRefundConfirmationPage() {\n if (this.oldRefundReason === this.refundlist.reason) {\n this.refundCode = '';\n }\n const resubmitRequest = new IResubmitRefundRequest(this.refundCode, this.changedAmount);\n this.refundService.patchResubmitRefund(resubmitRequest, this.refundlist.refund_reference).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n this.viewName = 'reviewrefundconfirmationpage';\n }\n },\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n }\n );\n\n }\n\n goToRefundProcessComponent(refundReference: string, refundList: IRefundList) {\n this.paymentLibComponent.refundlistsource = refundList;\n this.paymentLibComponent.refundReference = refundReference;\n this.paymentLibComponent.viewName = 'process-refund';\n }\n\n}\n","import { THIS_EXPR } from '@angular/compiler/src/output/output_ast';\nimport { Component, Input, OnInit, Output, EventEmitter } from '@angular/core';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IPaymentView } from '../../interfaces/IPaymentView';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { Router } from '@angular/router';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-service-request',\n templateUrl: './service-request.component.html',\n styleUrls: ['./service-request.component.css']\n})\nexport class ServiceRequestComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input('viewStatus') viewStatus: string;\n @Input('orderDetail') orderDetail: any[];\n @Input('orderRef') orderRef: string;\n @Input('orderStatus') orderStatus: string;\n @Input('orderParty') orderParty: string;\n @Input('orderCreated') orderCreated: Date;\n @Input('orderCCDEvent') orderCCDEvent: string;\n @Input('orderFeesTotal') orderFeesTotal: number;\n @Input('orderTotalPayments') orderTotalPayments: number;\n @Input('orderRemissionTotal') orderRemissionTotal: number;\n @Input('takePayment') takePayment: boolean;\n @Input('ccdCaseNumber') ccdCaseNumber: boolean;\n @Input(\"isServiceRequest\") isServiceRequest: string;\n @Output() goToServiceRquestComponent: EventEmitter<any> = new EventEmitter();\n\n\n servicerequest: string;\n // ccdCaseNumber: string;\n excReference: string;\n paymentGroups: any[] = [];\n payments: IPayment[] = [];\n nonPayments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n fees: IFee[] = [];\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalNonOffPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n paymentRef: string;\n isTurnOff: boolean;\n isNewPcipalOff: boolean;\n isRefundRemission: boolean = true;\n isOldPcipalOff: boolean;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = true;\n isExceptionRecord: boolean = false;\n isUnprocessedRecordSelected: boolean = false;\n exceptionRecordReference: string;\n isAnyFeeGroupAvilable: boolean = true;\n isHistoricGroupAvailable: boolean = false;\n isBulkScanEnable;\n isRemissionsMatch: boolean;\n isRemoveBtnDisabled: boolean = false;\n feeId: IFee;\n clAmountDue: number = 0;\n unprocessedRecordCount: number;\n isFeeRecordsExist: boolean = false;\n isGrpOutstandingAmtPositive: boolean = false;\n totalRefundAmount: Number;\n caseType: String;\n // lsCcdNumber: any = ls.get<any>('ccdNumber');\n payment: IPayment;\n paymentGroup: IPaymentGroup;\n paymentView: IPaymentView;\n\n\n isAddRemissionEnable: boolean = false;\n orderRemissionDetails: any[] = [];\n orderLevelFees: IOrderReferenceFee[] = [];\n cpoDetails: any = null;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n\n isCPODown: boolean;\n test: boolean;\n isPBA: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n isAddRemissionBtnEnabled: boolean = false;\n isRefundRemissionBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n isFromServiceRequestPage: boolean;\n navigationpage: string;\n remissionFeeAmt: number;\n\n constructor(\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private OrderslistService: OrderslistService,\n private router: Router) { }\n\n ngOnInit() {\n if (this.viewStatus === undefined) {\n this.viewStatus = this.paymentLibComponent.viewName;\n }\n if(this.paymentLibComponent.isFromServiceRequestPage && this.paymentLibComponent.isFromPaymentDetailPage) {\n if(this.paymentLibComponent.isFromPaymentDetailPage && this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.getorderRefs().subscribe((data) => this.orderRef = data);\n this.OrderslistService.getorderCCDEvents().subscribe((data) => this.orderCCDEvent = data);\n this.OrderslistService.getorderCreateds().subscribe((data) => this.orderCreated = data);\n this.OrderslistService.getorderDetail().subscribe((data) => this.orderDetail = data);\n this.OrderslistService.getorderPartys().subscribe((data) => this.orderParty = data);\n this.OrderslistService.getorderRemissionTotals().subscribe((data) => this.orderRemissionTotal = data);\n this.OrderslistService.getorderFeesTotals().subscribe((data) => this.orderFeesTotal = data);\n this.OrderslistService.getoorderTotalPaymentss().subscribe((data) => this.orderTotalPayments = data);\n }\n }\n // if (this.takePayment) {\n // this.paymentLibComponent.TAKEPAYMENT = this.takePayment;\n // }\n }\n goToServiceRequestPage() {\n this.goToServiceRquestComponent.emit();\n }\n\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n this.OrderslistService.setnavigationPage('servicerequestpage');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isTakePayment = this.paymentLibComponent.TAKEPAYMENT;\n if (this.takePayment) {\n this.paymentLibComponent.isTakePayment = this.takePayment;\n }\n this.paymentLibComponent.SERVICEREQUEST = \"true\";\n this.paymentLibComponent.isFromServiceRequestPage = false;\n if(this.isServiceRequest !== 'false') {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n }\n this.paymentLibComponent.isFromRefundStatusPage = false;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.resetOrderData();\n let partUrl = this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n if(this.isServiceRequest === 'false') {\n partUrl += this.paymentLibComponent.TAKEPAYMENT ? '&takePayment=true' : '&takePayment=false';\n }\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += this.isServiceRequest !== 'false' ? '&servicerequest=true' : '&servicerequest=false';\n partUrl += `&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n const url = `/payment-history/${this.paymentLibComponent.CCD_CASE_NUMBER}?view=case-transactions&selectedOption=${this.paymentLibComponent.SELECTED_OPTION}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund()) {\n if (this.orderDetail[0]['remissions'].length > 0) {\n for (const remission of this.orderDetail[0]['remissions']) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n }\n return true;\n } else {\n return false;\n }\n }\n\n chkForPBAPayment(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n this.paymentLibComponent.paymentReference = payment.reference;\n this.isPBA = true;\n }\n });\n }\n });\n if (this.isPBA) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n addRemission(fee: IFee) {\n if(this.chkForAddRemission(fee.code)) {\n this.feeId = fee;\n this.viewStatus = 'addremission';\n this.payment = this.orderDetail[0].payments[0];\n this.paymentViewService.getApportionPaymentDetails(this.orderDetail[0].payments[0].reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n this.viewStatus = 'addrefundforremission';\n \n this.payment = payment;\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.payment.reference));\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n cancelRemoval() {\n this.viewStatus = 'main';\n }\n\n removeFee(fee: any) {\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n window.location.reload();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n this.isIssueRefunfBtnEnable = true;\n }\n if (this.isIssueRefunfBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n if (payment !== null && payment !== undefined) {\n let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\n }\n }\n\n issueRefund(payment: IPayment) {\n if (payment !== null && payment !== undefined) {\n if(this.chkIssueRefundBtnEnable(payment)) {\n this.viewStatus = 'issuerefund';\n this.payment = payment;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.isRefundRemission = true;\n }\n }\n }\n\n goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent({ paymentGroupReference, paymentReference, paymentMethod });\n }\n\n goToPaymentViewComponent(paymentGroup: any) {\n this.paymentLibComponent.paymentMethod = paymentGroup.paymentMethod;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentGroup.paymentReference;\n this.OrderslistService.setOrderRef(this.orderRef);\n this.OrderslistService.setorderCCDEvent(this.orderCCDEvent);\n this.OrderslistService.setorderCreated(this.orderCreated);\n this.OrderslistService.setorderDetail(this.orderDetail);\n this.OrderslistService.setorderParty(this.orderParty);\n this.OrderslistService.setorderTotalPayments(this.orderTotalPayments);\n this.OrderslistService.setorderRemissionTotal(this.orderRemissionTotal);\n this.OrderslistService.setorderFeesTotal(this.orderFeesTotal);\n this.viewStatus = 'payment-view';\n }\n\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n}\n","export class IserviceRequestCardPayment {\n amount: string\n currency: string\n language: string\n \n constructor(amount : string) {\n this.amount = amount;\n this.currency = 'GBP';\n this.language = 'string';\n } \n}\n ","export class IserviceRequestPbaPayment {\n account_number: string;\n amount: string\n currency: string\n customer_reference: string\n organisation_name: string\n \n constructor(account_number : string, amount : string, customer_reference: string, orgName: string) {\n this.account_number = account_number;\n this.amount = amount;\n this.currency = 'GBP';\n this.customer_reference = customer_reference;\n this.organisation_name = orgName;\n } \n}\n ","import { Component, OnInit, Input} from '@angular/core';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IserviceRequestCardPayment } from '../../interfaces/IserviceRequestCardPayment';\nimport { IserviceRequestPbaPayment } from '../../interfaces/IserviceRequestPbaPayment';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-pba-payment',\n templateUrl: './pba-payment.component.html',\n styleUrls: ['./pba-payment.component.scss']\n})\nexport class PbaPaymentComponent implements OnInit {\n @Input() pbaPayOrderRef: any;\n viewStatus: string;\n pbaAccountList: string[];\n isPBAAccountHold: boolean = false;\n errorMsg: any;\n isCardPaymentSuccess: boolean = true;\n isInSufficiantFund: boolean = false;\n isPBAAccountNotExist: boolean = false;\n isPBAServerError: boolean = false;\n isGetPBAAccountSucceed: boolean = false;\n selectedPbaAccount: string = '';\n pbaAccountRef: string = '';\n isPbaAccountSelected: boolean = false;\n isCardPaymentSelected: boolean = false;\n isPBADropdownSelected: boolean = false;\n isContinueButtondisabled: boolean = true;\n isPBAAccountPaymentSuccess: boolean = false;\n pbaAccountrPaymentResult: any;\n orgName: string = '';\n\n constructor(private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService) {}\n\n ngOnInit() {\n this.pbaPayOrderRef = this.paymentLibComponent.pbaPayOrderRef;\n this.viewStatus = 'pba-payment';\n this.errorMsg = null;\n this.paymentViewService.getPBAaccountDetails()\n .subscribe(\n result => {\n this.isGetPBAAccountSucceed = true;\n this.orgName = result.organisationEntityResponse.name;\n this.pbaAccountList = result.organisationEntityResponse.paymentAccount;\n },\n error => {\n this.errorMsg = error;\n }\n );\n\n }\n selectpbaaccount(args) {\n if(args.currentTarget.id === 'pbaAccountNumber') {\n this.isPBADropdownSelected = true;\n this.selectedPbaAccount = args.target.value; \n }\n if(args.currentTarget.id === 'pbaAccountRef') {\n this.pbaAccountRef = args.target.value; \n }\n if(this.selectedPbaAccount !== '' && this.pbaAccountRef !== \"\") {\n this.isContinueButtondisabled = false;\n } else {\n this.isContinueButtondisabled = true;\n }\n }\n\n saveAndContinue() {\n\n if(this.isPbaAccountSelected) {\n this.isInSufficiantFund = false;\n this.isPBAAccountNotExist = false;\n this.isPBAServerError = false;\n this.isPBAAccountPaymentSuccess = false;\n if ( this.pbaAccountList.indexOf(this.selectedPbaAccount) !== -1 ) {\n const requestBody = new IserviceRequestPbaPayment(\n this.selectedPbaAccount, this.pbaPayOrderRef.orderTotalFees, this.pbaAccountRef, this.orgName);\n this.paymentViewService.postPBAaccountPayment(this.pbaPayOrderRef.orderRefId, requestBody)\n .subscribe(\n r => {\n try {\n this.pbaAccountrPaymentResult = JSON.parse(r);\n } catch(e) {\n this.pbaAccountrPaymentResult = r;\n }\n this.isPBAAccountPaymentSuccess = true;\n },\n e => {\n if(e.status == '402') {\n this.isInSufficiantFund = true; \n } else if(e.status == '410') {\n this.isPBAAccountNotExist = true;\n } else if(e.status == '412') {\n this.isPBAAccountHold = true;\n } else {\n this.isPBAServerError = true;\n }\n }\n );\n } else {\n this.isPBAServerError = true;\n }\n } else if (this.isCardPaymentSelected) {\n this.cardPayment();\n }\n\n }\n cardPayment() {\n this.isCardPaymentSuccess = true;\n const requestBody = new IserviceRequestCardPayment (\n this.pbaPayOrderRef.orderTotalFees);\n this.paymentViewService.postWays2PayCardPayment(this.pbaPayOrderRef.orderRefId, requestBody)\n .subscribe(\n result => {\n const paymentUrl = JSON.parse(result).next_url;\n window.location.href = paymentUrl;\n },\n error => {\n this.isCardPaymentSuccess = false;\n }\n );\n\n }\n selectPaymentMethod(type: string) {\n if(type === 'PBA') {\n this.isPbaAccountSelected = true;\n this.isCardPaymentSelected = false;\n this.isPBADropdownSelected = false\n this.isContinueButtondisabled = true;\n this.selectedPbaAccount = null;\n } else if (type === 'CARD') {\n this.isPbaAccountSelected = false;\n this.isCardPaymentSelected = true;\n this.isPBADropdownSelected = false\n this.isContinueButtondisabled = false;\n }\n }\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = false;\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n }\n}\n","import { NgModule } from '@angular/core';\nimport { HttpClientModule } from '@angular/common/http';\nimport { CommonModule } from '@angular/common';\n\nimport { PaymentListComponent } from './components/payment-list/payment-list.component';\nimport { PaymentViewComponent } from './components/payment-view/payment-view.component';\nimport { ProcessRefundComponent } from './components/process-refund/process-refund.component';\nimport { RefundListComponent } from './components/refund-list/refund-list.component';\n\nimport { CardDetailsComponent } from './components/card-details/card-details.component';\nimport { PageNotFoundComponent } from './components/page-not-found.component';\nimport { PaymentLibComponent } from './payment-lib.component';\nimport { StatusHistoryComponent } from './components/status-history/status-history.component';\nimport { PbaDetailsComponent } from './components/pba-details/pba-details.component';\nimport { LoggerService } from './services/shared/logger/logger.service';\nimport { ConsoleLoggerService } from './services/shared/logger/console-logger.service';\nimport { WebComponentHttpClient } from './services/shared/httpclient/webcomponent.http.client';\nimport { CaseTransactionsComponent } from './components/case-transactions/case-transactions.component';\nimport { FeeSummaryComponent } from './components/fee-summary/fee-summary.component';\nimport { ErrorBannerComponent } from './components/error-banner/error-banner.component';\nimport { MarkUnidentifiedPaymentComponent } from './components/mark-unidentified-payment/mark-unidentified-payment.component';\nimport { MarkUnsolicitedPaymentComponent } from './components/mark-unsolicited-payment/mark-unsolicited-payment.component';\nimport { UnprocessedPaymentsComponent } from './components/unprocessed-payments/unprocessed-payments.component';\nimport { ProcessedPaymentsComponent } from './components/processed-payments/processed-payments.component';\nimport { AllocatePaymentsComponent } from './components/allocate-payments/allocate-payments.component';\nimport { AddRemissionComponent } from './components/add-remission/add-remission.component';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { CcdHyphensPipe } from './pipes/ccd-hyphens.pipe';\nimport { CapitalizePipe } from './pipes/capitalize.pipe';\nimport { keyValuePipe } from './pipes/key-value.pipe';\nimport { SanitizeHtmlPipe } from './pipes/sanitize-html.pipe';\nimport { ReportsComponent } from './components/reports/reports.component';\nimport { XlFileService } from './services/xl-file/xl-file.service';\nimport { TableComponent } from './components/table/table.component';\nimport { MatTableModule } from '@angular/material/table';\nimport { MatPaginatorModule } from '@angular/material/paginator';\nimport { MatSortModule } from '@angular/material/sort';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\n// import { BrowserAnimationsModule } from '@angular/platform-browser/animations';\n// import { NoopAnimationsModule } from '@angular/platform-browser/animations';\nimport { RefundStatusComponent } from './components/refund-status/refund-status.component';\nimport { ServiceRequestComponent } from './components/service-request/service-request.component';\nimport { PbaPaymentComponent } from './components/pba-payment/pba-payment.component';\n\n@NgModule({\n imports: [\n CommonModule,\n HttpClientModule,\n FormsModule,\n ReactiveFormsModule,\n MatTableModule,\n MatPaginatorModule,\n MatSortModule,\n MatFormFieldModule,\n MatInputModule,\n // BrowserAnimationsModule,\n // NoopAnimationsModule\n ],\n declarations: [\n PaymentLibComponent,\n PaymentListComponent,\n PaymentViewComponent,\n PbaPaymentComponent,\n ProcessRefundComponent,\n RefundListComponent,\n CardDetailsComponent,\n PageNotFoundComponent,\n StatusHistoryComponent,\n MarkUnidentifiedPaymentComponent,\n MarkUnsolicitedPaymentComponent,\n UnprocessedPaymentsComponent,\n ProcessedPaymentsComponent,\n AllocatePaymentsComponent,\n PbaDetailsComponent,\n CaseTransactionsComponent,\n FeeSummaryComponent,\n AddRemissionComponent,\n CcdHyphensPipe,\n CapitalizePipe,\n keyValuePipe,\n SanitizeHtmlPipe,\n ReportsComponent,\n ErrorBannerComponent,\n TableComponent,\n RefundStatusComponent,\n ServiceRequestComponent\n ],\n exports: [PaymentLibComponent],\n providers: [\n { provide: LoggerService, useClass: ConsoleLoggerService },\n XlFileService,\n WebComponentHttpClient\n ]\n})\n\nexport class PaymentLibModule { }\n"],"names":["PaymentLibService","prototype","setApiRootUrl","apiRoot","this","API_ROOT","getApiRootUrl","setBulkScanApiRootUrl","bulkscanapiRoot","BULKSCAN_API_ROOT","getBulkScanApiRootUrl","setRefundndsApiRootUrl","refundsapiRoot","REFUNDS_API_ROOT","getRefundsApiRootUrl","setCardPaymentReturnUrl","cardPaymentReturnUrl","CARDPAYMENTRETURNURL","getCardPaymentReturnUrl","Injectable","args","providedIn","OrderslistService","setOrdersList","orderLevelFees","ordersList","next","Object","assign","getOrdersList","setRefundView","refundList","refundView","getRefundView","setCaseType","caseType","getCaseType","setCCDCaseNumber","ccdCaseNumber","getCCDCaseNumber","setFeeExists","feeExists","getFeeExists","setisFromServiceRequestPage","isFromServiceRequestPage","getisFromServiceRequestPages","setOrderRefId","OrderRefId","getSelectedOrderRefId","setnavigationPage","navigationPage","getnavigationPageValue","setpaymentPageView","paymentpageList","paymentPageView","getpaymentPageView","setUserRolesList","rolesList","getUserRolesList","setorderDetail","orderDetail","getorderDetail","setOrderRef","orderRef","getorderRefs","setorderCCDEvent","orderCCDEvent","getorderCCDEvents","setorderCreated","orderCreated","getorderCreateds","setorderParty","orderParty","getorderPartys","setorderRemissionTotal","orderRemissionTotal","getorderRemissionTotals","setorderFeesTotal","orderFeesTotal","getorderFeesTotals","setorderTotalPayments","orderTotalPayments","getoorderTotalPaymentss","BehaviorSubject","getcaseType","asObservable","getFeeExist","getCCDCaseNumberforRefund","getisFromServiceRequestPage","getOrderRefId","getnavigationPage","getorderRef","getorderCCDEvent","getorderCreated","getorderParty","getorderRemissionTotal","getorderFeesTotal","getorderTotalPayments","PaymentLibComponent","ngAfterContentChecked","cd","detectChanges","ngOnInit","paymentLibService","LOGGEDINUSERROLES","length","PAYMENT_GROUP_REF","paymentGroupReference","DCN_NUMBER","bspaymentdcn","REFUNDLIST","VIEW","viewName","isTakePayment","TAKEPAYMENT","Component","selector","template","ChangeDetectorRef","Input","unProcessedPaymentServiceId","unProcessedPayment","orderPendingPayments","ErrorHandlerService","handleError","err","errorMessage","error","Error","message","status","undefined","JSON","parse","statusCode","messsage","stringify","_throw","getServerErrorMessage","isErrorExist","isDataNotExist","title","body","showError","LoggerService","invokeConsoleMethod","type","PaymentListService","getPaymentByCcdCaseNumber","paymentMethod","logger","info","http","get","withCredentials","pipe","catchError","errorHandlerService","HttpClient","PaymentListComponent","_this","paymentListService","paymentLibComponent","CCD_CASE_NUMBER","PAYMENT_METHOD","subscribe","payments","loadPaymentViewComponent","paymentReference","__values","o","s","Symbol","iterator","m","i","call","value","done","TypeError","WebComponentHttpClient","post","url","options","opts","addHeaders","put","delete","patch","csrfToken","meta","getTag","headers","forEach","element","document","cookie","split","find","row","startsWith","content","HttpHeaders","responseType","Meta","PaymentViewService","getPaymentDetails","getPaymentGroupDetails","getApportionPaymentDetails","getPBAaccountDetails","postWays2PayCardPayment","serviceRef","rurl","replace","https","postPBAaccountPayment","randomKey","Math","random","toString","join","postBSPayments","postBSUnidentifiedPayments","postBSUnsolicitedPayments","postBSAllocationPayments","postPaymentGroupWithRemissions","feeId","deleteFeeFromPaymentGroup","postPaymentToPayHub","paymentGroupRef","postPaymentAntennaToPayHub","downloadSelectedReport","reportName","startDate","endDate","downloadFailureReport","getBSfeature","getSiteID","getPartyDetails","caseNumber","postRefundsReason","postPaymentGroupWithRetroRemissions","postRefundRetroRemission","getPaymentFailure","PaymentViewComponent","selectedOption","SELECTED_OPTION","dcnNumber","isTurnOff","ISTURNOFF","serviceReference","viewStatus","paymentViewService","paymentGroup","fees","fee","isRemissionsMatch","remissions","rem","fee_code","code","push","filter","paymentGroupObj","includes","paymentAllocation","payment_allocation","isStatusAllocated","allocation_status","res","payment_failure_list","reverse","allPaymentsFailure","payment_failure_initiated","payment_failure_closed","e","errorMsg","defineProperty","method","channel","goToPaymentList","goToServiceRequestPage","SERVICEREQUEST","window","location","reload","goToCaseTransationPage","event","preventDefault","data","ISBSENABLE","resetOrderData","addRemission","chkForAddRemission","reference","payment","isFromPaymentDetailPage","isRefundRemission","checkForFees","addRefundForRemission","remission","chkIsRefundRemissionBtnEnable","remissionFeeAmt","net_amount","toLocaleLowerCase","allowFurtherAccessAfter4Days","isRefundRemissionBtnEnable","issueRefund","paymentgrp","chkIssueRefundBtnEnable","getRemissionByFeeCode","feeCode","remissions_1","tslib_1.__values","remissions_1_1","check4AllowedRoles2AccessRefund","isIssueRefunfBtnEnable","chkForPBAPayment","_b","_c","goToPaymentFailuePage","selectedPaymentsStatus","goBackToPaymentView","isAddFeeBtnEnabled","allowedRolesToAccessRefund","some","role","indexOf","tmp4DayAgo","Date","setDate","getDate","date_created","RefundsService","getRefundReasons","getRefundRejectReasons","getRefundActions","refundReference","patchRefundActions","reviewerAction","getRefundList","refundstatus","selfexclusive","getRefundStatusHistory","getRefundStatusList","getUserDetails","postIssueRefund","patchResubmitRefund","refund_reference","ProcessRefundComponent","refundActionList","getErrorMessage","processRefundForm","formBuilder","group","refundActionField","FormControl","Validators","compose","required","refundRejectReasonField","sendMeBackField","minLength","maxLength","pattern","enterReasonField","refundlistsource","ccd_case_number","isFromRefundListPage","checkRefundActions","refundActionsHasError","isReasonFieldEmpty","isReasonEmpty","isReasonInvalid","refundRejectReasonHasError","isConfirmButtondisabled","isSendMeBackClicked","isRejectClicked","isOtherClicked","refundRejectReasonList","processRefundSubmit","processRefundRequest","resetForm","controls","processFormError","errors","dirty","valid","reason","response","isSuccesspageEnable","successMsg","invalid","minlength","actualLength","maxlength","bodyTxt","loadRefundListPage","navigationpage","isRefundStatusView","loadRefundsHomePage","redirecttoRefundListPage","vals","field","isReasonFieldInvalid","reasonFieldMinHasError","reasonFieldMaxHasError","goToCaseReview","router","navigate","relativeTo","activeRoute","FormBuilder","Router","ActivatedRoute","sendmeback","RefundListComponent","userLst","isAuthorized","isApproveTableVisible","tableApprovalHeader","tableRejectedHeader","refundService","approvalStatus","submittedRefundList","rejectStatus","rejectedRefundList","isRejectTableVisible","CardDetailsService","getCardDetails","CardDetailsComponent","cardDetailsService","cardDetails","pageTitle","PageNotFoundComponent","StatusHistoryService","getPaymentStatusesByReference","StatusHistoryComponent","statusHistoryService","statuses","PbaDetailsComponent","noop","ConsoleLoggerService","console","log","apply","CaseTransactionsService","getPaymentGroups","BulkScaningPaymentService","getBSPaymentsByCCD","getBSPaymentsByDCN","dcn","postBSAllocatePayment","paymentRef","postBSPaymentStrategic","postBSWoPGStrategic","patchBSChangeStatus","calculateOutStandingAmount","feesTotal","paymentsTotal","remissionsTotal","calculated_amount","toUpperCase","amount","hwf_amount","removeUnwantedString","input","replaceText","CaseTransactionsComponent","paymentView","payment_group_reference","goToPayementView","isGrpOutstandingAmtPositive","CASETYPE","EXC_REFERENCE","excReference","takePayment","serviceRequest","serviceRequestValue","isBulkScanEnable","isNewPcipalOff","ISNEWPCIPALOFF","isOldPcipalOff","ISOLDPCIPALOFF","isStrategicFixEnable","ISSFENABLE","caseTransactionsService","paymentGroups","isAnyFeeGroupAvilable","calculateAmounts","calculateOrderFeesAmounts","totalRefundAmount","calculateRefundAmount","cpoDetails","setDefaults","isCPODown","goToOrderViewDetailSection","checkForExceptionRecord","totalPayments","totalRemissions","totalNonOffPayments","totalFees","getAllocationStatus","bulkScaningPaymentService","recordData","exception_record_reference","ccd_reference","isExceptionRecord","case_reference","resetOrderVariables","service_request_status","orderStatus","orderAddBtnEnable","orderRefId","orderTotalFees","orderReferenceObj","x","redirectToOrderFeeSearchPage","orderef","nonOffLinePayment","a","b","amount_due","clAmountDue","allocationLen","nonPayments","allPayments","remisison","totalRefundAmount_1","isFeeAmountZero_1","grpOutstandingAmount","isFeeRecordsExist","isNewPaymentGroup_1","index","isHistoricGroupAvailable","getGroupOutstandingAmount","redirectToFeeSearchPage","navigateByUrl","redirectToremissionPage","redirectToReportsPage","loadFeeSummaryPage","goToPaymentViewComponent","selectedUnprocessedFeeEvent","unprocessedRecordId","isUnprocessedRecordSelected","getUnprocessedFeeCount","unProcessedRecordCount","unprocessedRecordCount","calculateAmountDue","confirmRemoveFee","isRemoveBtnDisabled","cancelRemoval","removeFee","success","isCheckAmountdueExist","amountDue","isPBA","loadPBAAccountPage","pbaPayOrderRef","isAddRemissionEnable","orderRemissionDetails","ispaymentGroupApisuccess","isAddRemissionBtnEnabled","isEligible4PBAPayment","currentDate","check4AllowedRoles2AccessPBApayment","PaymentToPayhubRequest","currency","description","provider","toFixed","case_type","PayhubAntennaRequest","BS_ENABLE_FLAG","FeeSummaryComponent","bsPaymentDcnNumber","platForm","features","result","feature","uid","enable","getUnassignedPaymentlist","getPaymentGroup","unassignedPayments","service","responsible_service_id","upPaymentErrorMessage","currentFee","isPaymentExist","isRemissionsExist","totalAfterRemission","isFeeAmountZero","outStandingAmount","loadCaseTransactionPage","partUrl","cancelRemission","page","isConfirmationBtnDisabled","requestBody","antennaReqBody","go","payhubHtml","isBackButtonEnable","href","goToAllocatePage","Location","ErrorBannerComponent","UnidentifiedPaymentsRequest","payment_reference","unidentified_reason","payment_allocation_status","name","AllocatePaymentRequest","unAllocatedPayment","exceptionRecord","allocatedRequest","banked_date","date_banked","exception_record","document_control_number","dcn_reference","external_provider","giro_slip_no","bgc_reference","payer_name","payment_channel","payment_status","payment_method","payment_allocation_dto","MarkUnidentifiedPaymentComponent","getUnassignedPayment","markPaymentUnidentifiedForm","investicationDetail","unassignedRecord","siteID","beCcdNumber","beExceptionNumber","exceptionReference","ccdReference","trimUnderscore","saveAndContinue","investicationField","formerror","investigationComment","val","isInvesticationDetailEmpty","investicationDetailHasError","investicationDetailMinHasError","investicationDetailMaxHasError","confirmPayments","postStrategicBody","res1","res2","response2","reqBody","res3","gotoCasetransationPage","user_id","cancelMarkUnidentifiedPayments","UnsolicitedPaymentsRequest","responsible_office","responsible_person","email_id","receiving_office","receiving_email_address","sending_email_address","MarkUnsolicitedPaymentComponent","siteids","isContinueButtondisabled","siteIDList","scrollTo","markPaymentUnsolicitedForm","responsibleOffice","responsiblePerson","emailId","selectedSiteId","reasonField","officeIdField","reasonHasError","reasonMinHasError","reasonMaxHasError","isResponsibleOfficeEmpty","responsibleOfficeHasError","cancelMarkUnsolicitedPayments","checkingFormValue","setValue","formFields","valueExists","hasOwnProperty","selectchange","target","selectedSiteName","selectedIndex","text","UnprocessedPaymentsComponent","isNewpcipaloff","isOldpcipaloff","isStFixEnable","FEE_RECORDS_EXISTS","setValuesForUnassignedRecord","emit","unassignedRecordList","unassignedRecordListLength","serviceId","isExceptionCase","unprocessedPaymentSelectEvent","formatUnassignedRecordId","ID","recordId","loadUnsolicitedPage","selectedRecordReference","validateButtons","resetButtons","isAllocateToExistingFeebtnEnabled","isMarkAsUnidentifiedbtnEnabled","isAllocatedToNewFeebtnEnabled","PAYMENTREF","IS_OS_AMT_AVAILABLE","unprocessedPaymentUnSelectEvent","showDetailRow","obj","unassignedRecordSelectedList","Output","EventEmitter","isRecordExist","ProcessedPaymentsComponent","redirectToPaymentViewPage","IAllocationPaymentsRequest","explanation","userName","user_name","AllocatePaymentsComponent","overUnderPaymentForm","moreDetails","fstCon","scndCn","selectedPaymentGroup","gotoSummaryPage","cancelAllocatePayment","confirmAllocatePayement","enCookieUserName","cookieUserName","decodeURIComponent","fullName","paymentDetailsField","paymentFormError","userNameField","isEmptyCondtion","paymentReason","paymentExplanation","isOtherOptionSelected","isRemainingAmountGtZero","isRemainingAmountLtZero","otherPaymentExplanation","finalServiceCall","paymentReasonHasError","paymentExplanationHasError","isPaymentDetailsEmpty","isPaymentDetailsInvalid","paymentDetailsMinHasError","paymentDetailsMaxHasError","isUserNameEmpty","isUserNameInvalid","GroupOutstandingAmount","remainingToBeAssigned","isMoreDetailsBoxHide","reset","paymentSectionLabel","feedbackUrlLabel","remainingAmount","afterFeeAllocateOutstanding","amountForAllocation","selectRadioButton","key","OrderListSelectEvent","reasonList","overPayment","hwfReward","wrongFee","notIssueCase","otherDeduction","shortFall","helpWithFee","other","explanationList","referRefund","noRefund","noCase","holdCase","heldCase","refund","duplicate","humanerror","caseWithdrawn","AddRemissionRequest","hwf_reference","AddRetroRemissionRequest","PostRefundRetroRemission","refund_reason","PostIssueRefundRetroRemission","remissionReference","AddRemissionComponent","default","pattern1","pattern2","viewCompStatus","volume","remessionPayment","isPaymentSuccess","option","remissionForm","remissionCode","refundReason","refundDDReason","onlySelf","refundReasons","recently_used","commonRefundReasons","sort","localeCompare","resetRemissionForm","remissionctrls","isRemissionLessThanFee","setErrors","confirmRemission","newNetAmount","remissionAmount","trim","id","LDUrl","routeReuseStrategy","shouldReuseRoute","onSameUrlNavigation","isRemissionCodeEmpty","remissionCodeHasError","isAmountEmpty","amountHasError","isRemissionLessThanFeeError","addRemissionCode","gotoAddRetroRemissionCodePage","iscancelClicked","refundListAmount","isFromRefundStatusPage","refundListReason","selectedRefundReason","selectedValue","gotoCheckRetroRemissionPage","gotoProcessRetroRemissionPage","confirmRetroRemission","retroRemission","remissionamt","isRemissionApplied","remission_reference","processRefund","refundAmount","refund_amount","gotoIssueRefundConfirmation","refundHasError","displayRefundReason","gotoIssueRefundPage","changeIssueRefundReason","confirmIssueRefund","confirmRetroRefund","localStorage","setItem","isRefundReasonsSelected","showReasonText","reasonLength","gotoServiceRequestPage","sendOrderDetail","sendOrderRef","gotoCasetransationPageCancelBtnClicked","getFormattedCurrency","concat","hasErrors","CcdHyphensPipe","transform","match","Pipe","CapitalizePipe","slice","keyValuePipe","keys","SanitizeHtmlPipe","sanitizer","bypassSecurityTrustHtml","DomSanitizer","XlFileService","exportAsExcelFile","json","excelFileName","worksheet","XLSX.utils","json_to_sheet","header","setDataLossReportHeaders","setUnprocessedReportHeaders","setProcessedUnallocatedReportHeaders","setPaymentFailureReportHeaders","setShortFallReportHeaders","autoFitColumns","excelBuffer","XLSX.write","Sheets","SheetNames","bookType","saveAsExcelFile","objectMaxLength","ColWidth","values","j","width","A1","v","B1","C1","D1","E1","F1","G1","H1","I1","J1","K1","L1","M1","N1","buffer","fileName","Blob","FileSaver.saveAs","ReportsComponent","fromValidation","getToday","toISOString","getSelectedFromDate","validateDates","reportsForm","selectedStartDate","tranformDate","selectedEndDate","isDateRangeMoreThanWeek","isDateRangeMoreThanMonth","isDateRangeBetnWeek","isDateBetwnMonth","isStartDateLesthanEndDate","selectedreport","downloadReport","isDownLoadButtondisabled","dataLossRptDefault","loss_resp","payment_asset_dcn","env_ref","env_item","resp_service_id","resp_service_name","bgc_batch","unProcessedRptDefault","exception_ref","ccd_ref","processedUnallocated","allocation_reason","ccd_exception_ref","ccd_case_ref","updated_by","shortFallsRptDefault","surplus_shortfall","balance","payment_amount","ccd_case_reference","ccd_exception_reference","processed_date","selectedReportName","applyDateFormat","substr","convertToFloatValue","Op","xlFileService","getFileName","toLowerCase","errorContent","loc","stDt","formatDate","enDt","now","timestamp","getTwodigit","getHours","getMinutes","getSeconds","getCamelCaseString","strDate","parts","map","fmt","multiDateFormater","dateStr","date","amt","Number","parseFloat","TableComponent","STATUS","isApprovalFlow","DATASOURCE","dataSource","MatTableDataSource","actualcount","reduce","r","_a","user_full_name","ngAfterViewInit","paginator","cdRef","applyFilter","filterValue","goToRefundProcessComponent","refundData","goToRefundViewComponent","isCallFromRefundList","ViewChild","MatPaginator","MatSort","displayedColumns","IResubmitRefundRequest","RefundStatusComponent","refundlist","isEliginbleToAccess","refundStatusForm","getRefundsStatusHistoryList","isProcessRefund","refundButtonState","refund_status","statusHistoryList","refundStatusHistories","status_history_dto_list","isLastUpdatedByCurrentUser","last_updated_by_current_user","goToRefundView","gotoReviewDetailsPage","gotoReviewAndReSubmitPage","oldRefundReason","changedAmount","refundreason","notes","gotoRefundReasonPage","isRefundBtnDisabled","gotoAmountPage","goToReviewAndSubmitView","getRefundListReason","refundCode","getRefundAmount","gotoReviewRefundConfirmationPage","resubmitRequest","isFromPayBubble","ServiceRequestComponent","goToServiceRquestComponent","isServiceRequest","IserviceRequestCardPayment","language","IserviceRequestPbaPayment","account_number","customer_reference","orgName","organisation_name","PbaPaymentComponent","isGetPBAAccountSucceed","organisationEntityResponse","pbaAccountList","paymentAccount","selectpbaaccount","currentTarget","isPBADropdownSelected","selectedPbaAccount","pbaAccountRef","isPbaAccountSelected","isInSufficiantFund","isPBAAccountNotExist","isPBAServerError","isPBAAccountPaymentSuccess","pbaAccountrPaymentResult","isPBAAccountHold","isCardPaymentSelected","cardPayment","isCardPaymentSuccess","paymentUrl","next_url","selectPaymentMethod","NgModule","imports","CommonModule","HttpClientModule","FormsModule","ReactiveFormsModule","MatTableModule","MatPaginatorModule","MatSortModule","MatFormFieldModule","MatInputModule","declarations","exports","providers","provide","useClass","PaymentLibModule"],"mappings":"s0CAAA,IAAAA,GAcEA,EAAAC,UAAAC,cAAA,SAAcC,GACZC,KAAKC,SAAWF,GAGlBH,EAAAC,UAAAK,cAAA,WACE,OAAOF,KAAKC,UAGdL,EAAAC,UAAAM,sBAAA,SAAsBC,GACpBJ,KAAKK,kBAAoBD,GAG3BR,EAAAC,UAAAS,sBAAA,WACE,OAAON,KAAKK,mBAGdT,EAAAC,UAAAU,uBAAA,SAAuBC,GACrBR,KAAKS,iBAAmBD,GAG1BZ,EAAAC,UAAAa,qBAAA,WACE,OAAOV,KAAKS,kBAEdb,EAAAC,UAAAc,wBAAA,SAAwBC,GACtBZ,KAAKa,qBAAuBD,GAE9BhB,EAAAC,UAAAiB,wBAAA,WACE,OAAOd,KAAKa,sB,oBAvCfE,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,W,4IASZ,SAAArB,KCZF,IAAAsB,GA+CEA,EAAArB,UAAAsB,cAAA,SAAcC,GACZpB,KAAKqB,WAAWC,KAAKC,OAAOC,OAAO,GAAIJ,KAEzCF,EAAArB,UAAA4B,cAAA,WACE,OAAOzB,KAAKqB,YAGdH,EAAArB,UAAA6B,cAAA,SAAcC,GACZ3B,KAAK4B,WAAWN,KAAKC,OAAOC,OAAO,GAAIG,KAEzCT,EAAArB,UAAAgC,cAAA,WACE,OAAO7B,KAAK4B,YAGdV,EAAArB,UAAAiC,YAAA,SAAYC,GACV/B,KAAK+B,SAAST,KAAKS,IAErBb,EAAArB,UAAAmC,YAAA,WACE,OAAOhC,KAAK+B,UAGdb,EAAArB,UAAAoC,iBAAA,SAAiBC,GACflC,KAAKkC,cAAcZ,KAAKY,IAE1BhB,EAAArB,UAAAsC,iBAAA,WACE,OAAOnC,KAAKkC,eAGdhB,EAAArB,UAAAuC,aAAA,SAAaC,GACXrC,KAAKqC,UAAUf,KAAKe,IAEtBnB,EAAArB,UAAAyC,aAAA,WACE,OAAOtC,KAAKqC,WAGdnB,EAAArB,UAAA0C,4BAAA,SAA4BC,GAC1BxC,KAAKwC,yBAAyBlB,KAAKkB,IAErCtB,EAAArB,UAAA4C,6BAAA,WACE,OAAOzC,KAAKwC,0BAGdtB,EAAArB,UAAA6C,cAAA,SAAcC,GACZ3C,KAAK2C,WAAWrB,KAAKqB,IAEvBzB,EAAArB,UAAA+C,sBAAA,WACE,OAAO5C,KAAK2C,YAGdzB,EAAArB,UAAAgD,kBAAA,SAAkBC,GAChB9C,KAAK8C,eAAexB,KAAKwB,IAE3B5B,EAAArB,UAAAkD,uBAAA,WACE,OAAO/C,KAAK8C,gBAGd5B,EAAArB,UAAAmD,mBAAA,SAAmBC,GACjBjD,KAAKkD,gBAAgB5B,KAAKC,OAAOC,OAAO,GAAIyB,KAE9C/B,EAAArB,UAAAsD,mBAAA,WACE,OAAOnD,KAAKkD,iBAGdhC,EAAArB,UAAAuD,iBAAA,SAAiBC,GACfrD,KAAKqD,UAAU/B,KAAKC,OAAOC,OAAO,GAAI6B,KAExCnC,EAAArB,UAAAyD,iBAAA,WACE,OAAOtD,KAAKqD,WAGdnC,EAAArB,UAAA0D,eAAA,SAAeC,GACbxD,KAAKwD,YAAYlC,KAAKC,OAAOC,OAAO,GAAIgC,KAE1CtC,EAAArB,UAAA4D,eAAA,WACE,OAAOzD,KAAKwD,aAGdtC,EAAArB,UAAA6D,YAAA,SAAYC,GACV3D,KAAK2D,SAASrC,KAAKqC,IAErBzC,EAAArB,UAAA+D,aAAA,WACE,OAAO5D,KAAK2D,UAGdzC,EAAArB,UAAAgE,iBAAA,SAAiBC,GACf9D,KAAK8D,cAAcxC,KAAKwC,IAE1B5C,EAAArB,UAAAkE,kBAAA,WACE,OAAO/D,KAAK8D,eAGd5C,EAAArB,UAAAmE,gBAAA,SAAgBC,GACdjE,KAAKiE,aAAa3C,KAAK2C,IAEzB/C,EAAArB,UAAAqE,iBAAA,WACE,OAAOlE,KAAKiE,cAGd/C,EAAArB,UAAAsE,cAAA,SAAcC,GACZpE,KAAKoE,WAAW9C,KAAK8C,IAEvBlD,EAAArB,UAAAwE,eAAA,WACE,OAAOrE,KAAKoE,YAGdlD,EAAArB,UAAAyE,uBAAA,SAAuBC,GACrBvE,KAAKuE,oBAAoBjD,KAAKiD,IAEhCrD,EAAArB,UAAA2E,wBAAA,WACE,OAAOxE,KAAKuE,qBAGdrD,EAAArB,UAAA4E,kBAAA,SAAkBC,GAChB1E,KAAK0E,eAAepD,KAAKoD,IAE3BxD,EAAArB,UAAA8E,mBAAA,WACE,OAAO3E,KAAK0E,gBAGdxD,EAAArB,UAAA+E,sBAAA,SAAsBC,GACpB7E,KAAK6E,mBAAmBvD,KAAKuD,IAE/B3D,EAAArB,UAAAiF,wBAAA,WACE,OAAO9E,KAAK6E,oB,oBApKf9D,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,W,4IAsCZ,SAAAC,IAnCQlB,KAAAqB,WAAoD,IAAI0D,EAAAA,gBAAsC,MAC9F/E,KAAA4B,WAA2C,IAAImD,EAAAA,gBAA6B,MAC5E/E,KAAA+B,SAAW,IAAIgD,EAAAA,gBAAgB,IACvC/E,KAAAgF,YAAchF,KAAK+B,SAASkD,eACpBjF,KAAAqC,UAAY,IAAI0C,EAAAA,gBAAyB,MACjD/E,KAAAkF,YAAclF,KAAKqC,UAAU4C,eACrBjF,KAAAkC,cAAgB,IAAI6C,EAAAA,gBAAgB,IAC5C/E,KAAAmF,0BAA4BnF,KAAKkC,cAAc+C,eACvCjF,KAAAwC,yBAA2B,IAAIuC,EAAAA,gBAAyB,MAChE/E,KAAAoF,4BAA8BpF,KAAKwC,yBAAyByC,eACpDjF,KAAA2C,WAAa,IAAIoC,EAAAA,gBAAgB,IACzC/E,KAAAqF,cAAgBrF,KAAK2C,WAAWsC,eACxBjF,KAAA8C,eAAiB,IAAIiC,EAAAA,gBAAgB,IAC7C/E,KAAAsF,kBAAoBtF,KAAK8C,eAAemC,eAEhCjF,KAAA2D,SAAW,IAAIoB,EAAAA,gBAAgB,IACvC/E,KAAAuF,YAAcvF,KAAK2D,SAASsB,eACpBjF,KAAA8D,cAAgB,IAAIiB,EAAAA,gBAAgB,IAC5C/E,KAAAwF,iBAAmBxF,KAAK+B,SAASkD,eACzBjF,KAAAiE,aAAe,IAAIc,EAAAA,gBAAsB,MACjD/E,KAAAyF,gBAAkBzF,KAAKiE,aAAagB,eAC5BjF,KAAAoE,WAAa,IAAIW,EAAAA,gBAAgB,IACzC/E,KAAA0F,cAAgB1F,KAAKoE,WAAWa,eACxBjF,KAAAuE,oBAAsB,IAAIQ,EAAAA,gBAAwB,MAC1D/E,KAAA2F,uBAAyB3F,KAAKuE,oBAAoBU,eAC1CjF,KAAA0E,eAAiB,IAAIK,EAAAA,gBAAwB,MACrD/E,KAAA4F,kBAAoB5F,KAAK0E,eAAeO,eAChCjF,KAAA6E,mBAAqB,IAAIE,EAAAA,gBAAwB,MACzD/E,KAAA6F,sBAAwB7F,KAAK6E,mBAAmBI,eACxCjF,KAAAqD,UAAoC,IAAI0B,EAAAA,gBAAuB,MAE/D/E,KAAAwD,YAAsC,IAAIuB,EAAAA,gBAAuB,MAEjE/E,KAAAkD,gBAAiD,IAAI6B,EAAAA,gBAA8B,MC3C7F,IAAAe,GAoHEA,EAAAjG,UAAAkG,sBAAA,WACE/F,KAAKgG,GAAGC,iBAIVH,EAAAjG,UAAAqG,SAAA,WACElG,KAAKmG,kBAAkBrG,cAAcE,KAAKC,UAC1CD,KAAKmG,kBAAkBhG,sBAAsBH,KAAKK,mBAClDL,KAAKmG,kBAAkB5F,uBAAuBP,KAAKS,kBACnDT,KAAKmG,kBAAkBxF,wBAAwBX,KAAKa,sBAEjB,EAAhCb,KAAKoG,kBAAkBC,QACxBrG,KAAKkB,kBAAkBkC,iBAAiBpD,KAAKoG,mBAE3CpG,KAAKsG,oBACPtG,KAAKuG,sBAAwBvG,KAAKsG,mBAEhCtG,KAAKwG,aACPxG,KAAKyG,aAAezG,KAAKwG,YAEH,SAApBxG,KAAK0G,aACP1G,KAAK2G,KAAO,cACZ3G,KAAK4G,SAAW5G,KAAK2G,MAEL,gBAAd3G,KAAK2G,KACP3G,KAAK4G,SAAW,cACO,YAAd5G,KAAK2G,MAAoC,gBAAd3G,KAAK2G,KACzC3G,KAAK4G,SAAW,oBAEhB5G,KAAK4G,SAAW5G,KAAK2G,KAGnB3G,KAAK6G,gBACP7G,KAAK8G,aAAc,I,oBA/IxBC,EAAAA,UAAS/F,KAAA,CAAC,CACTgG,SAAU,oBACVC,SAAU,8iE,yCAPHrH,G,MADAsH,EAAAA,mB,MAGAhG,K,kCA+CNiG,EAAAA,MAAKnG,KAAA,CAAC,c,yBACNmG,EAAAA,MAAKnG,KAAA,CAAC,uB,wBACNmG,EAAAA,MAAKnG,KAAA,CAAC,sB,4BACNmG,EAAAA,MAAKnG,KAAA,CAAC,0B,uBACNmG,EAAAA,MAAKnG,KAAA,CAAC,qB,qBACNmG,EAAAA,MAAKnG,KAAA,CAAC,mB,sBACNmG,EAAAA,MAAKnG,KAAA,CAAC,oB,YACNmG,EAAAA,MAAKnG,KAAA,CAAC,U,mBACNmG,EAAAA,MAAKnG,KAAA,CAAC,iB,yBACNmG,EAAAA,MAAKnG,KAAA,CAAC,uB,mBACNmG,EAAAA,MAAKnG,KAAA,CAAC,iB,sBACNmG,EAAAA,MAAKnG,KAAA,CAAC,oB,kBACNmG,EAAAA,MAAKnG,KAAA,CAAC,gB,uBACNmG,EAAAA,MAAKnG,KAAA,CAAC,qB,kBACNmG,EAAAA,MAAKnG,KAAA,CAAC,gB,kBACNmG,EAAAA,MAAKnG,KAAA,CAAC,gB,iBACNmG,EAAAA,MAAKnG,KAAA,CAAC,e,gBACNmG,EAAAA,MAAKnG,KAAA,CAAC,c,sBACNmG,EAAAA,MAAKnG,KAAA,CAAC,oB,sBACNmG,EAAAA,MAAKnG,KAAA,CAAC,oB,8BACNmG,EAAAA,MAAKnG,KAAA,CAAC,4B,eACNmG,EAAAA,MAAKnG,KAAA,CAAC,a,kBACNmG,EAAAA,MAAKnG,KAAA,CAAC,gB,cACNmG,EAAAA,MAAKnG,KAAA,CAAC,Y,yBACNmG,EAAAA,MAAKnG,KAAA,CAAC,uB,yBACNmG,EAAAA,MAAKnG,KAAA,CAAC,uB,gCACNmG,EAAAA,MAAKnG,KAAA,CAAC,+BA4ET8E,GAvCE,SAAAA,EAAoBK,EACVH,EACA9E,GAFUlB,KAAAmG,kBAAAA,EACVnG,KAAAgG,GAAAA,EACAhG,KAAAkB,kBAAAA,EAnCVlB,KAAAoH,4BAAsC,KAUtCpH,KAAAqH,mBAAkC,KAkBlCrH,KAAA0E,eAAyB,EACzB1E,KAAAuE,oBAA8B,EAC9BvE,KAAA6E,mBAA6B,EAC7B7E,KAAAsH,qBAA+B,EC/GjC,IAAAC,GAgBEA,EAAA1H,UAAA2H,YAAA,SAAYC,GAIRC,EAFED,EAAIE,iBAAiBC,MAER,sBAAsBH,EAAIE,MAAME,QAG5B,MAAfJ,EAAIK,OAEmB,iBAAdL,EAAIE,OAAsBF,EAAIE,QAAUI,UAE3B,GAAnBN,EAAIE,MAAMtB,OACP2B,KAAKC,MAAMR,EAAIE,OAAOO,aAAeH,WAAkD,MAArCC,KAAKC,MAAMR,EAAIE,OAAOO,WAE3D,yBAEO,GAAnBT,EAAIE,MAAMtB,OACK2B,KAAKC,MAAMR,EAAIE,OAEfF,GAFsBE,MAO1BF,EAAIE,MAGNK,KAAKC,MAAMR,EAAIE,OAAOA,MAIlB,MAAfF,EAAIK,OACI,wBACNL,EAAIE,MAAMQ,WAAaJ,UACP,iBAAdN,EAAIE,MACGK,KAAKC,MAAMD,KAAKI,UAAUX,EAAIE,QAAQA,MAE7B,iBAAdF,EAAIE,OAAsBF,EAAIE,QAAUI,UAE3B,GAAnBN,EAAIE,MAAMtB,OACP2B,KAAKC,MAAMR,EAAIE,OAAOO,aAAeH,WAAkD,MAArCC,KAAKC,MAAMR,EAAIE,OAAOO,WAE3D,yBAEO,GAAnBT,EAAIE,MAAMtB,OACK2B,KAAKC,MAAMR,EAAIE,OAEfF,GAFsBE,MAO1BF,EAAIE,MAGNK,KAAKC,MAAMR,EAAIE,OAAOA,MAMtCF,EAAIE,MAAME,UAAYE,UACT,GAAGN,EAAIE,MAAME,QAEb,GAAGJ,EAAIE,MAK5B,OAAOU,EAAAA,OAAOX,IAIhBH,EAAA1H,UAAAyI,sBAAA,SAAsBC,EAAcC,EAAwBb,GAE1D,YAF0D,IAAAA,IAAAA,EAAA,IAEnD,CACLc,MAAO,sCACPC,MAJgCF,OAAA,IAAAA,GAAA,EACdA,GAAiBb,EAAQ,kBAI3CgB,UAAWJ,I,oBAxFhBxH,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,W,4IAMZ,SAAAsG,KCbF,IAAAqB,GAoBEA,EAAA/I,UAAAgJ,oBAAA,SAAoBC,EAAc9H,K,oBATnCD,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,W,sGADd,SAAA2H,KCXA,IAAAG,GAsBEA,EAAAlJ,UAAAmJ,0BAAA,SAA0B9G,EAAuB+G,GAG/C,OAFAjJ,KAAKkJ,OAAOC,KAAK,uDAAwDjH,GAElElC,KAAKoJ,KAAKC,IAAkBrJ,KAAKmG,kBAAkBlG,SAAQ,UAAUiC,EAAa,YAAa,CAClGoH,iBAAiB,IAElBC,KACCC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,e,oBAnB3CzG,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,W,yCAVLyI,EAAAA,Y,MAOAd,G,MADArB,G,MAHD3H,K,kKAYN,SAAAmJ,EAAoBK,EACAF,EACAO,EACAtD,GAHAnG,KAAAoJ,KAAAA,EACApJ,KAAAkJ,OAAAA,EACAlJ,KAAAyJ,oBAAAA,EACAzJ,KAAAmG,kBAAAA,ECnBtB,IAAAwD,GAqBEA,EAAA9J,UAAAqG,SAAA,WAAA,IAAA0D,EAAA5J,KACEA,KAAK6J,mBAAmBb,0BAA0BhJ,KAAK8J,oBAAoBC,gBAAiB/J,KAAK8J,oBAAoBE,gBAClHC,UAAS,SACRC,GAAY,OAAAN,EAAKM,SAAWA,GAAQ,SACnCvC,GAAe,OAAAiC,EAAKlC,aAAY,KAIvCiC,EAAA9J,UAAAsK,yBAAA,SAAyB5D,EAA+B6D,EAA0BnB,GAChFjJ,KAAK8J,oBAAoBb,cAAgBA,EACzCjJ,KAAK8J,oBAAoBvD,sBAAwBA,EACjDvG,KAAK8J,oBAAoBM,iBAAmBA,EAC5CpK,KAAK8J,oBAAoBlD,SAAW,gB,oBA1BvCG,EAAAA,UAAS/F,KAAA,CAAC,CACTgG,SAAU,qBACVC,SAAA,yjH,yDAPM8B,G,MAEAjD,KA+BR6D,GAlBE,SAAAA,EAAoBE,EACAC,GADA9J,KAAA6J,mBAAAA,EACA7J,KAAA8J,oBAAAA,ECJtB,SAoGgBO,EAASC,GACrB,IAAIC,EAAsB,mBAAXC,QAAyBA,OAAOC,SAAUC,EAAIH,GAAKD,EAAEC,GAAII,EAAI,EAC5E,GAAID,EAAG,OAAOA,EAAEE,KAAKN,GACrB,GAAIA,GAAyB,iBAAbA,EAAEjE,OAAqB,MAAO,CAC1C/E,KAAM,WAEF,MAAO,CAAEuJ,OADeP,EAApBA,GAAKK,GAAKL,EAAEjE,YAAY,EACZiE,IAAKA,EAAEK,KAAMG,MAAOR,KAG5C,MAAM,IAAIS,UAAUR,EAAI,0BAA4B,mCC3HxD,IAAAS,GAYEA,EAAAnL,UAAAoL,KAAA,SAAKC,EAAaxC,EAAkByC,GAC5BC,EAAOpL,KAAKqL,WAAWF,GAAW,IACxC,OAAOnL,KAAKoJ,KAAK6B,KAAKC,EAAKxC,EAAM0C,IAGnCJ,EAAAnL,UAAAyL,IAAA,SAAIJ,EAAaxC,EAAkByC,GAC3BC,EAAOpL,KAAKqL,WAAWF,GAAW,IACxC,OAAOnL,KAAKoJ,KAAKkC,IAAIJ,EAAKxC,EAAM0C,IAGlCJ,EAAAnL,UAAAwJ,IAAA,SAAI6B,EAAaC,GACTC,EAAOpL,KAAKqL,WAAWF,GAAW,IACxC,OAAOnL,KAAKoJ,KAAKC,IAAI6B,EAAKE,IAG5BJ,EAAAnL,UAAA0L,UAAA,SAAOL,EAAaC,GACZC,EAAOpL,KAAKqL,WAAWF,GAAW,IACxC,OAAOnL,KAAKoJ,KAAKmC,UAAOL,EAAKE,IAG/BJ,EAAAnL,UAAA2L,MAAA,SAAMN,EAAaxC,EAAkByC,GAC7BC,EAAOpL,KAAKqL,WAAWF,GAAW,IACxC,OAAOnL,KAAKoJ,KAAKoC,MAAMN,EAAKxC,EAAM0C,IAGpCJ,EAAAnL,UAAAwL,WAAA,SAAWF,G,IACHM,EAAYzL,KAAK0L,KAAKC,OAAO,mBAC7BC,EAAU,GAmBhB,OAjBIT,EAAQS,SACVT,EAAQS,QAAQC,QAAO,SAACC,GACtBF,EAAQE,GAAWX,EAAQS,QAAQvC,IAAIyC,KAG3CF,EAAQ,oBAAsB,iBACZ,OAAdH,EACEM,SAASC,OAAOC,MAAM,KAAKC,KAAI,SAACC,GAAO,OAAAA,EAAIC,WAAW,kBAAmBrE,UAC3E6D,EAAQ,cAAgBG,SAASC,OAAOC,MAAM,KAAKC,KAAI,SAACC,GAAO,OAAAA,EAAIC,WAAW,gBAAeH,MAAM,KAAK,GAExGL,EAAQ,cAAgBG,SAASC,OAAOC,MAAM,KAAKC,KAAI,SAACC,GAAO,OAAAA,EAAIC,WAAW,iBAAgBH,MAAM,KAAK,GAG3GL,EAAQ,cAAgBH,EAAUY,QAEpClB,EAAQS,QAAU,IAAIU,EAAAA,YAAYV,GAClCT,EAAQoB,aAAe,OAChBpB,G,oBArDVpK,EAAAA,a,yCAJQ2I,EAAAA,Y,MACA8C,EAAAA,QA0DTxB,GArDE,SAAAA,EACU5B,EACAsC,GADA1L,KAAAoJ,KAAAA,EACApJ,KAAA0L,KAAAA,ECTZ,IAAAe,GA2CEA,EAAA5M,UAAA6M,kBAAA,SAAkBtC,EAA0BnB,GAG1C,OAFAjJ,KAAKkJ,OAAOC,KAAK,+CAAgDiB,GAE1DpK,KAAKoJ,KAAKC,IAAgC,SAAlBJ,GAA8C,SAAlBA,GAA8C,WAAlBA,GAAgD,iBAAlBA,EAC5GjJ,KAAKmG,kBAAkBlG,SAAQ,kBAAkBmK,EACjDpK,KAAKmG,kBAAkBlG,SAAQ,4BAA4BmK,EAAoB,CACpFd,iBAAiB,IAElBC,KACCC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAI1CiF,EAAA5M,UAAA8M,uBAAA,SAAuBpG,GAGrB,OAFAvG,KAAKkJ,OAAOC,KAAK,oDAAqD5C,GAE/DvG,KAAKoJ,KAAKC,IAAiBrJ,KAAKmG,kBAAkBlG,SAAQ,mBAAmBsG,EAAyB,CAC3G+C,iBAAiB,IAEhBC,KACCC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAG1CiF,EAAA5M,UAAA+M,2BAAA,SAA2BxC,GAGzB,OAFApK,KAAKkJ,OAAOC,KAAK,oDAAqDiB,GAE/DpK,KAAKoJ,KAAKC,IAAiBrJ,KAAKmG,kBAAkBlG,SAAQ,qCAAqCmK,EAAoB,CACxHd,iBAAiB,IAEhBC,KACCC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAG1CiF,EAAA5M,UAAAgN,qBAAA,W,IACQ3B,EAASlL,KAAKmG,kBAAkBlG,SAAQ,gBAC9C,OAAOD,KAAKoJ,KAAKC,IAAI6B,EAAK,CAAE5B,iBAAiB,IAAQC,KACjDC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAI1CiF,EAAA5M,UAAAiN,wBAAA,SAAwBC,EAAoBrE,G,IACpCwC,EAASlL,KAAKmG,kBAAkBlG,SAAQ,oBAAoB8M,EAAU,iBACtEC,EAAOhN,KAAKmG,kBAAkBtF,qBAAqBoM,QAAQ,QAAS,IAE1E,OADAvE,EAAK,cAAmBsE,EAAI,WACrBhN,KAAKkN,MAAMjC,KAAKC,EAAKxC,GAAMa,KAChCC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAIxCiF,EAAA5M,UAAAsN,sBAAA,SAAsBJ,EAAoBrE,G,IACpC0E,EAAY,YAAcC,KAAKC,SAASC,WAAWtB,MAAM,KAAKuB,KAAK,KACvE9E,EAAsB,gBAAI0E,EACpBlC,EAASlL,KAAKmG,kBAAkBlG,SAAQ,oBAAoB8M,EAAU,gBAC5E,OAAO/M,KAAKkN,MAAMjC,KAAKC,EAAKxC,IAG9B+D,EAAA5M,UAAA4N,eAAA,SAAe/E,GACb,OAAO1I,KAAKkN,MAAMjC,KAAQjL,KAAKmG,kBAAkBlG,SAAQ,qCAAsCyI,GAAMa,KACnGC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAGxCiF,EAAA5M,UAAA6N,2BAAA,SAA2BhF,GACzB,OAAO1I,KAAKkN,MAAMjC,KAAQjL,KAAKmG,kBAAkBlG,SAAQ,uBAAwByI,GAAMa,KACrFC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAGxCiF,EAAA5M,UAAA8N,0BAAA,SAA0BjF,GACxB,OAAO1I,KAAKkN,MAAMjC,KAAQjL,KAAKmG,kBAAkBlG,SAAQ,uBAAwByI,GAAMa,KACrFC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAGxCiF,EAAA5M,UAAA+N,yBAAA,SAAyBlF,GACvB,OAAO1I,KAAKkN,MAAMjC,KAAQjL,KAAKmG,kBAAkBlG,SAAQ,uBAAwByI,GAAMa,KACrFC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAIxCiF,EAAA5M,UAAAgO,+BAAA,SAA+BtH,EAA+BuH,EAAepF,GAC3E,OAAO1I,KAAKkN,MAAMjC,KAAQjL,KAAKmG,kBAAkBlG,SAAQ,mBAAmBsG,EAAqB,SAASuH,EAAK,cAAepF,GAAMa,KAClIC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAIxCiF,EAAA5M,UAAAkO,0BAAA,SAA0BD,GAExB,OADI9N,KAAKkJ,OAAOC,KAAK,uDAAwD2E,GACtE9N,KAAKkN,MAAM3B,UAAUvL,KAAKmG,kBAAkBlG,SAAQ,SAAS6N,GAASvE,KAC3EC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAGxCiF,EAAA5M,UAAAmO,oBAAA,SAAoBtF,EAA8BuF,GAChD,OAAOjO,KAAKkN,MAAMjC,KAAQjL,KAAKmG,kBAAkBlG,SAAQ,mBAAmBgO,EAAe,iBAAkBvF,GAAMa,KACjHC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAIxCiF,EAAA5M,UAAAqO,2BAAA,SAA2BxF,EAA4BuF,GACrD,OAAOjO,KAAKkN,MAAMjC,KAAQjL,KAAKmG,kBAAkBlG,SAAQ,mBAAmBgO,EAAe,2BAA4BvF,GAAMa,KAC3HC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAGxCiF,EAAA5M,UAAAsO,uBAAA,SAAuBC,EAAoBC,EAAmBC,GACtDpD,EAASlL,KAAKmG,kBAAkBlG,SAAQ,0BAA0BoO,EAAS,YAAYC,EAAO,gBAAgBF,EACpH,OAAOpO,KAAKkN,MAAM7D,IAAI6B,EAAK,CAAE5B,iBAAiB,IAAQC,KAAMC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAElGiF,EAAA5M,UAAA0O,sBAAA,SAAsBF,EAAmBC,GACjCpD,EAASlL,KAAKmG,kBAAkBlG,SAAQ,8CAA8CoO,EAAS,YAAYC,EACjH,OAAOtO,KAAKkN,MAAM7D,IAAI6B,EAAK,CAAE5B,iBAAiB,IAAQC,KAAMC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAElGiF,EAAA5M,UAAA2O,aAAA,WACE,OAAOxO,KAAKkN,MAAM7D,IAAI,wCAAyC,CAAEC,iBAAiB,IAAQC,KAAMC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAEtIiF,EAAA5M,UAAA4O,UAAA,WACE,OAAOzO,KAAKkN,MAAM7D,IAAI,2CAA4C,CAAEC,iBAAiB,IAAQC,KAAMC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAEzIiF,EAAA5M,UAAA6O,gBAAA,SAAgBC,GACRzD,EAASlL,KAAKmG,kBAAkBlG,SAAQ,iCAAiC0O,EAC/E,OAAO3O,KAAKkN,MAAM7D,IAAI6B,EAAK,CAAE5B,iBAAiB,IAAQC,KAAMC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAGlGiF,EAAA5M,UAAAsB,cAAA,SAAcC,GACZpB,KAAKqB,WAAWC,KAAKC,OAAOC,OAAO,GAAIJ,KAEzCqL,EAAA5M,UAAA4B,cAAA,WACE,OAAOzB,KAAKqB,YAIdoL,EAAA5M,UAAA+O,kBAAA,SAAkBlG,GAChB,OAAO1I,KAAKkN,MAAMjC,KAAQjL,KAAKmG,kBAAkBlG,SAAQ,sBAAuByI,GAAMa,KACpFC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAKxCiF,EAAA5M,UAAAgP,oCAAA,SAAoCtI,EAA+BuH,EAAepF,GAChF,OAAO1I,KAAKkN,MAAMjC,KAAQjL,KAAKmG,kBAAkBlG,SAAQ,mBAAmBsG,EAAqB,SAASuH,EAAK,mBAAoBpF,GAAMa,KACvIC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAIxCiF,EAAA5M,UAAAiP,yBAAA,SAAyBpG,GACvB,OAAO1I,KAAKkN,MAAMjC,KAAQjL,KAAKmG,kBAAkBlG,SAAQ,0BAA2ByI,GAAMa,KACxFC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAGzCiF,EAAA5M,UAAAkP,kBAAA,SAAkB3E,GACf,OAAOpK,KAAKkN,MAAM7D,IAAOrJ,KAAKmG,kBAAkBlG,SAAQ,qBAAqBmK,EAAoB,CAC/Fd,iBAAiB,IAChBC,KACDC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,e,oBAnKzCzG,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,W,yCA7BLyI,EAAAA,Y,MAKAsB,G,MAGApC,G,MAFArB,G,MAFD3H,K,8KAgCN,SAAA6M,EAAoBrD,EACA8D,EACAhE,EACAO,EACAtD,GAJAnG,KAAAoJ,KAAAA,EACApJ,KAAAkN,MAAAA,EACAlN,KAAAkJ,OAAAA,EACAlJ,KAAAyJ,oBAAAA,EACAzJ,KAAAmG,kBAAAA,EARZnG,KAAAqB,WAAU,IAA+C0D,EAAAA,gBAAgB,I,OCiCjFiK,EAAAnP,UAAAkG,sBAAA,WACE/F,KAAKgG,GAAGC,iBAGV+I,EAAAnP,UAAAqG,SAAA,WAAA,IAAA0D,EAAA5J,KACEA,KAAKkC,cAAgBlC,KAAK8J,oBAAoBC,gBAC9C/J,KAAKiP,eAAiBjP,KAAK8J,oBAAoBoF,gBAC/ClP,KAAKmP,UAAYnP,KAAK8J,oBAAoBtD,WAC1CxG,KAAKoP,UAAYpP,KAAK8J,oBAAoBuF,UAC1CrP,KAAKsP,iBAAmBtP,KAAK8J,oBAAoBvD,sBACjDvG,KAAKuP,WAAa,cAClBvP,KAAKwP,mBAAmB5C,2BAA2B5M,KAAK8J,oBAAoBM,kBAAkBH,UAAS,SACrGwF,G,IACMC,EAAO,GACXD,EAAaC,KAAK7D,QAAO,SAAC8D,GACxB/F,EAAKgG,mBAAoB,EAEzBH,EAAaI,WAAWhE,QAAO,SAACiE,GAC1BA,EAAIC,WAAaJ,EAAIK,OACvBpG,EAAKgG,mBAAoB,EACzBD,EAAgB,WAAIG,EACpBJ,EAAKO,KAAKN,MAGT/F,EAAKgG,mBACRF,EAAKO,KAAKN,KAGdF,EAAaC,KAAOA,EACpB9F,EAAK6F,aAAeA,EAEpB7F,EAAK6F,aAAavF,SAAWN,EAAK6F,aAAavF,SAASgG,OAAM,SAC3DC,GAAmB,OAAAA,EAA2B,UAAEC,SAASxG,EAAKE,oBAAoBM,oB,IAC/EiG,EAAoBzG,EAAK6F,aAAavF,SAAS,GAAGoG,mBACxD1G,EAAK2G,kBAA+C,EAA3BF,EAAkBhK,QAAyD,cAA3CgK,EAAkB,GAAGG,mBAAkE,IAA7BH,EAAkBhK,QAEtI,SACAsB,GAAe,OAAAiC,EAAKlC,aAAeC,IAEtC3H,KAAKwP,mBAAmBT,kBAAkB/O,KAAK8J,oBAAoBM,kBAAkBH,UAAU,CAC5F3I,KAAI,SAAGmP,GACNzI,KAAKC,MAAMwI,GAAKC,qBAAqBC,UAAU9E,QAAO,SAAC3B,GAEtDN,EAAKgH,mBAAmBX,KAAK/F,EAAS2G,2BACnC3G,EAAS4G,wBACXlH,EAAKgH,mBAAmBX,KAAK/F,EAAS4G,0BAGxClH,EAAKgH,mBAAqBhH,EAAKgH,mBAAmBD,WAEpDhJ,MAAK,SAAGoJ,GACPnH,EAAKgH,mBAAqB,GAC1BhH,EAAKoH,SAAW,mBAKrBzP,OAAA0P,eAAIjC,EAAAnP,UAAA,gBAAa,C,IAAjB,WACE,MAAgD,SAAzCG,KAAKyP,aAAavF,SAAS,GAAGgH,Q,gCAGvC3P,OAAA0P,eAAIjC,EAAAnP,UAAA,qBAAkB,C,IAAtB,WACE,MAAiD,cAA1CG,KAAKyP,aAAavF,SAAS,GAAGiH,S,gCAGhCnC,EAAAnP,UAAAuR,gBAAP,WACEpR,KAAK8J,oBAAoBlD,SAAW,gBAEtCoI,EAAAnP,UAAAwR,uBAAA,WACErR,KAAK8J,oBAAoBlD,SAAW,oBACpC5G,KAAK8J,oBAAoBhD,aAAc,EACvC9G,KAAK8J,oBAAoBwH,eAAiB,OAC1CtR,KAAK8J,oBAAoBtH,0BAA2B,EACpD+O,OAAOC,SAASC,UAElBzC,EAAAnP,UAAA6R,uBAAA,SAAuBC,GAAvB,IAAA/H,EAAA5J,KACE2R,EAAMC,iBACD5R,KAAK8J,oBAAoBtH,0BAO5BxC,KAAKkB,kBAAkB0C,eAAeqG,UAAS,SAAE4H,GAAS,OAAAjI,EAAKjG,SAAWkO,IAC1E7R,KAAKkB,kBAAkB6C,oBAAoBkG,UAAS,SAAE4H,GAAS,OAAAjI,EAAK9F,cAAgB+N,IACpF7R,KAAKkB,kBAAkBgD,mBAAmB+F,UAAS,SAAE4H,GAAS,OAAAjI,EAAK3F,aAAe4N,IAClF7R,KAAKkB,kBAAkBuC,iBAAiBwG,UAAS,SAAE4H,GAAS,OAAAjI,EAAKpG,YAAcqO,IAC/E7R,KAAKkB,kBAAkBmD,iBAAiB4F,UAAS,SAAE4H,GAAS,OAAAjI,EAAKxF,WAAayN,IAC9E7R,KAAKkB,kBAAkBsD,0BAA0ByF,UAAS,SAAE4H,GAAS,OAAAjI,EAAKrF,oBAAsBsN,IAChG7R,KAAKkB,kBAAkByD,qBAAqBsF,UAAS,SAAE4H,GAAS,OAAAjI,EAAKlF,eAAiBmN,IACtF7R,KAAKkB,kBAAkB4D,0BAA0BmF,UAAS,SAAE4H,GAAS,OAAAjI,EAAK/E,mBAAqBgN,IAC/F7R,KAAKuP,WAAa,oBAdhBvP,KAAKkB,kBAAkB2B,kBAAkB,oBACzC7C,KAAKkB,kBAAkBqB,6BAA4B,GACnDvC,KAAK8J,oBAAoBlD,SAAW,oBACpC5G,KAAK8J,oBAAoBgI,YAAa,EACtC9R,KAAK+R,mBAeX/C,EAAAnP,UAAAmS,aAAA,SAAarC,GAAb,IAAA/F,EAAA5J,KACKA,KAAKiS,mBAAmBtC,EAAIK,QAC/BhQ,KAAK8N,MAAQ6B,EACb3P,KAAKwP,mBAAmB5C,2BAA2B5M,KAAKyP,aAAavF,SAAS,GAAGgI,WAAWjI,UAAS,SACnGwF,GACE7F,EAAK6F,aAAeA,EAEpB7F,EAAK6F,aAAavF,SAAWN,EAAK6F,aAAavF,SAASgG,OAAM,SAC3DC,GAAmB,OAAAA,EAA2B,UAAEC,SAASxG,EAAKE,oBAAoBM,oBACrFR,EAAKuI,QAAUvI,EAAK6F,aAAavF,SAAS,GAC1CN,EAAKE,oBAAoBsI,yBAA0B,EACnDxI,EAAK2F,WAAa,eAClB3F,EAAKyI,mBAAoB,EACzBzI,EAAK5D,GAAGC,iBACT,SACA0B,GAAe,OAAAiC,EAAKlC,aAAeC,MAKxCqH,EAAAnP,UAAAyS,aAAA,SAAa7C,GACX,OAAoB,OAAjBA,GAAyBA,IAAiB1H,WAEjB,OAAtB0H,EAAaC,MAAiBD,EAAaC,OAAS3H,WAQ5DiH,EAAAnP,UAAA0S,sBAAA,SAAsBJ,EAAmBK,EAAwB9C,GAAjE,IAAA9F,EAAA5J,KACEA,KAAKyS,kCACLzS,KAAKmS,QAAUA,EACfnS,KAAKwP,mBAAmB5C,2BAA2B5M,KAAKmS,QAAQD,WAAWjI,UAAS,SAClFwF,GACE7F,EAAK6F,aAAeA,EAEpB7F,EAAK6F,aAAavF,SAAWN,EAAK6F,aAAavF,SAASgG,OAAM,SAC3DC,GAAmB,OAAAA,EAA2B,UAAEC,SAASxG,EAAKuI,QAAQD,aACzEtI,EAAKuI,QAAUvI,EAAK6F,aAAavF,SAAS,GAC1CN,EAAKiG,WAAa2C,EAClB5I,EAAK8I,gBAAkBhD,EAAKQ,OAAM,SAAC2B,GAAM,OAAAA,EAAK7B,OAASpG,EAAKiG,WAAqB,WAAG,GAAG8C,WACvF/I,EAAK2F,WAAa,yBAGnB,SACA5H,GAAe,OAAAiC,EAAKlC,aAAeC,MAKxCqH,EAAAnP,UAAA4S,8BAAA,WAAA,IAAA7I,EAAA5J,KACE,GAA0B,OAAtBA,KAAKyP,cAA0BzP,KAAKyP,eAAiB1H,UAMzD,OALA/H,KAAKyP,aAAavF,SAAS2B,QAAO,SAACsG,GACc,uBAAvCA,EAAQjB,OAAO0B,qBAAuF,YAAvCT,EAAQrK,OAAO8K,qBAAqChJ,EAAKiJ,6BAA6BV,KACvJvI,EAAKkJ,4BAA6B,OAGtC9S,KAAK8S,4BAQX9D,EAAAnP,UAAAkT,YAAA,SAAYC,GACS,OAAfA,GAAwBA,IAAejL,WACxC/H,KAAKiT,wBAAwBD,EAAW9I,SAAS,MACpDlK,KAAKyP,aAAeuD,EACpBhT,KAAKuP,WAAa,cAClBvP,KAAKqS,mBAAoB,EACzBrS,KAAK8J,oBAAoBsI,yBAA0B,EACnDpS,KAAKoS,yBAA0B,EAC/BpS,KAAKwC,yBAA2BxC,KAAK8J,oBAAoBtH,2BAK3DwM,EAAAnP,UAAAqT,sBAAA,SAAsBC,EAAiBtD,G,QACrC,GAAIA,GAAkC,EAApBA,EAAWxJ,O,IAC3B,IAAwB,IAAA+M,EAAAC,EAAAxD,GAAUyD,EAAAF,EAAA9R,QAAAgS,EAAAxI,KAAAwI,EAAAF,EAAA9R,OAAE,CAA/B,IAAMkR,EAASc,EAAAzI,MAClB,GAAI2H,EAAUzC,WAAaoD,EACzB,OAAOX,G,oGAIb,OAAO,MAGTxD,EAAAnP,UAAAoT,wBAAA,SAAwBd,GAKtB,OAJInS,KAAKuT,mCAAqCvT,KAAK6S,6BAA6BV,IAC3D,uBAAnBA,EAAQjB,QAA0E,YAAvCiB,EAAQrK,OAAO8K,sBAC1D5S,KAAKwT,wBAAyB,KAE5BxT,KAAKwT,wBAOXxE,EAAAnP,UAAA4T,iBAAA,WACE,GAA0B,OAAtBzT,KAAKyP,cAA0BzP,KAAKyP,eAAiB1H,UAAW,C,IAChEoK,EAAUnS,KAAKyP,aAAavF,SAAS,GACzC,MAA2C,uBAAvCiI,EAAQjB,OAAO0B,qBAAgD5S,KAAK6S,6BAA6BV,IAC5F,GAEF,IAITnD,EAAAnP,UAAAoS,mBAAA,SAAmBkB,G,QACjB,GAAInT,KAAKyT,oBAAsBzT,KAAKuT,mCAAqCvT,KAAK6S,6BAA6B7S,KAAKyP,aAAavF,SAAS,IAAK,CACzI,GAAIlK,KAAKyP,aAAaI,YAAoD,EAAtC7P,KAAKyP,aAAaI,WAAWxJ,OAAY,C,IAC3E,IAAwB,IAAAqN,EAAAL,EAAArT,KAAKyP,aAAaI,YAAU8D,EAAAD,EAAApS,QAAAqS,EAAA7I,KAAA6I,EAAAD,EAAApS,OAClD,GADkBqS,EAAA9I,MACJkF,WAAaoD,EACzB,OAAO,E,oGAGX,OAAO,EAET,OAAO,EAGP,OAAO,GAkBXnE,EAAAnP,UAAAkS,eAAA,WACE/R,KAAKkB,kBAAkBwC,YAAY,MACnC1D,KAAKkB,kBAAkB2C,iBAAiB,MACxC7D,KAAKkB,kBAAkB8C,gBAAgB,MACvChE,KAAKkB,kBAAkBqC,eAAe,MACtCvD,KAAKkB,kBAAkBiD,cAAc,MACrCnE,KAAKkB,kBAAkB0D,sBAAsB,MAC7C5E,KAAKkB,kBAAkBoD,uBAAuB,MAC9CtE,KAAKkB,kBAAkBuD,kBAAkB,OAG3CuK,EAAAnP,UAAA+T,sBAAA,SAAsBzB,GACtBnS,KAAKuP,WAAa,kBAClBvP,KAAK6T,uBAAyB1B,GAE9BnD,EAAAnP,UAAAiU,oBAAA,SAAoBnC,GAClBA,EAAMC,iBACN5R,KAAKuP,WAAa,e,oBAxTrBxI,EAAAA,UAAS/F,KAAA,CAAC,CACTgG,SAAU,qBACVC,SAAA,gohB,+mBAbOwF,G,MACA3G,G,MAMAoB,EAAAA,mB,MAEAhG,K,mCAQNiG,EAAAA,Q,qBACAA,EAAAA,Q,gBACAA,EAAAA,Q,sBACAA,EAAAA,Q,sBACAA,EAAAA,Q,gBACAA,EAAAA,Q,mBACAA,EAAAA,Q,0BACAA,EAAAA,Q,eACAA,EAAAA,Q,yBACAA,EAAAA,Q,8BACAA,EAAAA,Q,kBACAA,EAAAA,Q,oBACAA,EAAAA,Q,qBACAA,EAAAA,Q,sBACAA,EAAAA,Q,2BACAA,EAAAA,Q,mBACAA,EAAAA,Q,wBACAA,EAAAA,MAAKnG,KAAA,CAAC,uBAmSTgO,GA1QE,SAAAA,EAAoBQ,EACV1F,EACA9D,EACA9E,GAHV,IAAA0I,EAAA5J,KAAoBA,KAAAwP,mBAAAA,EACVxP,KAAA8J,oBAAAA,EACA9J,KAAAgG,GAAAA,EACAhG,KAAAkB,kBAAAA,EAjBVlB,KAAAqS,mBAA6B,EAE7BrS,KAAA+T,oBAA8B,EAC9B/T,KAAAwT,wBAAkC,EAClCxT,KAAAgU,2BAA6B,CAAC,2BAA4B,mBAC1DhU,KAAA6P,WAA2B,GAC3B7P,KAAA4Q,mBAAwC,GAiPxC5Q,KAAAuT,gCAA+B,WAC7B,OAAO3J,EAAKoK,2BAA2BC,KAAI,SAACC,GAC1C,OAA0C,IAA1CtK,EAAKxD,kBAAkB+N,QAAQD,MAInClU,KAAA6S,6BAA4B,SAAIV,GAC9B,GAAe,OAAZA,GAAoBA,IAAYpK,UAAW,C,IAC1CqM,EAAa,IAAIC,KAErB,OADAD,EAAWE,QAAQF,EAAWG,UAAY,GACnCH,GAAc,IAAIC,KAAKlC,EAAQqC,gBC/S1C,IAAAC,GA0BEA,EAAA5U,UAAA6U,iBAAA,WACI,OAAO1U,KAAKoJ,KAAKC,IAAyBrJ,KAAKmG,kBAAkB1F,iBAAgB,WAAY,CAC7F6I,iBAAiB,IAEhBC,KACCC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAI1CiN,EAAA5U,UAAA8U,uBAAA,WACE,OAAO3U,KAAKoJ,KAAKC,IAAYrJ,KAAKmG,kBAAkB1F,iBAAgB,qBAAsB,CACxF6I,iBAAiB,IAElBC,KACCC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAIxCiN,EAAA5U,UAAA+U,iBAAA,SAAiBC,GACf,OAAO7U,KAAKoJ,KAAKC,IAAYrJ,KAAKmG,kBAAkB1F,iBAAgB,IAAIoU,EAAe,WAAY,CACjGvL,iBAAiB,IAEhBC,KACCC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAI5CiN,EAAA5U,UAAAiV,mBAAA,SAAmBpM,EAAyBmM,EAAyBE,GAEnE,OAAO/U,KAAKkN,MAAM1B,MAASxL,KAAKmG,kBAAkB1F,iBAAgB,IAAIoU,EAAe,WAAWE,EAAkBrM,GACjHa,KACCC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAIxCiN,EAAA5U,UAAAmV,cAAA,SAAcC,EAAuBC,GACjC,OAAOlV,KAAKoJ,KAAKC,IAAsBrJ,KAAKmG,kBAAkB1F,iBAAgB,WAAWwU,EAAY,uBAAuBC,EAC5H,CACA5L,iBAAiB,IAEhBC,KACCC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAI1CiN,EAAA5U,UAAAsV,uBAAA,SAAuBjD,GACrB,OAAOlS,KAAKoJ,KAAKC,IAA6BrJ,KAAKmG,kBAAkB1F,iBAAgB,IAAIyR,EAAS,kBAClG,CACA5I,iBAAiB,IAEhBC,KACCC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAIxCiN,EAAA5U,UAAAuV,oBAAA,SAAoBlT,GAClB,OAAOlC,KAAKoJ,KAAKC,IAAsBrJ,KAAKmG,kBAAkB1F,iBAAgB,kBAAkByB,EAAiB,CACjHoH,iBAAiB,IAEhBC,KACCC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAIxCiN,EAAA5U,UAAAwV,eAAA,WACI,OAAOrV,KAAKoJ,KAAKC,IAAYrJ,KAAKmG,kBAAkB1F,iBAAgB,oBAAqB,CACzF6I,iBAAiB,IAEhBC,KACCC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAI1CiN,EAAA5U,UAAAyV,gBAAA,SAAgB5M,GACd,OAAO1I,KAAKkN,MAAMjC,KAAQjL,KAAKmG,kBAAkB1F,iBAAgB,UAAWiI,GAAMa,KAChFC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAIxCiN,EAAA5U,UAAA0V,oBAAA,SAAoB7M,EAA8B8M,GAEhD,OAAOxV,KAAKkN,MAAM1B,MAASxL,KAAKmG,kBAAkB1F,iBAAgB,aAAa+U,EAAoB9M,GAAMa,KACvGC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAIxCiN,EAAA5U,UAAAwL,WAAA,SAAWF,G,IACHM,EAAYzL,KAAK0L,KAAKC,OAAO,mBAC7BC,EAAU,GAkBhB,OAjBIT,EAAQS,SACVT,EAAQS,QAAQC,QAAO,SAACC,GACtBF,EAAQE,GAAWX,EAAQS,QAAQvC,IAAIyC,KAG3CF,EAAQ,oBAAsB,iBACJ,OAAtBH,EAAUY,QACRN,SAASC,OAAOC,MAAM,KAAKC,KAAI,SAACC,GAAO,OAAAA,EAAIC,WAAW,kBAAmBrE,UAC3E6D,EAAQ,cAAgBG,SAASC,OAAOC,MAAM,KAAKC,KAAI,SAACC,GAAO,OAAAA,EAAIC,WAAW,gBAAeH,MAAM,KAAK,GAExGL,EAAQ,cAAgBG,SAASC,OAAOC,MAAM,KAAKC,KAAI,SAACC,GAAO,OAAAA,EAAIC,WAAW,iBAAgBH,MAAM,KAAK,GAG3GL,EAAQ,cAAgBH,EAAUY,QAEpClB,EAAQS,QAAU,IAAIU,EAAAA,YAAYV,GAClCT,EAAQoB,aAAe,OAChBpB,G,oBAtHRpK,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,W,yCAdNyI,EAAAA,Y,MAGCsB,G,MADDzD,G,MAEA3H,G,MAHC4M,EAAAA,Q,mLAiBP,SAAAiI,EAAoBrL,EACV8D,EACUzD,EACAtD,EACAuF,GAJA1L,KAAAoJ,KAAAA,EACVpJ,KAAAkN,MAAAA,EACUlN,KAAAyJ,oBAAAA,EACAzJ,KAAAmG,kBAAAA,EACAnG,KAAA0L,KAAAA,ECvBtB,IAAA+J,GAqDEA,EAAA5V,UAAAqG,SAAA,WAAA,IAAA0D,EAAA5J,KACEA,KAAKuP,WAAa,gBAClBvP,KAAKyU,eAAeG,iBAAiB5U,KAAK6U,iBAAiB5K,UAAS,SAClEyL,GACE9L,EAAK8L,iBAAgB,GACtB,SACDjO,GACEmC,EAAKlC,aAAekC,EAAK+L,iBAAgB,EAAMlO,EAAIS,WAAYT,EAAIA,IAAKA,KAG5EzH,KAAK4V,kBAAoB5V,KAAK6V,YAAYC,MAAM,CAC9CC,kBAAmB,IAAIC,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CACxDD,EAAAA,WAAWE,YAEbC,wBAAyB,IAAIJ,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CAC9DD,EAAAA,WAAWE,YAEbE,gBAAiB,IAAIL,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CACtDD,EAAAA,WAAWE,SACXF,EAAAA,WAAWK,UAAU,GACrBL,EAAAA,WAAWM,UAAU,KACrBN,EAAAA,WAAWO,QAAQ,8BAGrBC,iBAAkB,IAAIT,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CACvDD,EAAAA,WAAWE,SACXF,EAAAA,WAAWM,UAAU,IACrBN,EAAAA,WAAWO,QAAQ,6BAGxBxW,KAAKkC,cAAgBlC,KAAK0W,iBAAiBC,iBAES,iBAAzC3W,KAAK8J,oBAAoBhD,aAAqE,UAAzC9G,KAAK8J,oBAAoBhD,aAA6E,kBAAzC9G,KAAK8J,oBAAoBhD,cAA8B9G,KAAK8J,oBAAoBhD,eAC5M9G,KAAK4W,sBAAuB,IAG9BnB,EAAA5V,UAAAgX,mBAAA,SAAmB7G,GAAnB,IAAApG,EAAA5J,KACEA,KAAK8W,uBAAwB,EAC7B9W,KAAK+W,oBAAqB,EAC1B/W,KAAKgX,eAAgB,EACrBhX,KAAKiX,iBAAkB,EACvBjX,KAAKkX,4BAA6B,EACtB,yBAATlH,GACDhQ,KAAKmX,yBAA0B,EAC/BnX,KAAKoX,qBAAsB,EAC3BpX,KAAKqX,iBAAkB,EACvBrX,KAAKsX,gBAAiB,GAEJ,YAATtH,GACThQ,KAAKoX,qBAAsB,EAC3BpX,KAAKmX,yBAA0B,EAC/BnX,KAAKqX,iBAAkB,EACvBrX,KAAKsX,gBAAiB,GAEJ,WAATtH,GACThQ,KAAKqX,iBAAkB,EACvBrX,KAAKoX,qBAAsB,EAC3BpX,KAAKsX,gBAAiB,EACtBtX,KAAKyU,eAAeE,yBAAyB1K,UAAS,SACpDsN,GACE3N,EAAK2N,uBAAsB,GAC5B,SACD9P,GACEmC,EAAKlC,aAAekC,EAAK+L,iBAAgB,EAAMlO,EAAIS,WAAYT,EAAIA,IAAKA,MAG1D,UAATuI,EACThQ,KAAKsX,gBAAiB,EACJ,UAATtH,IACThQ,KAAKsX,gBAAiB,IAG1B7B,EAAA5V,UAAA2X,oBAAA,WAAA,IACMC,EACA3P,EAFN8B,EAAA5J,KAGEA,KAAK0X,UAAU,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAQ,O,IACnEC,EAAW3X,KAAK4V,kBAAkB+B,SAClCC,EAAmBD,EAAStB,gBAAgBwB,OAE9C7X,KAAK4V,kBAAkBkC,OAASH,EAAS5B,kBAAkBgC,QACrB,WAApCJ,EAAS5B,kBAAkBlL,OACS,UAApC8M,EAAS5B,kBAAkBlL,OAAqB8M,EAASvB,wBAAwB2B,OAAmD,SAA1CJ,EAASvB,wBAAwBvL,OACvF,UAApC8M,EAAS5B,kBAAkBlL,OAA+D,SAA1C8M,EAASvB,wBAAwBvL,OAAoB8M,EAASlB,iBAAiBsB,OAC3F,wBAApCJ,EAAS5B,kBAAkBlL,OAAmC8M,EAAStB,gBAAgB0B,QAClD,YAArCJ,EAAS5B,kBAAkBlL,OAC7B/C,EAAS,UACT2P,EAAuB,CACrBzH,KAAK,GACLgI,OAAQ,KAEoC,WAArCL,EAAS5B,kBAAkBlL,OACpC/C,EAAS,SAET2P,EAAuB,CACrBzH,KAAM2H,EAASvB,wBAAwBvL,OAAiD,GACxFmN,OAAkD,SAA1CL,EAASvB,wBAAwBvL,MAAmB8M,EAASlB,iBAAiB5L,MAAQ,KAElD,yBAArC8M,EAAS5B,kBAAkBlL,QACpC/C,EAAS,WAET2P,EAAuB,CACrBzH,KAAM,GACNgI,OAAQL,EAAStB,gBAAgBxL,QAGrC7K,KAAKyU,eAAeK,mBAAmB2C,EAAsBzX,KAAK6U,gBAAiB/M,GAAQmC,UAAS,SAClGgO,GACErO,EAAKsO,qBAAsB,EAE3BtO,EAAKuO,WAAaF,EAAShL,QAAQ,SAAU,KAC9C,SACDxF,GACEmC,EAAKlC,aAAekC,EAAK+L,iBAAgB,EAAMlO,EAAIS,WAAYT,EAAIA,IAAKA,OAIrC,IAApCkQ,EAAS5B,kBAAkBlL,OAC5B7K,KAAK0X,UAAU,EAAC,GAAM,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAQ,UAEnC,UAApCC,EAAS5B,kBAAkBlL,OAA+D,IAA1C8M,EAASvB,wBAAwBvL,OAClF7K,KAAK0X,UAAU,EAAC,GAAO,GAAM,GAAO,GAAO,GAAO,GAAO,GAAO,GAAQ,gBAEnC,wBAApCC,EAAS5B,kBAAkBlL,QACS,IAAlC8M,EAAStB,gBAAgBxL,OAC1B7K,KAAK0X,UAAU,EAAC,GAAO,GAAO,GAAM,GAAO,GAAO,GAAO,GAAO,GAAQ,cAErC,IAAlCC,EAAStB,gBAAgBxL,OAAe8M,EAAStB,gBAAgB+B,SAClEpY,KAAK0X,UAAU,EAAC,GAAO,GAAO,GAAO,GAAM,GAAO,GAAO,GAAO,GAAQ,cAEvEE,GAAoBA,EAAiBS,WAAaT,EAAiBS,UAAUC,aAAe,GAC7FtY,KAAK0X,UAAU,EAAC,GAAO,GAAO,GAAO,GAAO,GAAM,GAAO,GAAO,GAAQ,cAEvEE,GAAoBA,EAAiBW,WAAuD,IAA1CX,EAAiBW,UAAUD,cAC9EtY,KAAK0X,UAAU,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,GAAM,GAAO,GAAQ,eAGrC,UAApCC,EAAS5B,kBAAkBlL,OAA+D,SAA1C8M,EAASvB,wBAAwBvL,QAC3C,KAApC8M,EAASlB,iBAAiB5L,OAC3B7K,KAAK0X,UAAU,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAM,GAAQ,eAEpC,KAAnCC,EAASlB,iBAAiB5L,OAAe8M,EAASlB,iBAAiB2B,SACpEpY,KAAK0X,UAAU,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,kBAMhFjC,EAAA5V,UAAA8V,gBAAA,SAAgBpN,EAAcT,EAAQkJ,EAAUvJ,G,IAC1C+Q,EAAU,yBASd,MAAO,CACL/P,MAAO,uBACPC,KARE8P,EAFW,MAAX1Q,EACEkJ,IAAajJ,UACLiJ,EAEAvJ,EAMN+Q,EACN7P,UAAWJ,IAGfkN,EAAA5V,UAAA4Y,mBAAA,WAAA,IAAA7O,EAAA5J,KACEA,KAAKkB,kBAAkB6B,yBAAyBkH,UAAS,SAAE4H,GAAS,OAAAjI,EAAK8O,eAAiB7G,IACtF7R,KAAK0Y,eAQP1Y,KAAK8J,oBAAoBlD,SAAW,mBACpC5G,KAAK8J,oBAAoB6O,oBAAqB,GAMlDlD,EAAA5V,UAAA+Y,oBAAA,WACqD,iBAAzC5Y,KAAK8J,oBAAoBhD,aAAqE,UAAzC9G,KAAK8J,oBAAoBhD,YAEtF9G,KAAK8J,oBAAoBlD,SAAW,eAGpC5G,KAAKkB,kBAAkB2B,kBAAkB,oBACzC7C,KAAKkB,kBAAkBqB,6BAA4B,GACnDvC,KAAK8J,oBAAoBnD,KAAM,oBAC/B3G,KAAK8J,oBAAoBlD,SAAW,oBACpC5G,KAAK8J,oBAAoBgI,YAAa,EACtC9R,KAAK8J,oBAAoB6O,oBAAqB,IAGnDlD,EAAA5V,UAAAgZ,yBAAA,WACsD,iBAAzC7Y,KAAK8J,oBAAoBhD,aAAqE,UAAzC9G,KAAK8J,oBAAoBhD,aAA6E,kBAAzC9G,KAAK8J,oBAAoBhD,cAA8B9G,KAAK8J,oBAAoBhD,YAE7M9G,KAAK8J,oBAAoBlD,SAAW,cAGnC5G,KAAKyY,sBA6BPhD,EAAA5V,UAAA6X,UAAA,SAAUoB,EAAMC,GACH,WAARA,GAA4B,QAARA,IACrB/Y,KAAK8W,sBAAwBgC,EAAK,IAEzB,iBAARC,GAAkC,QAARA,IAC3B/Y,KAAKkX,2BAA6B4B,EAAK,IAE9B,eAARC,GAAgC,QAARA,IACzB/Y,KAAK+W,mBAAqB+B,EAAK,GAC/B9Y,KAAKgZ,qBAAuBF,EAAK,GACjC9Y,KAAKiZ,uBAAyBH,EAAK,GACnC9Y,KAAKkZ,uBAAyBJ,EAAK,IAE1B,gBAARC,GAAiC,QAARA,IAC1B/Y,KAAKgX,cAAgB8B,EAAK,GAC1B9Y,KAAKiX,gBAAkB6B,EAAK,KAIhCrD,EAAA5V,UAAAsZ,eAAA,WACEnZ,KAAKoZ,OAAOC,SAAS,CAAC,uBAAuBrZ,KAAKkC,eAAkB,CAACoX,WAAYtZ,KAAKuZ,e,oBApSzFxS,EAAAA,UAAS/F,KAAA,CAAC,CACTgG,SAAU,uBACVC,SAAA,+iQ,u9BAVMwN,G,MADC+E,EAAAA,a,MAKAtY,G,MACA4E,G,MACe2T,EAAAA,Q,MAAfC,EAAAA,kB,yCAQNvS,EAAAA,Q,wBACAA,EAAAA,SA+RHsO,GAnQE,SAAAA,EAAoBhB,EACAoB,EACA3U,EACA4I,EACAsP,EACAG,GALAvZ,KAAAyU,eAAAA,EACAzU,KAAA6V,YAAAA,EACA7V,KAAAkB,kBAAAA,EACAlB,KAAA8J,oBAAAA,EACA9J,KAAAoZ,OAAAA,EACApZ,KAAAuZ,YAAAA,EA7BpBvZ,KAAA0H,aAAgB1H,KAAK2V,iBAAgB,EAAO,GAAI,GAAI,IACpD3V,KAAA2Z,WAAqB,KAErB3Z,KAAA0V,iBAAoC,GACpC1V,KAAAuX,uBAAgD,GAChDvX,KAAAoX,qBAA+B,EAC/BpX,KAAAqX,iBAA2B,EAC3BrX,KAAAsX,gBAA0B,EAC1BtX,KAAAkY,qBAA+B,EAE/BlY,KAAA8W,uBAAiC,EACjC9W,KAAAkX,4BAAsC,EACtClX,KAAA+W,oBAA8B,EAC9B/W,KAAAgZ,sBAAgC,EAChChZ,KAAAiZ,wBAAkC,EAClCjZ,KAAAkZ,wBAAkC,EAClClZ,KAAAgX,eAAyB,EACzBhX,KAAAiX,iBAA2B,EAC3BjX,KAAAmY,WAAqB,KAKrBnY,KAAAmX,yBAAmC,EC5CrC,IAAAyC,GA+BEA,EAAA/Z,UAAAqG,SAAA,WAAA,IAAA0D,EAAA5J,KAEEA,KAAK6Z,QAAU7Z,KAAKoG,kBAGjBpG,KAAKoG,kBAAkB6N,KAAI,SAACtJ,GAAI,OAAAA,EAAEyF,SAAS,8BAC5CpQ,KAAK8Z,cAAe,GAEpB9Z,KAAK+Z,uBAAwB,EAC7B/Z,KAAK8Z,cAAe,GAItB9Z,KAAKga,oBAAsB,yBAC3Bha,KAAKia,oBAAsB,iCAEzBja,KAAK8Z,cACP9Z,KAAKka,cAAclF,cAAchV,KAAKma,gBAAe,GAAMlQ,UAAS,SAClEtI,GACEiI,EAAKwQ,oBAAsBzY,EAAwB,YACnDiI,EAAKmQ,uBAAwB,IAQjC/Z,KAAKka,cAAclF,cAAchV,KAAKqa,cAAa,GAAOpQ,UAAS,SACjEtI,GACEiI,EAAK0Q,mBAAqB3Y,EAAwB,YAClDiI,EAAK2Q,sBAAuB,K,oBA1DnCxT,EAAAA,UAAS/F,KAAA,CAAC,CACTgG,SAAU,oBACVC,SAAA,6qC,qMALOwN,K,gCASNtN,EAAAA,MAAKnG,KAAA,CAAC,Y,yBACNmG,EAAAA,MAAKnG,KAAA,CAAC,uB,yBACNmG,EAAAA,MAAKnG,KAAA,CAAC,wBA2DT4Y,GAzDE,SAAAA,EAAoBM,GAAAla,KAAAka,cAAAA,EAKpBla,KAAAoa,oBAAqC,GACrCpa,KAAAsa,mBAAoC,GACpCta,KAAAma,eAAiB,oBACjBna,KAAAqa,aAAe,kBAGfra,KAAA0H,aAAe,KAIf1H,KAAA8Z,cAAwB,EC7B1B,IAAAU,GAqBEA,EAAA3a,UAAA4a,eAAA,SAAerQ,GAGb,OAFApK,KAAKkJ,OAAOC,KAAK,2CAA4CiB,GAEtDpK,KAAKoJ,KAAKC,IAAqBrJ,KAAKmG,kBAAkBlG,SAAQ,kBAAkBmK,EAAgB,WAAY,CAC/Gd,iBAAiB,IAElBC,KACCC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,e,oBAjB3CzG,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,W,yCAXNyI,EAAAA,Y,MAOCd,G,MADArB,G,MAFD3H,K,kKAWN,SAAA4a,EAAoBpR,EACAF,EACAO,EACAtD,GAHAnG,KAAAoJ,KAAAA,EACApJ,KAAAkJ,OAAAA,EACAlJ,KAAAyJ,oBAAAA,EACAzJ,KAAAmG,kBAAAA,ECnBtB,IAAAuU,GAmBEA,EAAA7a,UAAAqG,SAAA,WAAA,IAAA0D,EAAA5J,KACEA,KAAK2a,mBAAmBF,eAAeza,KAAK8J,oBAAoBM,kBAAkBH,UAAS,SACzF2Q,GAAe,OAAAhR,EAAKgR,YAAcA,GAAW,SAC5CjT,GAAe,OAAAiC,EAAKlC,aAAY,KAIrCnG,OAAA0P,eAAIyJ,EAAA7a,UAAA,sBAAmB,C,IAAvB,WACE,OAAOG,KAAKoK,kB,oDAtBfrD,EAAAA,UAAS/F,KAAA,CAAC,CACTgG,SAAU,qBACVC,SAAA,+iB,+EANOuT,G,MAEA1U,KA2BT4U,GAdE,SAAAA,EAAoBC,EACA7Q,GADA9J,KAAA2a,mBAAAA,EACA3a,KAAA8J,oBAAAA,EANpB9J,KAAA6a,UAAoB,eCXtB,IAAAC,G,oBAEC/T,EAAAA,UAAS/F,KAAA,CAAC,CACPiG,SAAU,sEAIuB6T,GALrC,SAAAA,KCFA,IAAAC,GAoBEA,EAAAlb,UAAAmb,8BAAA,SAA8B5Q,EAA0BnB,GAGtD,OAFAjJ,KAAKkJ,OAAOC,KAAK,6DAA8DiB,GAExEpK,KAAKoJ,KAAKC,IAAwC,SAAlBJ,GAA8C,SAAlBA,GAA8C,WAAlBA,GAAgD,iBAAlBA,EACpHjJ,KAAKmG,kBAAkBlG,SAAQ,kBAAkBmK,EAAgB,YACjEpK,KAAKmG,kBAAkBlG,SAAQ,4BAA4BmK,EAAgB,YAAa,CAC7Fd,iBAAiB,IAElBC,KACCC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,e,oBAnB3CzG,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,W,yCATLyI,EAAAA,Y,MAKAd,G,MAFArB,G,MAJA3H,K,kKAcP,SAAAmb,EAAoB3R,EACAF,EACAO,EACAtD,GAHAnG,KAAAoJ,KAAAA,EACApJ,KAAAkJ,OAAAA,EACAlJ,KAAAyJ,oBAAAA,EACAzJ,KAAAmG,kBAAAA,EClBtB,IAAA8U,GAmBEA,EAAApb,UAAAqG,SAAA,WAAA,IAAA0D,EAAA5J,KACEA,KAAKkb,qBAAqBF,8BAA8Bhb,KAAK8J,oBAAoBM,iBAAkBpK,KAAK8J,oBAAoBb,eAAegB,UAAS,SAClJkR,GAAY,OAAAvR,EAAKuR,SAAWA,GAAQ,SACnCxT,GAAe,OAAAiC,EAAKlC,aAAoBC,EAAMsF,QAAQ,KAAK,O,oBAjBjElG,EAAAA,UAAS/F,KAAA,CAAC,CACTgG,SAAU,yBACVC,SAAA,q+B,yDALO8T,G,MACAjV,K,uCAQNqB,EAAAA,SAgBH8T,GAXE,SAAAA,EAAoBC,EACApR,GADA9J,KAAAkb,qBAAAA,EACAlb,KAAA8J,oBAAAA,EALpB9J,KAAA6a,UAAoB,yBCZtB,IAAAO,IAaEA,GAAAvb,UAAAqG,SAAA,a,qBAVDa,EAAAA,UAAS/F,KAAA,CAAC,CACTgG,SAAU,oBACVC,SAAA,+xB,kKAICE,EAAAA,SAOHiU,IALE,SAAAA,M,ICNIC,GAAI,WAAc,OAAAtT,W,IAOtBxG,OAAA0P,eAAIqK,GAAAzb,UAAA,OAAI,C,IAAR,WAII,OAAOwb,I,gCAIX9Z,OAAA0P,eAAIqK,GAAAzb,UAAA,OAAI,C,IAAR,WAII,OAAOwb,I,gCAIX9Z,OAAA0P,eAAIqK,GAAAzb,UAAA,QAAK,C,IAAT,WAII,OAAOwb,I,gCAIXC,GAAAzb,UAAAgJ,oBAAA,SAAoBC,EAAc9H,IACR,QAAU8H,IAASyS,QAAQC,KAAOH,IACpDI,MAAMF,QAAS,CAACva,K,qBA/BzBD,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,W,0GADd,SAAAqa,MCPA,IAAAI,IAoBEA,GAAA7b,UAAA8b,iBAAA,SAAiBzZ,GAGf,OAFAlC,KAAKkJ,OAAOC,KAAK,mDAAoDjH,GAE9DlC,KAAKoJ,KAAKC,IAAwBrJ,KAAKmG,kBAAkBlG,SAAQ,UAAUiC,EAAa,iBAAkB,CAC/GoH,iBAAiB,IAEhBC,KACCC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,e,qBAlB3CzG,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,W,0CATNyI,EAAAA,Y,MACAd,G,MACArB,G,MACA3H,K,sKAUN,SAAA8b,GAAoBtS,EACAF,EACAO,EACAtD,GAHAnG,KAAAoJ,KAAAA,EACApJ,KAAAkJ,OAAAA,EACAlJ,KAAAyJ,oBAAAA,EACAzJ,KAAAmG,kBAAAA,ECjBtB,IAAAyV,IAuBEA,GAAA/b,UAAAgc,mBAAA,SAAmB3Z,GACf,OAAOlC,KAAKoJ,KAAKC,IAAoBrJ,KAAKmG,kBAAkB9F,kBAAiB,UAAU6B,EAAiB,CACxGoH,iBAAiB,IAEhBC,KACCC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAG1CoU,GAAA/b,UAAAic,mBAAA,SAAmBC,GACjB,OAAO/b,KAAKoJ,KAAKC,IAAoBrJ,KAAKmG,kBAAkB9F,kBAAiB,kCAAkC0b,EAAO,CACpHzS,iBAAiB,IAEhBC,KACCC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAG1CoU,GAAA/b,UAAAmc,sBAAA,SAAsBtT,EAA8BuT,GAClD,OAAOjc,KAAKkN,MAAMjC,KAAQjL,KAAKmG,kBAAkBlG,SAAQ,mBAAmBgc,EAAU,sBAAuBvT,GAAMa,KACjHC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAGxCoU,GAAA/b,UAAAqc,uBAAA,SAAuBxT,EAA8BuF,GACnD,OAAOjO,KAAKkN,MAAMjC,KAAQjL,KAAKmG,kBAAkBlG,SAAQ,mBAAmBgO,EAAe,gCAAiCvF,GAAMa,KAChIC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAGxCoU,GAAA/b,UAAAsc,oBAAA,SAAoBzT,GAClB,OAAO1I,KAAKkN,MAAMjC,KAAQjL,KAAKmG,kBAAkBlG,SAAQ,+CAAgDyI,GAAMa,KAC7GC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAGxCoU,GAAA/b,UAAAuc,oBAAA,SAAoBjN,EAAmBrH,GACrC,OAAO9H,KAAKkN,MAAM1B,MAASxL,KAAKmG,kBAAkBlG,SAAQ,uBAAuBkP,EAAS,WAAWrH,EAAUA,GAAQyB,KACrHC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,eAGxCoU,GAAA/b,UAAAwc,2BAAA,SAA2B5M,G,IACrB6M,EAAY,EACfC,EAAgB,EAChBC,EAAkB,EAqBnB,OAnBI/M,EAAaC,MACfD,EAAaC,KAAK7D,QAAO,SAAC8D,GACxB2M,GAAwB3M,EAAI8M,oBAI5BhN,EAAavF,UACfuF,EAAavF,SAAS2B,QAAO,SAACsG,GACS,YAAjCA,EAAQrK,OAAO4U,gBACjBH,GAAgCpK,EAAQwK,UAK1ClN,EAAaI,YACfJ,EAAaI,WAAWhE,QAAO,SAAC2G,GAC9BgK,GAAoChK,EAAUoK,aAG1CN,EAAYE,EAAmBD,GAGzCX,GAAA/b,UAAAgd,qBAAA,SAAqBC,EAAeC,GAElC,OAAOD,EAAM7P,QADG,SACc8P,IAGhCnB,GAAA/b,UAAAsO,uBAAA,SAAuBC,EAAoBC,EAAmBC,GAC5D,OAAOtO,KAAKkN,MAAM7D,IAAOrJ,KAAKmG,kBAAkB9F,kBAAiB,0BAA0BgO,EAAS,YAAYC,EAAO,gBAAgBF,EAAc,CACnJ9E,iBAAiB,IAEhBC,KACCC,EAAAA,WAAWxJ,KAAKyJ,oBAAoBjC,e,qBApF3CzG,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,W,0CAZNyI,EAAAA,Y,MAECsB,G,MADDzD,G,MAEA3H,K,sKAaN,SAAAgc,GAAoBxS,EACV8D,EACUzD,EACAtD,GAHAnG,KAAAoJ,KAAAA,EACVpJ,KAAAkN,MAAAA,EACUlN,KAAAyJ,oBAAAA,EACAzJ,KAAAmG,kBAAAA,E,QCuFpB6W,GAAAnd,UAAAqG,SAAA,WAAA,IAAA0D,EAAA5J,KACEA,KAAK0Y,eAAkB,GAC4B,OAAhD1Y,KAAKkB,kBAAkBiC,sBACxBnD,KAAKkB,kBAAkBiC,qBAAqB8G,UAAS,SAAE4H,GAAS,OAAAjI,EAAKqT,YAAcpL,IAEjF7R,KAAKoG,oBAAsB2B,WAA+C,IAAlC/H,KAAKoG,kBAAkBC,QAA8D,OAA9CrG,KAAKkB,kBAAkBoC,oBACxGtD,KAAKkB,kBAAkBoC,mBAAmB2G,UAAS,SAAE4H,GAAS,OAAAjI,EAAKxD,kBAAoByL,IAElC,OAApD7R,KAAKkB,kBAAkB6B,0BACxB/C,KAAKkB,kBAAkB6B,yBAAyBkH,UAAS,SAAE4H,GAAS,OAAAjI,EAAK8O,eAAiB7G,IAGxF7R,KAAKid,cAAgBlV,WAAkC,OAArB/H,KAAKid,aAAwBjd,KAAKid,YAAYC,0BAA4BnV,WAAqC,uBAAxB/H,KAAK0Y,gBAChI1Y,KAAKmd,iBAAiBnd,KAAKid,YAAYC,wBAAyBld,KAAKid,YAAY/K,UAAWlS,KAAKid,YAAY/L,QAE/GlR,KAAKod,6BAA8B,EACnCpd,KAAKkC,cAAgBlC,KAAK8J,oBAAoBC,gBAC9C/J,KAAK+B,SAAW/B,KAAK8J,oBAAoBuT,SACQ,KAA7Crd,KAAK8J,oBAAoBC,kBAC3B/J,KAAKkC,cAAgBlC,KAAK8J,oBAAoBwT,eAEhDtd,KAAKud,aAAevd,KAAK8J,oBAAoBwT,cAC7Ctd,KAAKwd,YAAcxd,KAAK8J,oBAAoBhD,Y,IACtC2W,EAAiBzd,KAAK8J,oBAAoBwH,eAC3CmM,IAAmB1V,WAA2C,SAA9B0V,EAAelQ,WAClDvN,KAAK0d,oBAAsB,OAE3B1d,KAAK0d,oBAAsB,QAE7B1d,KAAK2d,iBAAmB3d,KAAK8J,oBAAoBgI,WACjD9R,KAAKmP,UAAYnP,KAAK8J,oBAAoBtD,WAC1CxG,KAAKiP,eAAiBjP,KAAK8J,oBAAoBoF,gBAAgB0D,oBAC/D5S,KAAKoP,UAAYpP,KAAK8J,oBAAoBuF,UAC1CrP,KAAK4d,eAAiB5d,KAAK8J,oBAAoB+T,eAC/C7d,KAAK8d,eAAiB9d,KAAK8J,oBAAoBiU,eAC/C/d,KAAKge,qBAAuBhe,KAAK8J,oBAAoBmU,WAChDje,KAAKoP,UAsCRpP,KAAKke,wBAAwBvC,iBAAiB3b,KAAKkC,eAAe+H,UAAS,SACzEkU,GACEvU,EAAKwU,uBAAuB,EAC5BxU,EAAKuU,cAAgBA,EAA8B,eACnDvU,EAAKyU,mBACLzU,EAAK0U,4BACL1U,EAAK2U,kBAAoB3U,EAAK4U,wBAC9B5U,EAAK4F,mBAAmBd,gBAAgB9E,EAAK1H,eAAe+H,UAAS,SACnEgO,GACErO,EAAK6U,WAAazW,KAAKC,MAAMgQ,GAAU5L,QAAQ,IAEhD,SACA1E,GACCiC,EAAKlC,aAAe,EAAaC,EAAMsF,QAAQ,KAAK,IAAM,GAC1DrD,EAAK8U,cACL9U,EAAK+U,WAAY,KAItB,SACAhX,GACCiC,EAAKlC,aAAe,EAAaC,EAAMsF,QAAQ,KAAK,IAAM,GAC1DrD,EAAKwU,uBAAwB,EAC7BxU,EAAK8U,gBAxDT1e,KAAKke,wBAAwBvC,iBAAiB3b,KAAKkC,eAAe+H,UAAS,SACzEkU,GACEvU,EAAKwU,uBAAuB,EAC5BxU,EAAKuU,cAAgBA,EAA8B,eACnDvU,EAAKyU,mBACLzU,EAAK0U,4BACL1U,EAAK4U,wBACD5U,EAAKpH,0BACPoH,EAAK1I,kBAAkB0B,wBAAwBqH,UAAS,SAAE4H,GAAS,OAAAjI,EAAKjG,SAAWkO,IACnFjI,EAAKgV,2BAA2BhV,EAAKjG,WAErCiG,EAAK4F,mBAAmBd,gBAAgB9E,EAAK1H,eAAe+H,UAAS,SACnEgO,GACErO,EAAK6U,WAAazW,KAAKC,MAAMgQ,GAAU5L,QAAQ,IAEhD,SACA1E,GACCiC,EAAKlC,aAAe,EAAaC,EAAMsF,QAAQ,KAAK,IAAM,GAC1DrD,EAAK+U,WAAY,KAOxB,SACAhX,GACCiC,EAAKlC,aAAe,EAAaC,EAAMsF,QAAQ,KAAK,IAAM,GAC1DrD,EAAKwU,uBAAwB,EAC7BxU,EAAK8U,gBAgCP1e,KAAKme,gBAAkBpW,WACzB/H,KAAK6e,0BAGsD,OAA1D7e,KAAKkB,kBAAkBuB,gCACxBzC,KAAKkB,kBAAkBuB,+BAA+BwH,UAAS,SAAE4H,GAAS,OAAAjI,EAAKpH,yBAA2BqP,KAK9GmL,GAAAnd,UAAA6e,YAAA,WACE1e,KAAK8e,cAAgB,EACrB9e,KAAK+e,gBAAkB,EACvB/e,KAAKgf,oBAAsB,EAC3Bhf,KAAKif,UAAY,GAGnBjC,GAAAnd,UAAAqf,oBAAA,SAAoBhV,GAEdmG,EAAoBnG,EAASoG,mBAEjC,OADuD,EAA3BD,EAAkBhK,OACbgK,EAAkB,GAAGG,kBAAoB,KAK5EwM,GAAAnd,UAAAgf,wBAAA,WAAA,IAAAjV,EAAA5J,KAEoC,IAA9BA,KAAKme,cAAc9X,QAA6D,mBAA5CrG,KAAKiP,eAAe2D,qBAAwF,OAA5C5S,KAAKiP,eAAe2D,qBAC1H5S,KAAKmf,0BAA0BtD,mBAAmB7b,KAAKkC,eAAe+H,UAAS,SAC7EmV,GACMA,EAAiB,MAAKA,EAAiB,KAAEC,4BAAqF,EAAvDD,EAAiB,KAAEC,2BAA2BhZ,QAAiD,EAAnC+Y,EAAiB,KAAEE,gBACxJ1V,EAAK2V,mBAAoB,EACzB3V,EAAKmK,oBAAqB,GAGxBqL,EAAiB,MAAKA,EAAiB,KAAEC,4BAAqF,EAAvDD,EAAiB,KAAEC,2BAA2BhZ,QAAc+Y,EAAiB,KAAEE,gBAAkBvX,YAC1K6B,EAAK2V,mBAAoB,EACzB3V,EAAKmK,oBAAqB,GAGxBqL,EAAiB,MAAKA,EAAiB,KAAEC,4BAA8BD,EAAiB,KAAEC,2BAA2BhZ,SAAW0B,WAAgD,EAAnCqX,EAAiB,KAAEE,gBAClK1V,EAAK2V,mBAAoB,EACzB3V,EAAKmK,oBAAqB,KAKA,IAA9B/T,KAAKme,cAAc9X,QAA4D,QAA5CrG,KAAKiP,eAAe2D,wBACH,EAAlD5S,KAAK8J,oBAAoBC,gBAAgB1D,QAA8D,EAAhDrG,KAAK8J,oBAAoBwT,cAAcjX,SAGnC,IAApDrG,KAAK8J,oBAAoBC,gBAAgB1D,QAAgE,EAAhDrG,KAAK8J,oBAAoBwT,cAAcjX,QACzGrG,KAAKuf,mBAAoB,EACzBvf,KAAK+T,oBAAqB,IAJ1B/T,KAAKuf,mBAAoB,EACzBvf,KAAK+T,oBAAqB,IASE,EAA5B/T,KAAKme,cAAc9X,QACrBrG,KAAKme,cAActS,QAAO,SAAC4D,GACrBA,EAAavF,UACfuF,EAAavF,SAAS2B,QAAO,SAACsG,GACxBA,EAAQqN,iBAAmBzX,WAAaoK,EAAQwE,kBAAoB5O,WACtE6B,EAAK2V,mBAAoB,EACzB3V,EAAKmK,oBAAqB,IAE1BnK,EAAK2V,mBAAoB,EACzB3V,EAAKmK,oBAAqB,QAQtCiJ,GAAAnd,UAAAye,0BAAA,WAAA,IAAA1U,EAAA5J,KAEEA,KAAKme,cAActS,QAAO,SAAC4D,GACzB7F,EAAK6V,sBACDhQ,EAAaC,MACfD,EAAaC,KAAK7D,QAAO,SAAC8D,GACxB/F,EAAKlF,eAAiBkF,EAAKlF,eAAiBiL,EAAI8M,oBAIhDhN,EAAaI,YACfJ,EAAaI,WAAWhE,QAAO,SAAC2G,GAC9B5I,EAAKrF,oBAAsBqF,EAAKrF,oBAAsBiO,EAAUoK,aAIhEnN,EAAavF,UACfuF,EAAavF,SAAS2B,QAAO,SAACsG,GACS,YAAjCA,EAAQrK,OAAO4U,gBACjB9S,EAAK/E,mBAAqB+E,EAAK/E,mBAAqBsN,EAAQwK,UAMtB,SAAxClN,EAAaiQ,wBACf9V,EAAK+V,YAAclQ,EAAaiQ,uBAChC9V,EAAKgW,mBAAoB,GACwB,mBAAxCnQ,EAAaiQ,wBAAuF,aAAxCjQ,EAAaiQ,yBAClF9V,EAAK+V,YAAclQ,EAAaiQ,uBAChC9V,EAAKgW,mBAAoB,GAIH,OAApBhW,EAAK6U,WACP7U,EAAKxI,eAAe6O,KAAK,CAAE4P,WAAYpQ,EAAsC,wBAAGqQ,eAAgBlW,EAAKlF,eAAgBib,YAAa/V,EAAK+V,YAAavb,WAAYwF,EAAK6U,WAA6B,iBAAG3a,cAAe8F,EAAK6U,WAAmB,OAAGxa,aAAcwL,EAA2B,aAAGmQ,kBAAmBhW,EAAKgW,oBAGnThW,EAAKxI,eAAe6O,KAAK,CAAE4P,WAAYpQ,EAAsC,wBAAGqQ,eAAgBlW,EAAKlF,eAAgBib,YAAa/V,EAAK+V,YAAavb,WAAY,GAAIN,cAAe,GAAIG,aAAcwL,EAA2B,aAAGmQ,kBAAmBhW,EAAKgW,oBAGpO,SAArBhW,EAAK+V,aACP/V,EAAK1I,kBAAkBC,cAAcyI,EAAKxI,mBAKhD4b,GAAAnd,UAAA4f,oBAAA,WACEzf,KAAK0E,eAAiB,EACtB1E,KAAK6E,mBAAqB,EAC1B7E,KAAKuE,oBAAsB,EAC3BvE,KAAKsH,qBAAuB,EAC5BtH,KAAK+T,oBAAqB,GAI5BiJ,GAAAnd,UAAA+e,2BAAA,SAA2BmB,GAA3B,IAAAnW,EAAA5J,KACMA,KAAKwC,0BACPxC,KAAKkB,kBAAkBwB,cAAcqd,GACrC/f,KAAK2D,SAAWoc,IAEhB/f,KAAKkB,kBAAkBwB,cAAcqd,EAAkBF,YACvD7f,KAAK2D,SAAWoc,EAAkBF,YAGpC7f,KAAK0E,eAAiB,EACtB1E,KAAKuE,oBAAsB,EAC3BvE,KAAK6E,mBAAqB,EAC1B7E,KAAKsH,qBAAuB,EAE5BtH,KAAKwD,YAAcxD,KAAKme,cAAcjO,OAAM,SAAC8P,GAAK,OAAAA,EAAE9C,0BAA4BtT,EAAKjG,WACrF3D,KAAKwD,YAAYqI,QAAO,SAACrI,GACnBA,EAAYkM,MACdlM,EAAYkM,KAAK7D,QAAO,SAAC8D,GACvB/F,EAAKlF,eAAiBkF,EAAKlF,eAAiBiL,EAAI8M,oBAGhDjZ,EAAYqM,aACdrM,EAAYqM,WAAWhE,QAAO,SAAC2G,GAC7B5I,EAAKrF,oBAAsBqF,EAAKrF,oBAAsBiO,EAAUoK,aAE9DpZ,EAAY0G,WACdN,EAAKuI,QAAU3O,EAAY0G,SAAS,GACpC1G,EAAY0G,SAAS2B,QAAO,SAACsG,GACU,YAAjCA,EAAQrK,OAAO4U,gBACjB9S,EAAK/E,mBAAqB+E,EAAK/E,mBAAqBsN,EAAQwK,YAKpE/S,EAAK+V,YAAcnc,EAAYkc,yBAaT,OAApB1f,KAAKye,YACPze,KAAKoE,WAAapE,KAAKye,WAA6B,iBACpDze,KAAKiE,aAAejE,KAAKye,WAA6B,iBACtDze,KAAK8D,cAAgB9D,KAAKye,WAAmB,SAE7Cze,KAAKoE,WAAa,GAClBpE,KAAK8D,cAAgB,GACrB9D,KAAKiE,aAAe8b,EAAkB9b,cAExCjE,KAAKuP,WAAa,mBAGpByN,GAAAnd,UAAAogB,6BAAA,SAA6BtO,EAAYuO,GACpCA,EAAQN,oBACXjO,EAAMC,iBACN5R,KAAK8J,oBAAoBrD,aAAe,KACxCzG,KAAK8J,oBAAoBvD,sBAAwB2Z,EAAQL,WACzD7f,KAAK8J,oBAAoBsF,UAAYpP,KAAKoP,UAC1CpP,KAAK8J,oBAAoBlD,SAAW,gBAOtCoW,GAAAnd,UAAAwe,iBAAA,WAAA,IAAAzU,EAAA5J,KACMsc,EAAY,EACdC,EAAgB,EAChBC,EAAkB,EAClB2D,EAAoB,EAEtBngB,KAAKme,cAActS,QAAO,SAAC4D,GACrBA,EAAaC,MACfD,EAAaC,KAAK7D,QAAO,SAAC8D,GAExB,IAEQyQ,EACAC,EAHHzW,EAAKwF,UASRkN,GAAwB3M,EAAI8M,mBARxB9M,EAAI6E,eACF4L,EAAIzQ,EAAI2Q,aAAevY,UACvBsY,EAAI1Q,EAAI2Q,YAAc,EAC1B1W,EAAK2W,YAAcH,EAAIxW,EAAK2W,YAAc5Q,EAAIgD,WAAa0N,EAAIzW,EAAK2W,YAAc,EAAI3W,EAAK2W,YAAc5Q,EAAI2Q,YAE/G3Q,EAA6B,wBAAIF,EAAsC,yBAIvE7F,EAAK8F,KAAKO,KAAKN,KAKjB/F,EAAKwF,YACPxF,EAAKqV,UAAY3C,GAGf7M,EAAavF,UACfuF,EAAavF,SAAS2B,QAAO,SAACsG,GAE5B,IACMqO,EADD5W,EAAKwF,UAkB6B,YAAjC+C,EAAQrK,OAAO4U,gBACjBH,GAAgCpK,EAAQwK,OACxC/S,EAAKM,SAAS+F,KAAKkC,KAnBjBqO,EAAgBrO,EAAQ7B,mBAES,YAAjC6B,EAAQrK,OAAO4U,gBACjBH,GAAgCpK,EAAQwK,QACX,IAAzB6D,EAAcna,QAAuC,EAAvBma,EAAcna,QAAqD,cAAvCma,EAAc,GAAGhQ,qBAC7E2P,GAAwChO,EAAQwK,QAEvB,EAAvB6D,EAAcna,QAChBuD,EAAK6W,YAAYxQ,KAAKkC,IAGG,IAAzBqO,EAAcna,QAChBuD,EAAKM,SAAS+F,KAAKkC,IASrBA,EAAQ5L,sBAAwBkJ,EAAayN,wBAC7CtT,EAAK8W,YAAYzQ,KAAKkC,KAI5BvI,EAAKkV,cAAgBvC,EAEhB3S,EAAKwF,YACRxF,EAAKoV,oBAAsBmB,GAGzB1Q,EAAaI,YACfJ,EAAaI,WAAWhE,QAAO,SAAC8U,GAC9BnE,GAAoCmE,EAAU/D,WAC9ChT,EAAKiG,WAAWI,KAAK0Q,KAGzB/W,EAAKmV,gBAAkBvC,KAK3BQ,GAAAnd,UAAA2e,sBAAA,WAAA,IAAA5U,EAAA5J,KACE,GAAKA,KAAKoP,UAmEH,C,IACDwR,EAAoB,EACtBC,GAAkB,EA0CpB,OAzCA7gB,KAAKme,cAActS,QAAO,SAAC4D,G,IACrBqR,EACFxE,EAAY,EACZC,EAAgB,EAChBC,EAAkB,EAChB/M,EAAaC,OACf9F,EAAKmX,mBAAoB,EACzBtR,EAAaC,KAAK7D,QAAO,SAAC8D,GACxB2M,GAAwB3M,EAAI8M,kBACE,IAA1B9M,EAAI8M,oBACNoE,GAAkB,MAMpBpR,EAAavF,UACfuF,EAAavF,SAAS2B,QAAO,SAACsG,GACS,YAAjCA,EAAQrK,OAAO4U,gBACjBH,GAAgCpK,EAAQwK,UAK1ClN,EAAaI,YACfJ,EAAaI,WAAWhE,QAAO,SAAC2G,GAC9BgK,GAAoChK,EAAUoK,cAGlDkE,EAAwBxE,EAAYE,EAAmBD,GAC5B,EACC,IAAtBqE,EACFA,EAAoBE,EAEpBF,GAAyCE,GAGb,EAAvBA,GAAsD,GAAzBA,GAA8BD,KAClEjX,EAAKwT,6BAA8B,MAGX,EAArBwD,E,IA9GHI,GAAoB,EAExBhhB,KAAKme,cAActS,QAAO,SAAE4D,EAAcwR,G,IACpCH,EACFxE,EAAY,EACZC,EAAgB,EAChBC,EAAkB,EAClB9M,EAAO,GAELD,EAAaC,OAEfD,EAAaC,KAAK7D,QAAO,SAAC8D,GACxB2M,GAAwB3M,EAAI8M,kBAE5B7S,EAAKgG,mBAAoB,EACrBH,EAAaI,YACfJ,EAAaI,WAAWhE,QAAO,SAACiE,GAC1BA,EAAIC,WAAaJ,EAAIK,OACvBpG,EAAKgG,mBAAoB,EACzBD,EAAgB,WAAIG,EAGpBJ,EAAKO,KAAKN,MAKX/F,EAAKgG,mBACRF,EAAKO,KAAKN,GAGRA,EAAI6E,aACNwM,GAAoB,GAEpBpX,EAAKsX,0BAA2B,EAChCtX,EAAKuU,cAAc8C,GAAY,KAAI,KAGvCrX,EAAKuU,cAAc8C,GAAOvR,KAAOA,GAE/BD,EAAavF,UACfuF,EAAavF,SAAS2B,QAAO,SAACsG,GACS,YAAjCA,EAAQrK,OAAO4U,gBACjBH,GAAgCpK,EAAQwK,UAK1ClN,EAAaI,YACfJ,EAAaI,WAAWhE,QAAO,SAAC2G,GAC9BgK,GAAoChK,EAAUoK,aAIvB,GAD3BkE,EAAwBxE,EAAYE,EAAmBD,IACvByE,IAC9BpX,EAAKwU,uBAAwB,EAC7BxU,EAAKmX,mBAAoB,EACzBnX,EAAKqS,WAAaxM,EAAayN,yBAE7BzN,EAAaC,MAAmC,EAA3BD,EAAaC,KAAKrJ,QAAcya,GAAwB,GAAKE,IACpFpX,EAAKwU,uBAAwB,OAG3B4C,GAAqBhhB,KAAKkhB,2BAA+BF,IAAsBhhB,KAAKkhB,4BACxFlhB,KAAKoe,uBAAwB,IAkDnCpB,GAAAnd,UAAAshB,0BAAA,SAA0B1R,GACxB,OAAOzP,KAAKmf,0BAA0B9C,2BAA2B5M,IAGnEuN,GAAAnd,UAAAuhB,wBAAA,SAAwBzP,GACtBA,EAAMC,iBACF1G,EAAMlL,KAAK2d,iBAAmB,yBAA2B,0BAC7DzS,GAAOlL,KAAKoP,UAAY,oBAAsB,qBAC9ClE,GAAOlL,KAAKge,qBAAuB,wBAA0B,yBAC7D9S,GAAOlL,KAAK4d,eAAiB,yBAA2B,0BACxD1S,GAAOlL,KAAK8d,eAAiB,yBAA2B,0BACxD5S,GAAO,aAAalL,KAAK+B,SACzB/B,KAAKoZ,OAAOiI,cAAc,8BAA8BrhB,KAAKiP,eAAc,kBAAkBjP,KAAKkC,cAAgBgJ,IAGpH8R,GAAAnd,UAAAmS,aAAA,SAAarC,GAAb,IAAA/F,EAAA5J,KACKA,KAAKiS,mBAAmBtC,EAAIK,QAC/BhQ,KAAK8N,MAAQ6B,EACb3P,KAAKuP,WAAa,eAClBvP,KAAKwP,mBAAmB5C,2BAA2B5M,KAAKmS,QAAQD,WAAWjI,UAAS,SAClFwF,GACE7F,EAAK6F,aAAeA,EAEpB7F,EAAK6F,aAAavF,SAAWN,EAAK6F,aAAavF,SAASgG,OAAM,SAC3DC,GAAmB,OAAAA,EAA2B,UAAEC,SAASxG,EAAKE,oBAAoBM,oBACrFR,EAAKuI,QAAUvI,EAAK6F,aAAavF,SAAS,IAG3C,SACAvC,GAAe,OAAAiC,EAAKlC,aAAeC,EAAOA,EAAMsF,QAAQ,KAAK,IAAM,OAKxE+P,GAAAnd,UAAA0S,sBAAA,SAAsBJ,EAAmBK,EAAwB9C,GAAjE,IAAA9F,EAAA5J,KACEA,KAAKuP,WAAa,wBAElBvP,KAAKmS,QAAUA,EACfnS,KAAKwP,mBAAmB5C,2BAA2B5M,KAAKmS,QAAQD,WAAWjI,UAAS,SAClFwF,GACE7F,EAAK6F,aAAeA,EAEpB7F,EAAK6F,aAAavF,SAAWN,EAAK6F,aAAavF,SAASgG,OAAM,SAC3DC,GAAmB,OAAAA,EAA2B,UAAEC,SAASxG,EAAKuI,QAAQD,aACzEtI,EAAKuI,QAAUvI,EAAK6F,aAAavF,SAAS,GAC1CN,EAAKiG,WAAa2C,EAClB5I,EAAK8I,gBAAkBhD,EAAKQ,OAAM,SAAC2B,GAAM,OAAAA,EAAK7B,OAASpG,EAAKiG,WAAqB,WAAG,GAAG8C,YAGxF,SACAhL,GAAe,OAAAiC,EAAKlC,aAAeC,KAIxCqV,GAAAnd,UAAAyhB,wBAAA,SAAwB3P,GACtBA,EAAMC,iBACN5R,KAAK8J,oBAAoBlD,SAAW,aAEtCoW,GAAAnd,UAAAwR,uBAAA,WACErR,KAAK8J,oBAAoBlD,SAAW,oBACpC5G,KAAK8J,oBAAoBhD,aAAc,EACvC9G,KAAK8J,oBAAoBwH,eAAiB,OAC1CtR,KAAK8J,oBAAoBtH,0BAA2B,EACpD+O,OAAOC,SAASC,UAElBuL,GAAAnd,UAAA0hB,sBAAA,SAAsB5P,GACpBA,EAAMC,iBACN5R,KAAKoZ,OAAOiI,cAAc,2BAA2BrhB,KAAKiP,eAAc,kBAAkBjP,KAAKkC,gBAGjG8a,GAAAnd,UAAA2hB,mBAAA,SAAmB/R,GACjBzP,KAAK8J,oBAAoBrD,aAAe,KACxCzG,KAAK8J,oBAAoBvD,sBAAwBkJ,EAAayN,wBAC9Dld,KAAK8J,oBAAoBsF,UAAYpP,KAAKoP,UAC1CpP,KAAK8J,oBAAoBlD,SAAW,eAGtCoW,GAAAnd,UAAA4hB,yBAAA,SAAyBhS,GACvBzP,KAAK8J,oBAAoBb,cAAgBwG,EAAaxG,cACtDjJ,KAAK8J,oBAAoBvD,sBAAwBkJ,EAAalJ,sBAC9DvG,KAAK8J,oBAAoBM,iBAAmBqF,EAAarF,iBACzDpK,KAAK8J,oBAAoBlD,SAAW,gBAGtCoW,GAAAnd,UAAAsd,iBAAA,SAAiB5W,EAA+B6D,EAA0BnB,GACxEjJ,KAAKyhB,yBAAyB,CAAElb,sBAAqBA,EAAE6D,iBAAgBA,EAAEnB,cAAaA,KAGxF+T,GAAAnd,UAAA6hB,4BAAA,SAA4BC,GACtBA,GACE3hB,KAAKoP,YACPpP,KAAK+T,oBAAqB,GAE5B/T,KAAK4hB,6BAA8B,IAE/B5hB,KAAKoP,YACPpP,KAAK+T,oBAAqB,GAE5B/T,KAAK4hB,6BAA8B,IAIvC5E,GAAAnd,UAAAgiB,uBAAA,SAAuBC,GACrB9hB,KAAK+hB,uBAAyBD,GAGhC9E,GAAAnd,UAAAmiB,mBAAA,SAAmBrS,GAEjB,OAAIA,EAAI6E,aACC7E,EAAI2Q,aAAevY,UAAY4H,EAAI2Q,WAAa3Q,EAAIgD,WAEpD,QAIXqK,GAAAnd,UAAAoiB,iBAAA,SAAiBtS,GACf3P,KAAKkiB,qBAAsB,EAC3BliB,KAAK8N,MAAQ6B,EACb3P,KAAKuP,WAAa,0BAGpByN,GAAAnd,UAAAsiB,cAAA,WACEniB,KAAKuP,WAAa,QAGpByN,GAAAnd,UAAAuiB,UAAA,SAAUzS,GAAV,IAAA/F,EAAA5J,KACEA,KAAKkiB,qBAAsB,EAC3BliB,KAAKwP,mBAAmBzB,0BAA0B4B,GAAK1F,UAAS,SAC7DoY,GACC9Q,OAAOC,SAASC,UACjB,SACA9J,GACCiC,EAAKlC,aAAeC,EACpBiC,EAAKsY,qBAAsB,KAKjClF,GAAAnd,UAAAyiB,sBAAA,SAAsBC,GACpB,YAA4B,IAAdA,GAGhBvF,GAAAnd,UAAAkT,YAAA,SAAYZ,GACM,OAAZA,GAAoBA,IAAYpK,WACjC/H,KAAKiT,wBAAwBd,KAChCnS,KAAKuP,WAAa,cAClBvP,KAAKmS,QAAUA,EACfnS,KAAK8J,oBAAoBtH,0BAA2B,EACpDxC,KAAKqS,mBAAoB,IAK3B2K,GAAAnd,UAAAoS,mBAAA,SAAmBkB,G,QACjB,GAAInT,KAAKyT,oBAAsBzT,KAAKuT,kCAAmC,CACrE,GAA+C,EAA3CvT,KAAKwD,YAAY,GAAe,WAAE6C,O,IACpC,IAAwB,IAAAqN,EAAAL,EAAArT,KAAKwD,YAAY,GAAe,YAACmQ,EAAAD,EAAApS,QAAAqS,EAAA7I,KAAA6I,EAAAD,EAAApS,OACvD,GADkBqS,EAAA9I,MACJkF,WAAaoD,EACzB,OAAO,E,oGAIb,OAAO,EAEP,OAAO,GAIX6J,GAAAnd,UAAA4T,iBAAA,WAAA,IAAA7J,EAAA5J,KACE,GAAyB,OAArBA,KAAKwD,aAAyBxD,KAAKwD,cAAgBuE,UAUvD,OATA/H,KAAKwD,YAAYqI,QAAO,SAACrI,GACnBA,EAAY0G,UACd1G,EAAY0G,SAAS2B,QAAO,SAACsG,GACgB,uBAAvCA,EAAQjB,OAAO0B,qBAAgDhJ,EAAKiJ,6BAA6BV,KACnGvI,EAAK4Y,OAAQ,SAKjBxiB,KAAKwiB,OAQXxF,GAAAnd,UAAAoT,wBAAA,SAAwBd,GAKtB,OAJInS,KAAKuT,mCAAqCvT,KAAK6S,6BAA6BV,IAC3D,uBAAnBA,EAAQjB,QAA0E,YAAvCiB,EAAQrK,OAAO8K,sBAC1D5S,KAAKwT,wBAAyB,KAE5BxT,KAAKwT,wBAOXwJ,GAAAnd,UAAA4S,8BAAA,WAAA,IAAA7I,EAAA5J,KACE,GAAyB,OAArBA,KAAKwD,aAAyBxD,KAAKwD,cAAgBuE,UAWvD,OAVE/H,KAAK8J,oBAAoBtH,0BAA2B,EACtDxC,KAAKwD,YAAYqI,QAAO,SAACrI,GACnBA,EAAY0G,UACd1G,EAAY0G,SAAS2B,QAAO,SAACsG,GACgB,uBAAvCA,EAAQjB,OAAO0B,qBAAuF,YAAvCT,EAAQrK,OAAO8K,qBAAqChJ,EAAKiJ,6BAA6BV,KACvJvI,EAAKkJ,4BAA6B,SAKtC9S,KAAK8S,4BA2BXkK,GAAAnd,UAAA4iB,mBAAA,SAAmB9e,GACjB3D,KAAK8J,oBAAoB4Y,eAAiB/e,EAC1C3D,KAAK8J,oBAAoBlD,SAAW,e,qBA9zBvCG,EAAAA,UAAS/F,KAAA,CAAC,CACTgG,SAAU,0BACVC,SAAA,4i4C,+jHANOwS,EAAAA,Q,MAPAhN,G,MADAmP,I,MADAF,I,MAFA5V,G,MAKA5E,K,4CAgBNiG,EAAAA,MAAKnG,KAAA,CAAC,uB,qBACNmG,EAAAA,SAyzBH6V,IA7uBE,SAAAA,GAAoB5D,EACV5J,EACA2P,EACAjB,EACApU,EACA5I,GALV,IAAA0I,EAAA5J,KAAoBA,KAAAoZ,OAAAA,EACVpZ,KAAAwP,mBAAAA,EACAxP,KAAAmf,0BAAAA,EACAnf,KAAAke,wBAAAA,EACAle,KAAA8J,oBAAAA,EACA9J,KAAAkB,kBAAAA,EA7EVlB,KAAAme,cAAuB,GACvBne,KAAAkK,SAAuB,GACvBlK,KAAAygB,YAA0B,GAC1BzgB,KAAA0gB,YAA0B,GAC1B1gB,KAAA6P,WAA2B,GAC3B7P,KAAA0P,KAAe,GAWf1P,KAAAqS,mBAA6B,EAG7BrS,KAAA+T,oBAA8B,EAC9B/T,KAAAuf,mBAA6B,EAC7Bvf,KAAA4hB,6BAAuC,EAEvC5hB,KAAAoe,uBAAiC,EACjCpe,KAAAkhB,0BAAoC,EAGpClhB,KAAAuP,WAAa,OACbvP,KAAAkiB,qBAA+B,EAE/BliB,KAAAugB,YAAsB,EAEtBvgB,KAAA+gB,mBAA6B,EAC7B/gB,KAAAod,6BAAuC,EASvCpd,KAAAwD,YAAqB,GAErBxD,KAAA2iB,sBAAgC,EAChC3iB,KAAA4iB,sBAA+B,GAC/B5iB,KAAAoB,eAAuC,GACvCpB,KAAA6iB,0BAAoC,EACpC7iB,KAAAye,WAAkB,KAQlBze,KAAA0E,eAAyB,EACzB1E,KAAAuE,oBAA8B,EAC9BvE,KAAA6E,mBAA6B,EAC7B7E,KAAAsH,qBAA+B,EAG/BtH,KAAAwiB,OAAiB,EACjBxiB,KAAAwT,wBAAkC,EAClCxT,KAAA8iB,0BAAoC,EACpC9iB,KAAA8S,4BAAsC,EACtC9S,KAAAgU,2BAA6B,CAAC,2BAA4B,mBAC1DhU,KAAA+iB,sBAAwB,CAAC,sBAAuB,mBAAoB,2BAA4B,oBAChG/iB,KAAAgjB,YAAc,IAAI3O,KA0tBlBrU,KAAAuT,gCAA+B,WAC7B,OAAO3J,EAAKoK,2BAA2BC,KAAI,SAACC,GAC1C,OAA0C,IAA1CtK,EAAKxD,kBAAkB+N,QAAQD,MAGnClU,KAAAijB,oCAAmC,WACjC,OAAOrZ,EAAKmZ,sBAAsB9O,KAAI,SAACC,GACrC,OAA0C,IAA1CtK,EAAKxD,kBAAkB+N,QAAQD,MAInClU,KAAA6S,6BAA4B,SAAIV,GAC9B,GAAgB,OAAZA,GAAoBA,IAAYpK,UAAW,C,IAC3CqM,EAAa,IAAIC,KAErB,OADAD,EAAWE,QAAQF,EAAWG,UAAY,GACnCH,GAAc,IAAIC,KAAKlC,EAAQqC,gBCx0B1C,IAAA0O,GAUE,SAAYvM,EAAyBgG,EAAgB5a,GATrD/B,KAAAmjB,SAAW,MACXnjB,KAAAojB,YAAc,oBACdpjB,KAAAmR,QAAU,YACVnR,KAAAqjB,SAAW,UAOXrjB,KAAK2W,gBAAkBA,EACvB3W,KAAK2c,OAAcA,EAAO2G,QAAQ,GAClCtjB,KAAKujB,UAAWxhB,GCblByhB,GAME,SAAY7M,EAAyBgG,EAAgB5a,GALrD/B,KAAAmjB,SAAW,MAMXnjB,KAAK2W,gBAAkBA,EACvB3W,KAAK2c,OAAcA,EAAO2G,QAAQ,GAClCtjB,KAAKujB,UAAWxhB,GCKZ0hB,GAAiB,wBAEvBC,IA8CEA,GAAA7jB,UAAAqG,SAAA,WAAA,IAAA0D,EAAA5J,KACEA,KAAKuP,WAAa,OAClBvP,KAAK+B,SAAW/B,KAAK8J,oBAAoBuT,SACzCrd,KAAK2jB,mBAAqB3jB,KAAK8J,oBAAoBrD,aACnDzG,KAAKiP,eAAiBjP,KAAK8J,oBAAoBoF,gBAAgB0D,oBAC/D5S,KAAKge,qBAAuBhe,KAAK8J,oBAAoBmU,WACrDje,KAAKkB,kBAAkBY,YAAY9B,KAAK8J,oBAAoBuT,WACtDrd,KAAK8d,gBAAkB9d,KAAK4d,eAChC5d,KAAK4jB,SAAW,MACN5jB,KAAK8d,iBAAmB9d,KAAK4d,eACvC5d,KAAK4jB,SAAW,UACN5jB,KAAK8d,gBAAkB9d,KAAK4d,iBACtC5d,KAAK4jB,SAAW,OAGlB5jB,KAAKwP,mBAAmBhB,eAAevE,UAAS,SAC9C4Z,GACMC,EAAS9b,KAAKC,MAAM4b,GAAU3T,OAAM,SAAC6T,GAAW,OAAAA,EAAQC,MAAQP,KACpE7Z,EAAKE,oBAAoBgI,aAAagS,EAAO,IAAKA,EAAO,GAAGG,QAC7D,SACDxc,GACEmC,EAAKE,oBAAoBgI,YAAa,IAGtC9R,KAAK2jB,oBACP3jB,KAAKkkB,2BAEPlkB,KAAKmkB,mBAGLT,GAAA7jB,UAAAqkB,yBAAA,WAAA,IAAAta,EAAA5J,KAC6B,QAAxBA,KAAKiP,eACNjP,KAAKmf,0BAA0BrD,mBAAmB9b,KAAK8J,oBAAoBtD,YAAYyD,UAAS,SAChGma,GACKA,EAAyB,KAAEla,SAC5BN,EAAKya,QAAUD,EAAyB,KAAEE,uBAE1C1a,EAAK2a,sBAAwB,SAEhC,SACA5c,GAAe,OAAAiC,EAAK2a,sBAAwB5c,IAG7C3H,KAAKmf,0BAA0BtD,mBAAmB7b,KAAKkC,eAAe+H,UAAS,SAC/Ema,GACKA,EAAyB,KAAEla,SAC5BN,EAAKya,QAAUD,EAAyB,KAAEE,uBAE1C1a,EAAK2a,sBAAwB,SAEhC,SACA5c,GAAe,OAAAiC,EAAK2a,sBAAwB5c,KAMnD+b,GAAA7jB,UAAAqT,sBAAA,SAAsBC,G,QACpB,GAAInT,KAAKyP,cAAgBzP,KAAKyP,aAAaI,YAAoD,EAAtC7P,KAAKyP,aAAaI,WAAWxJ,O,IACpF,IAAwB,IAAAqN,EAAAL,EAAArT,KAAKyP,aAAaI,YAAU8D,EAAAD,EAAApS,QAAAqS,EAAA7I,KAAA6I,EAAAD,EAAApS,OAAE,CAAjD,IAAMkR,EAASmB,EAAA9I,MAClB,GAAI2H,EAAUzC,WAAaoD,EACzB,OAAOX,G,oGAIb,OAAO,MAGTkR,GAAA7jB,UAAAmS,aAAA,SAAarC,GACX3P,KAAKwkB,WAAa7U,EAClB3P,KAAKuP,WAAa,iBAGpBmU,GAAA7jB,UAAAskB,gBAAA,WAAA,IAAAva,EAAA5J,KACM0P,EAAO,GACX1P,KAAKwP,mBAAmB7C,uBAAuB3M,KAAKiO,iBAAiBhE,UAAS,SAC5EwF,GACE7F,EAAK6F,aAAeA,EACpB7F,EAAK6a,iBAAiBhV,EAAavF,UAA0C,EAA/BuF,EAAavF,SAAS7D,OACpEuD,EAAK8a,oBAAoBjV,EAAaI,YAA8C,EAAjCJ,EAAaI,WAAWxJ,OAEvEoJ,EAAaC,OACfD,EAAaC,KAAK7D,QAAO,SAAC8D,GACtB/F,EAAK+a,oBAAuB/a,EAAK+a,oBAAuBhV,EAAIgD,WAC/B,IAA1BhD,EAAI8M,oBACL7S,EAAKgb,iBAAkB,GAEzBhb,EAAKgG,mBAAoB,EACzBH,EAAaI,WAAWhE,QAAO,SAACiE,GAC3BA,EAAIC,WAAaJ,EAAIK,OACtBpG,EAAKgG,mBAAoB,EACzBD,EAAgB,WAAIG,EACpBJ,EAAKO,KAAKN,MAIV/F,EAAKgG,mBACPF,EAAKO,KAAKN,KAGhBF,EAAaC,KAAOA,GAGtB9F,EAAKib,kBAAoBjb,EAAKuV,0BAA0B9C,2BAA2B5M,IACpF,SACA9H,GAAe,OAAAiC,EAAKlC,aAAeC,EAAMsF,QAAQ,KAAK,OAI3DyW,GAAA7jB,UAAAoiB,iBAAA,SAAiBtS,GACf3P,KAAKkiB,qBAAsB,EAC3BliB,KAAKwkB,WAAa7U,EAClB3P,KAAKuP,WAAa,0BAGpBmU,GAAA7jB,UAAAuiB,UAAA,SAAUzS,GAAV,IAAA/F,EAAA5J,KACEA,KAAKkiB,qBAAsB,EAC3BliB,KAAKwP,mBAAmBzB,0BAA0B4B,GAAK1F,UAAS,SAC7DoY,GACG,OAAIzY,EAAK6F,aAAaC,MAAwC,EAAhC9F,EAAK6F,aAAaC,KAAKrJ,QACrDuD,EAAK+a,oBAAsB,EAC3B/a,EAAKua,uBACLva,EAAK2F,WAAa,cAGlB3F,EAAKkb,2BACR,SACAnd,GACGiC,EAAKlC,aAAeC,EACpBiC,EAAKsY,qBAAsB,KAKpCwB,GAAA7jB,UAAAilB,wBAAA,WAAA,IAAAlb,EAAA5J,KACGA,KAAK8J,oBAAoBhD,aAAc,EACvC9G,KAAK8J,oBAAoBlD,SAAW,oBACpC5G,KAAKwP,mBAAmBhB,eAAevE,UAAS,SAC9C4Z,GACMC,EAAS9b,KAAKC,MAAM4b,GAAU3T,OAAM,SAAC6T,GAAW,OAAAA,EAAQC,MAAQP,KACpE7Z,EAAKE,oBAAoBgI,aAAagS,EAAO,IAAKA,EAAO,GAAGG,QAC7D,SACDxc,GACEmC,EAAKE,oBAAoBgI,YAAa,I,IAItCiT,EAAU,kBAAkB/kB,KAAK8J,oBAAoBoF,gBACvD6V,GAAU/kB,KAAK2jB,mBAAqB,QAAQ3jB,KAAK2jB,mBAAuB,GACxEoB,GAAU/kB,KAAK8J,oBAAoBgI,WAAa,yBAA2B,0BAC3EiT,GAAU/kB,KAAK8J,oBAAoBuF,UAAY,oBAAsB,qBACrE0V,GAAU/kB,KAAK8J,oBAAoBmU,WAAa,wBAA0B,yBAC1E8G,GAAU,aAAa/kB,KAAK8J,oBAAoBuT,SAChD0H,GAAU/kB,KAAK4d,eAAiB,yBAA2B,0BAC3DmH,GAAU/kB,KAAK8d,eAAiB,yBAA2B,0BAEzD5S,EAAM,oBAAoBlL,KAAKkC,cAAa,4CAA4C6iB,EAC5F/kB,KAAKoZ,OAAOiI,cAAcnW,IAE5BwY,GAAA7jB,UAAAmlB,gBAAA,WACEhlB,KAAKuP,WAAa,QAEpBmU,GAAA7jB,UAAAuhB,wBAAA,SAAwBzP,EAAYsT,GAClCtT,EAAMC,iBACFmT,EAAS/kB,KAAK2jB,mBAAqB,QAAQ3jB,KAAK2jB,mBAAuB,GACzEoB,GAAU/kB,KAAK8J,oBAAoBgI,WAAa,yBAA2B,0BAC3EiT,GAAU/kB,KAAK8J,oBAAoBuF,UAAY,oBAAsB,qBACrE0V,GAAU/kB,KAAK8J,oBAAoBmU,WAAa,wBAA0B,yBAC1E8G,GAAU,aAAa/kB,KAAK8J,oBAAoBuT,SAChD0H,GAAU/kB,KAAK4d,eAAiB,yBAA2B,0BAC3DmH,GAAU/kB,KAAK8d,eAAiB,yBAA2B,0BAEtC,2BAApB9d,KAAKuP,YAA+D,kBAApBvP,KAAKuP,YAIpDrE,EAAM,6BAA6BlL,KAAKkC,cAAa,mBAAmBlC,KAAK8J,oBAAoBoF,gBAAe,oBAAoBlP,KAAKiO,gBAAkB8W,EAC/J/kB,KAAKoZ,OAAOiI,cAAcnW,IAJxBlL,KAAKuP,WAAa,QAMtBmU,GAAA7jB,UAAA2d,YAAA,WAAA,IAAA5T,EAAA5J,KACEA,KAAKklB,2BAA4B,E,IACzBC,EAAc,IAAIjC,GAAuBljB,KAAKkC,cAAelC,KAAK6kB,kBAAmB7kB,KAAK+B,UAChGqjB,EAAiB,IAAI5B,GAAqBxjB,KAAKkC,cAAelC,KAAK6kB,kBAAmB7kB,KAAK+B,UAExE,QAAlB/B,KAAK4jB,SACN5jB,KAAKwP,mBAAmBxB,oBAAoBmX,EAAanlB,KAAKiO,iBAAiBhE,UAAS,SACtFgO,GACErO,EAAK4H,SAAS6T,GAAG,oCACjBzb,EAAK0b,WAAarN,EAClBrO,EAAK2F,WAAa,cAClB3F,EAAK2b,oBAAmB,GACzB,SACA5d,GACCiC,EAAKlC,aAAeC,EACpBiC,EAAKsb,2BAA4B,EACjCtb,EAAKwP,OAAOiI,cAAc,sBAGJ,YAAlBrhB,KAAK4jB,UAEb5jB,KAAKwP,mBAAmBtB,2BAA2BkX,EAAgBplB,KAAKiO,iBAAiBhE,UAAS,SAChGgO,GACErO,EAAK2b,oBAAmB,EACxBhU,OAAOC,SAASgU,KAAO,oCACxB,SACA7d,GACCiC,EAAKlC,aAAeC,EACpBiC,EAAKsb,2BAA4B,EACjCtb,EAAKwP,OAAOiI,cAAc,uBAOlCqC,GAAA7jB,UAAA4lB,iBAAA,SAAiBZ,EAA2BD,GAClB,EAApBC,GAAgD,IAAtBA,GAA2BD,GACvD5kB,KAAK8J,oBAAoBvD,sBAAwBvG,KAAKiO,gBACtDjO,KAAK8J,oBAAoBlD,SAAW,qBAEpC5G,KAAK8kB,2BAGTpB,GAAA7jB,UAAAyiB,sBAAA,SAAsBC,GACpB,YAA4B,IAAdA,G,qBA9QjBxb,EAAAA,UAAS/F,KAAA,CAAC,CACTgG,SAAU,oBACVC,SAAA,qnnB,24DARMwS,EAAAA,Q,MAPCmC,I,MAQD8J,EAAAA,U,MATCjZ,G,MAEA3G,G,MAQA5E,K,0CAWNiG,EAAAA,Q,qBACAA,EAAAA,Q,iBACAA,EAAAA,Q,gBACAA,EAAAA,Q,sBACAA,EAAAA,Q,sBACAA,EAAAA,SAoQHuc,IA3OE,SAAAA,GACUtK,EACA+F,EACA3N,EACAhC,EACA1F,EACA5I,GALAlB,KAAAoZ,OAAAA,EACApZ,KAAAmf,0BAAAA,EACAnf,KAAAwR,SAAAA,EACAxR,KAAAwP,mBAAAA,EACAxP,KAAA8J,oBAAAA,EACA9J,KAAAkB,kBAAAA,EAzBVlB,KAAAuP,WAAa,OAIbvP,KAAAqkB,QAAkB,GAClBrkB,KAAA4jB,SAAmB,GAGnB5jB,KAAAulB,oBAA8B,EAE9BvlB,KAAA4kB,iBAA2B,EAC3B5kB,KAAA2kB,oBAA8B,EAC9B3kB,KAAAklB,2BAAqC,EACrCllB,KAAAkiB,qBAA+B,EAC/BliB,KAAAykB,gBAA0B,EAC1BzkB,KAAA0kB,mBAA6B,EAC7B1kB,KAAA4P,mBAAoB,EClDtB,IAAA+V,IAgBEA,GAAA9lB,UAAAqG,SAAA,a,qBAZDa,EAAAA,UAAS/F,KAAA,CAAC,CACTgG,SAAU,qBACVC,SAAA,6c,kLAKCE,EAAAA,MAAKnG,KAAA,CAAC,mBAQT2kB,IANE,SAAAA,MCZF,IAAAC,GAME,SAAY1I,EAAiC2I,EAA4BC,GACvE9lB,KAAK+lB,0BAA4B,CAC/B3C,YAAa,GACb4C,KAAM,gBAERhmB,KAAKkd,wBAA0BA,EAC/Bld,KAAK6lB,kBAAmBA,EACxB7lB,KAAK8lB,oBAAqBA,GCZ9BG,GA6BE,SAAYtP,EAA0BuP,EAAiCnkB,EAAkBokB,EAAyBC,GAChHpmB,KAAK2c,OAASuJ,EAAmBvJ,OACjC3c,KAAKqmB,YAAcH,EAAmBI,YACtCtmB,KAAK2W,gBAAkBA,EACvB3W,KAAKumB,iBAAmBJ,EACxBnmB,KAAKmjB,SAAU+C,EAAmB/C,SAClCnjB,KAAKwmB,wBAA0BN,EAAmBO,cAClDzmB,KAAK0mB,kBAAoB,QACzB1mB,KAAK2mB,aAAeT,EAAmBU,cACvC5mB,KAAK6mB,WAAaX,EAAmBW,WACrC7mB,KAAK8mB,gBAAkB,CACrB1D,YAAa,GACb4C,KAAM,aAERhmB,KAAK+mB,eAAgB,CACnB3D,YAAa,8BACb4C,KAAM,WAERhmB,KAAKgnB,eAAiBd,EAAmBc,eACzChnB,KAAKujB,UAAWxhB,EACbqkB,IACDpmB,KAAKinB,uBAAyBb,ICpDpCc,IAsCEA,GAAArnB,UAAAqG,SAAA,WACElG,KAAKuP,WAAa,WAClBvP,KAAKkC,cAAgBlC,KAAK8J,oBAAoBC,gBAC9C/J,KAAKyG,aAAezG,KAAK8J,oBAAoBrD,aAC7CzG,KAAKge,qBAAuBhe,KAAK8J,oBAAoBmU,WACrDje,KAAKmnB,uBAELnnB,KAAKonB,4BAA8BpnB,KAAK6V,YAAYC,MAAM,CACxDuR,oBAAqB,IAAIrR,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CAC1DD,EAAAA,WAAWE,SACXF,EAAAA,WAAWK,UAAU,GACrBL,EAAAA,WAAWM,UAAU,KACrBN,EAAAA,WAAWO,QAAQ,iCAI1B0Q,GAAArnB,UAAAsnB,qBAAA,WAAA,IAAAvd,EAAA5J,KACGA,KAAKmf,0BAA0BrD,mBAAmB9b,KAAKyG,cAAcwD,UAAS,SAC5Ema,GACExa,EAAKlC,aAAekC,EAAK+L,iBAAgB,GACzC/L,EAAK0d,iBAAmBlD,EAAyB,KAAEla,SAASgG,OAAM,SAACiC,GACjE,OAAOA,GAAWA,EAAQsU,eAAiB7c,EAAKnD,eAC/C,GACHmD,EAAK2d,OAASnD,EAAyB,KAAEE,uB,IACnCkD,EAAcpD,EAAyB,KAAE9E,cAC7CmI,EAAoBrD,EAAyB,KAAE/E,2BAC/CqI,EAAqBF,GAAcA,IAAgB5d,EAAK1H,cAAgB,KAA4B0H,EAAK1H,cAC3G0H,EAAK+d,aAAeH,GAA4B,KAChD5d,EAAK8d,mBAAqBD,GAAwCC,GACnE,SACA/f,GACCiC,EAAKlC,aAAekC,EAAK+L,iBAAgB,MAI/CuR,GAAArnB,UAAA+nB,eAAA,SAAe1W,GACb,OAAOlR,KAAKmf,0BAA0BtC,qBAAqB3L,EAAO,MAErEgW,GAAArnB,UAAAgoB,gBAAA,WACC7nB,KAAK0X,UAAU,EAAC,GAAO,GAAO,GAAO,I,IAC/BoQ,EAAqB9nB,KAAKonB,4BAA4BzP,SAAS0P,oBAC/DU,EAAYD,EAAmBjQ,OAC/B7X,KAAKonB,4BAA4BtP,OAAS9X,KAAKonB,4BAA4BrP,OAC7E/X,KAAKgoB,qBAAuBhoB,KAAKonB,4BAA4BzP,SAAS0P,oBAAoBxc,MAC1F7K,KAAKuP,WAAa,gCAEa,IAA5BuY,EAAmBjd,OACpB7K,KAAK0X,UAAU,EAAC,GAAM,GAAO,GAAO,IAEP,IAA5BoQ,EAAmBjd,OAAeid,EAAmB1P,SACtDpY,KAAK0X,UAAU,EAAC,GAAO,GAAM,GAAO,IAEnCqQ,GAAaA,EAAU1P,WAAa0P,EAAU1P,UAAUC,aAAe,GACxEtY,KAAK0X,UAAU,EAAC,GAAO,GAAO,GAAM,IAEnCqQ,GAAaA,EAAUxP,WAAgD,IAAnCwP,EAAUxP,UAAUD,cACzDtY,KAAK0X,UAAU,EAAC,GAAO,GAAO,GAAO,MAI3CwP,GAAArnB,UAAA6X,UAAA,SAAUuQ,GACNjoB,KAAKkoB,2BAA6BD,EAAI,GACtCjoB,KAAKmoB,4BAA8BF,EAAI,GACvCjoB,KAAKooB,+BAAiCH,EAAI,GAC1CjoB,KAAKqoB,+BAAiCJ,EAAI,IAE9Cf,GAAArnB,UAAAyoB,gBAAA,WAAA,IAAA1e,EAAA5J,KACEA,KAAKmX,yBAA0B,E,IAavBoR,EAZFvQ,EAAShY,KAAKonB,4BAA4B/d,IAAI,uBAAuBwB,MAEvE7K,KAAKge,qBAyBHhe,KAAKmf,0BAA0B/C,oBAAoBpc,KAAKsnB,iBAAiBb,cAAe,aAAaxc,UAAS,SAC9Gue,GACE5e,EAAKlC,aAAekC,EAAK+L,iBAAgB,G,IACnCwP,EAAc,IAAIc,GACvBrc,EAAK+d,aAAc/d,EAAK0d,iBAAkB1d,EAAK2d,OAAQ3d,EAAK8d,oBAC7D9d,EAAK4F,mBAAmB/B,eAAe0X,GAAalb,UAAS,SAC3Dwe,GACE7e,EAAKlC,aAAekC,EAAK+L,iBAAgB,G,IACnC+S,EAAY1gB,KAAKC,MAAMwgB,GAC3BE,EAAU,IAAI/C,GACb8C,EAAgB,KAAExL,wBAAyBwL,EAAgB,KAAExW,UAAW8F,GACvE0Q,EAAUrG,SACZzY,EAAK4F,mBAAmB9B,2BAA2Bib,GAAS1e,UAAS,SACnE2e,GACEhf,EAAKlC,aAAekC,EAAK+L,iBAAgB,GACvB3N,KAAKC,MAAM2gB,GACfvG,SACZzY,EAAKif,0BAER,SACAlhB,GACCiC,EAAKuV,0BAA0B/C,oBAAoBxS,EAAK0d,iBAAiBb,cAAe,YAAYxc,YACpGL,EAAKlC,aAAekC,EAAK+L,iBAAgB,GACzC/L,EAAKuN,yBAA0B,KAItC,SACAxP,GACCiC,EAAKuV,0BAA0B/C,oBAAoBxS,EAAK0d,iBAAiBb,cAAe,YAAYxc,YACpGL,EAAKlC,aAAekC,EAAK+L,iBAAgB,GACzC/L,EAAKuN,yBAA0B,KAGpC,SACAxP,GACCiC,EAAKlC,aAAekC,EAAK+L,iBAAgB,GACzC/L,EAAKuN,yBAA0B,KA7DjCiP,EAAmB,CACrB5V,kBAAkB,eAClBuV,0BAA2B,CACzB3C,YAAa,GACb4C,KAAM,gBAERF,oBAAqB9N,EACrB8Q,QAAS9oB,KAAK+B,UAEVwmB,EAAoB,IAAItC,GAC7BjmB,KAAK2nB,aAAc3nB,KAAKsnB,iBAAkBtnB,KAAK+B,SAAU/B,KAAK0nB,mBAAoBtB,GACnFpmB,KAAKmf,0BAA0BhD,oBAAoBoM,GAAmBte,UAAS,SAC7EwG,GACE7G,EAAKlC,aAAekC,EAAK+L,iBAAgB,GAC1B3N,KAAKC,MAAMwI,GACb4R,SACbzY,EAAKif,0BAEN,SACAlhB,GACCiC,EAAKlC,aAAekC,EAAK+L,iBAAgB,GACzC/L,EAAKuN,yBAA0B,MA6CvC+P,GAAArnB,UAAAkpB,+BAAA,SAA+BjgB,GAC1BA,GAAiB,WAATA,EACgE,KAApE9I,KAAKonB,4BAA4B/d,IAAI,uBAAuBwB,MAC7D7K,KAAKuP,WAAa,4BAElBvP,KAAK6oB,yBAGT7oB,KAAKuP,WAAa,YAItB2X,GAAArnB,UAAAgpB,uBAAA,WACE7oB,KAAK8J,oBAAoBlD,SAAW,oBACpC5G,KAAK8J,oBAAoBhD,aAAc,EACvC9G,KAAK8J,oBAAoBgI,YAAa,GAExCoV,GAAArnB,UAAA8V,gBAAA,SAAgBpN,GACd,MAAO,CACLE,MAAO,sCACPC,KAAM,kBACNC,UAAWJ,I,qBA3LhBxB,EAAAA,UAAS/F,KAAA,CAAC,CACTgG,SAAU,gCACVC,SAAA,++K,qjBAVOuS,EAAAA,a,MAEA/M,G,MADA3G,G,MAED8V,M,mCAWLzU,EAAAA,SAwLH+f,IAtKE,SAAAA,GAAoBrR,EACZrG,EACA1F,EACAqV,GAHYnf,KAAA6V,YAAAA,EACZ7V,KAAAwP,mBAAAA,EACAxP,KAAA8J,oBAAAA,EACA9J,KAAAmf,0BAAAA,EAhBRnf,KAAAkoB,4BAAsC,EACtCloB,KAAAmoB,6BAAuC,EACvCnoB,KAAAooB,gCAA0C,EAC1CpoB,KAAAqoB,gCAA0C,EAC1CroB,KAAA0H,aAAe1H,KAAK2V,iBAAgB,GAEpC3V,KAAAunB,OAAiB,KAEjBvnB,KAAAmX,yBAAkC,EAClCnX,KAAA2nB,aAAuB,KACvB3nB,KAAA0nB,mBAA6B,KAC7B1nB,KAAAge,sBAAgC,EC9BlC,IAAAgL,GAQE,SAAY9L,EAAiC2I,EAA4B7N,EAAeiR,EAA4BC,EAA0BC,GAC5InpB,KAAK+lB,0BAA4B,CACjC3C,YAAa,GACb4C,KAAM,eAENhmB,KAAKkd,wBAA0BA,EAC/Bld,KAAK6lB,kBAAmBA,EACxB7lB,KAAK8lB,oBAAqB9N,EAC1BhY,KAAKopB,iBAAkBH,EACvBjpB,KAAKqpB,wBAAyBF,EAC9BnpB,KAAKspB,sBAAuBJ,GCnBhCK,IAiDEA,GAAA1pB,UAAAqG,SAAA,WAAA,IAAA0D,EAAA5J,KACEA,KAAK0X,UAAU,EAAC,GAAM,GAAM,GAAM,GAAM,GAAM,GAAQ,OACtD1X,KAAKuP,WAAa,WAClBvP,KAAKkC,cAAgBlC,KAAK8J,oBAAoBC,gBAC9C/J,KAAKyG,aAAezG,KAAK8J,oBAAoBrD,aAC7CzG,KAAKge,qBAAuBhe,KAAK8J,oBAAoBmU,WACrDje,KAAKmnB,uBAELnnB,KAAKwP,mBAAmBf,YAAYxE,UAAS,SAC3Cuf,GACE5f,EAAK6f,0BAA2B,EAChC7f,EAAKlC,aAAekC,EAAK+L,iBAAgB,GACzC/L,EAAK8f,WAAa1hB,KAAKC,MAAMuhB,IAC9B,SACD/hB,GACE8J,OAAOoY,SAAS,EAAG,GACnB/f,EAAK6f,0BAA2B,EAChC7f,EAAKlC,aAAekC,EAAK+L,iBAAgB,KAI7C3V,KAAK4pB,2BAA6B5pB,KAAK6V,YAAYC,MAAM,CACvDkC,OAAQ,IAAIhC,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CAC7CD,EAAAA,WAAWE,SACXF,EAAAA,WAAWK,UAAU,GACrBL,EAAAA,WAAWM,UAAU,KACrBN,EAAAA,WAAWO,QAAQ,8BAErBqT,kBAAmB,IAAI7T,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CACxDD,EAAAA,WAAWE,SACXF,EAAAA,WAAWO,QAAQ,mCAErBsT,kBAAmB,IAAI9T,EAAAA,YAAY,IACnC+T,QAAS,IAAI/T,EAAAA,YAAY,OAG7BuT,GAAA1pB,UAAA+nB,eAAA,SAAe1W,GACb,OAAOlR,KAAKmf,0BAA0BtC,qBAAqB3L,EAAO,MAEpEqY,GAAA1pB,UAAAyoB,gBAAA,WAAA,IAAA1e,EAAA5J,KACEA,KAAKmX,yBAA0B,E,IAavBoR,EAZF5Q,EAAW3X,KAAK4pB,2BAA2BjS,SAC7C3X,KAAKge,qBA2BThe,KAAKmf,0BAA0B/C,oBAAoBpc,KAAKsnB,iBAAiBb,cAAe,aAAaxc,UAAS,SAC5Gue,GACE5e,EAAKlC,aAAekC,EAAK+L,iBAAgB,GACvB3N,KAAKC,MAAMugB,GAC5BrD,EAAc,IAAIc,GACjBrc,EAAK+d,aAAc/d,EAAK0d,iBAAkB1d,EAAK2d,OAAQ3d,EAAK8d,oBAC9D9d,EAAK4F,mBAAmB/B,eAAe0X,GAAalb,UAAS,SAC3Dwe,GACE7e,EAAKlC,aAAekC,EAAK+L,iBAAgB,G,IACnC+S,EAAY1gB,KAAKC,MAAMwgB,GAC7BE,EAAU,IAAIK,GACbN,EAAgB,KAAExL,wBAAyBwL,EAAgB,KAAExW,UAAWyF,EAASK,OAAOnN,MAAOjB,EAAKogB,eAAgBrS,EAASmS,kBAAkBjf,MAAO8M,EAASoS,QAAQlf,OACnK6d,EAAUrG,SACbzY,EAAK4F,mBAAmB7B,0BAA0Bgb,GAAS1e,UAAS,SAClE2e,GACEhf,EAAKlC,aAAekC,EAAK+L,iBAAgB,GACvB3N,KAAKC,MAAM2gB,GACfvG,SACZzY,EAAKif,0BAER,SACAlhB,GACCiC,EAAKuV,0BAA0B/C,oBAAoBxS,EAAK0d,iBAAiBb,cAAe,YAAYxc,YACpGL,EAAKlC,aAAekC,EAAK+L,iBAAgB,GACzC/L,EAAKuN,yBAA0B,KAItC,SACAxP,GACCiC,EAAKuV,0BAA0B/C,oBAAoBxS,EAAK0d,iBAAiBb,cAAe,YAAYxc,YACpGL,EAAKlC,aAAekC,EAAK+L,iBAAgB,GACzC/L,EAAKuN,yBAA0B,KAGpC,SACAxP,GACCiC,EAAKlC,aAAekC,EAAK+L,iBAAgB,GACzC/L,EAAKuN,yBAA0B,KAhE7BiP,EAAmB,CACrB5V,kBAAkB,cAClBuV,0BAA2B,CACzB3C,YAAa,GACb4C,KAAM,eAERF,oBAAqBnO,EAASK,OAAOnN,MACrCue,iBAAkBppB,KAAKgqB,eACvBlB,QAAS9oB,KAAK+B,UAEVwmB,EAAoB,IAAItC,GAC7BjmB,KAAK2nB,aAAc3nB,KAAKsnB,iBAAkBtnB,KAAK+B,SAAU/B,KAAK0nB,mBAAoBtB,GACnFpmB,KAAKmf,0BAA0BhD,oBAAoBoM,GAAmBte,UAAS,SAC7EwG,GACE7G,EAAKlC,aAAekC,EAAK+L,iBAAgB,GAC1B3N,KAAKC,MAAMwI,GACb4R,SACZzY,EAAKif,0BAEP,SACAlhB,GACCiC,EAAKlC,aAAekC,EAAK+L,iBAAgB,GACzC/L,EAAKuN,yBAA0B,MA+CxCoS,GAAA1pB,UAAAgoB,gBAAA,WACG7nB,KAAK0X,UAAU,EAAC,GAAM,GAAM,GAAM,GAAM,GAAM,GAAQ,O,IAM9CC,EALEoQ,EAAY/nB,KAAK4pB,2BAA2BjS,SAASK,OAAOH,OAC5DoS,EAAcjqB,KAAK4pB,2BAA2BjS,SAASK,OAEvDkS,EAAiBlqB,KAAK4pB,2BAA2BjS,SAASkS,kBAChE7pB,KAAK4pB,2BAA2B9R,OAAS9X,KAAK4pB,2BAA2B7R,OACrEJ,EAAW3X,KAAK4pB,2BAA2BjS,SACjD3X,KAAK+pB,QAAUpS,EAASoS,QAAQlf,MAChC7K,KAAK6pB,kBAAoBK,EAAcrf,MACvC7K,KAAK8pB,kBAAoBnS,EAASmS,kBAAkBjf,MACpD7K,KAAKgY,OAASL,EAASK,OAAOnN,MAC9B7K,KAAKuP,WAAa,+BAEO,IAArB0a,EAAYpf,OACd7K,KAAK0X,UAAU,EAAC,GAAK,GAAM,GAAM,GAAM,GAAM,GAAQ,UAE/B,IAArBuS,EAAYpf,OAAe7K,KAAK4pB,2BAA2BjS,SAASK,OAAOI,SAC5EpY,KAAK0X,UAAU,EAAC,GAAM,GAAK,GAAM,GAAM,GAAM,GAAQ,UAEpDqQ,GAAaA,EAAU1P,WAAa0P,EAAU1P,UAAUC,aAAe,GACxEtY,KAAK0X,UAAU,EAAC,GAAM,GAAM,GAAK,GAAM,GAAM,GAAQ,UAEpDqQ,GAAaA,EAAUxP,WAAgD,IAAnCwP,EAAUxP,UAAUD,cACzDtY,KAAK0X,UAAU,EAAC,GAAM,GAAM,GAAM,GAAK,GAAM,GAAQ,UAE7B,IAAvBwS,EAAcrf,OACf7K,KAAK0X,UAAU,EAAC,GAAM,GAAM,GAAM,GAAM,GAAK,GAAQ,qBAE7B,IAAvBwS,EAAcrf,OAAeqf,EAAc9R,SAC5CpY,KAAK0X,UAAU,EAAC,GAAM,GAAM,GAAM,GAAM,GAAM,GAAM,uBAI1D6R,GAAA1pB,UAAA6X,UAAA,SAAUuQ,EAAKlP,GACF,WAARA,GAA4B,QAARA,IACrB/Y,KAAKgX,cAAgBiR,EAAI,GACzBjoB,KAAKmqB,eAAiBlC,EAAI,GAC1BjoB,KAAKoqB,kBAAoBnC,EAAI,GAC7BjoB,KAAKqqB,kBAAoBpC,EAAI,IAEpB,sBAARlP,GAAuC,QAARA,IAChC/Y,KAAKsqB,yBAA2BrC,EAAI,GACpCjoB,KAAKuqB,0BAA4BtC,EAAI,KAI3CsB,GAAA1pB,UAAA2qB,8BAAA,SAA8B1hB,GACvBA,GAAiB,WAATA,EACN9I,KAAKyqB,oBACNzqB,KAAKuP,WAAa,2BAElBvP,KAAK6oB,0BAGP7oB,KAAK4pB,2BAA2BjS,SAASkS,kBAAkBa,SAAS,IACpE1qB,KAAKuP,WAAa,aAGtBga,GAAA1pB,UAAA4qB,kBAAA,W,IAIW1R,EAHH4R,EAAa3qB,KAAK4pB,2BAA2B/e,MAC/C+f,GAAc,EAElB,IAAS7R,KAAS4R,EAChB,GAAIA,EAAWE,eAAe9R,IAA+B,KAArB4R,EAAW5R,GAAc,CAC/D6R,GAAc,EACd,MAGJ,OAAOA,GAETrB,GAAA1pB,UAAAgpB,uBAAA,WACE7oB,KAAK8J,oBAAoBlD,SAAW,oBACpC5G,KAAK8J,oBAAoBhD,aAAc,EACvC9G,KAAK8J,oBAAoBgI,YAAa,GAEvCyX,GAAA1pB,UAAAsnB,qBAAA,WAAA,IAAAvd,EAAA5J,KACCA,KAAKmf,0BAA0BrD,mBAAmB9b,KAAKyG,cAAcwD,UAAS,SAC5Ema,GAEAxa,EAAK0d,iBAAmBlD,EAAyB,KAAEla,SAASgG,OAAM,SAACiC,GACjE,OAAOA,GAAWA,EAAQsU,eAAiB7c,EAAKnD,eAC/C,GACFmD,EAAK2d,OAASnD,EAAyB,KAAEE,uB,IAClCkD,EAAcpD,EAAyB,KAAE9E,cAC9CmI,EAAoBrD,EAAyB,KAAE/E,2BAC/CqI,EAAqBF,GAAcA,IAAgB5d,EAAK1H,cAAgB,KAA4B0H,EAAK1H,cAC1G0H,EAAK+d,aAAeH,GAA4B,KAChD5d,EAAK8d,mBAAqBD,GAAwCC,GACrE,SACE/f,GACCiC,EAAKlC,aAAekC,EAAK+L,iBAAgB,MAK/C4T,GAAA1pB,UAAA8V,gBAAA,SAAgBpN,GACd,MAAO,CACLE,MAAO,wBACPC,KAAM,0BACNC,UAAWJ,IAIfghB,GAAA1pB,UAAAirB,aAAA,SAAa9pB,GACXhB,KAAKgqB,eAAiBhpB,EAAK+pB,OAAOlgB,MAClC7K,KAAKgrB,iBAAmBhqB,EAAK+pB,OAAO5f,QAAQnK,EAAK+pB,OAAOE,eAAeC,M,qBAhQ1EnkB,EAAAA,UAAS/F,KAAA,CAAC,CACTgG,SAAU,+BACVC,SAAA,utM,mkBAZOuS,EAAAA,a,MAKA/M,G,MAJA3G,G,MACA8V,M,mCAcNzU,EAAAA,SA6PHoiB,IAlOE,SAAAA,GAAoB1T,EACZrG,EACA1F,EACAqV,GAHYnf,KAAA6V,YAAAA,EACZ7V,KAAAwP,mBAAAA,EACAxP,KAAA8J,oBAAAA,EACA9J,KAAAmf,0BAAAA,EA3BRnf,KAAAmqB,gBAA0B,EAC1BnqB,KAAAgX,eAAyB,EACzBhX,KAAAoqB,mBAA6B,EAC7BpqB,KAAAqqB,mBAA6B,EAC7BrqB,KAAAuqB,2BAAqC,EACrCvqB,KAAAsqB,0BAAoC,EACpCtqB,KAAA0H,aAAe1H,KAAK2V,iBAAgB,GAIpC3V,KAAAunB,OAAiB,KAKjBvnB,KAAAmX,yBAAmC,EACnCnX,KAAAypB,0BAAoC,EACpCzpB,KAAA2nB,aAAuB,KACvB3nB,KAAA0nB,mBAA6B,KAG7B1nB,KAAAge,sBAAgC,ECzClC,IAAAmN,IA2DEA,GAAAtrB,UAAAqG,SAAA,WAAA,IAAA0D,EAAA5J,KAEEA,KAAKkC,cAAgBlC,KAAK8J,oBAAoBC,gBAC9C/J,KAAKiP,eAAiBjP,KAAK8J,oBAAoBoF,gBAAgB0D,oBAC/D5S,KAAKmP,UAAYnP,KAAK8J,oBAAoBtD,WAC1CxG,KAAK2d,iBAAmB3d,KAAK8J,oBAAoBgI,WACjD9R,KAAKoP,UAAYpP,KAAK8J,oBAAoBuF,UAC1CrP,KAAKorB,eAAiBprB,KAAK8J,oBAAoB+T,eAC/C7d,KAAKqrB,eAAiBrrB,KAAK8J,oBAAoBiU,eAC/C/d,KAAKsrB,cAAgBtrB,KAAK8J,oBAAoBmU,WAC9Cje,KAAKkB,kBAAkBoB,eAAe2H,UAAS,SAAG4H,GAAS,OAAAjI,EAAK2hB,mBAAqB1Z,IACrF7R,KAAKkkB,4BAIPiH,GAAAtrB,UAAAqkB,yBAAA,WAAA,IAAAta,EAAA5J,KAC+B,QAAxBA,KAAKiP,eACNjP,KAAKmf,0BAA0BrD,mBAAmB9b,KAAKmP,WAAWlF,UAAS,SAC3Ema,GAEGA,EAAyB,MAAKA,EAAyB,KAAEla,SACxDN,EAAK4hB,6BAA6BpH,EAAyB,MACnDA,EAA6B,SACrCxa,EAAK4hB,6BAA6BpH,IAElCxa,EAAK2a,sBAAwB,QAC7B3a,EAAKiY,uBAAuB4J,KAAK,OAEpC,SACA9jB,GACCiC,EAAK2a,sBAAwB5c,EAC7BiC,EAAKiY,uBAAuB4J,KAAK,OAInCzrB,KAAKmf,0BAA0BtD,mBAAmB7b,KAAKkC,eAAe+H,UAAS,SAC/Ema,GAEKA,EAAyB,MAAKA,EAAyB,KAAEla,SAC1DN,EAAK4hB,6BAA6BpH,EAAyB,MACnDA,EAA6B,SACrCxa,EAAK4hB,6BAA6BpH,IAElCxa,EAAK2a,sBAAwB,QAC7B3a,EAAKiY,uBAAuB4J,KAAK,OAEpC,SACA9jB,GACCiC,EAAK2a,sBAAwB5c,EAC7BiC,EAAKiY,uBAAuB4J,KAAK,QAOzCN,GAAAtrB,UAAA2rB,6BAAA,SAA6BpH,GAE3BpkB,KAAK0rB,qBAAuBtH,EAAmBla,SAC5ClK,KAAK0rB,uBACF1rB,KAAK2rB,2BAA6BvH,EAAmBla,SAAS7D,QAEpErG,KAAK4rB,UAAYxH,EAAmBE,uBAChCF,EAAkC,gBAAMrc,YAC1C/H,KAAK6rB,iBAAkB,GAGzB7rB,KAAK6hB,uBAAuB4J,KAAUzrB,KAAK0rB,qBAA2B,QACtE1rB,KAAK8rB,8BAA8B9rB,KAAK0rB,uBAG1CP,GAAAtrB,UAAAksB,yBAAA,SAAyBC,GACvB,MAAO,kBAAkBA,GAG3Bb,GAAAtrB,UAAA+nB,eAAA,SAAe1W,GACb,OAAOlR,KAAKmf,0BAA0BtC,qBAAqB3L,EAAO,MAGpEia,GAAAtrB,UAAAuhB,wBAAA,SAAwBzP,EAAY8U,GAClC9U,EAAMC,iBACN5R,KAAKisB,SAAWxF,EACZvb,EAAMlL,KAAK2d,iBAAmB,yBAA2B,0BAC7DzS,GAAOlL,KAAKqP,UAAY,oBAAsB,qBAC9CnE,GAAOlL,KAAKsrB,cAAgB,wBAA0B,yBACtDpgB,GAAM,aAAalL,KAAK8J,oBAAoBuT,SAC5CnS,GAAOlL,KAAKqrB,eAAiB,yBAA2B,0BACxDngB,GAAOlL,KAAKorB,eAAiB,yBAA2B,0BAExDprB,KAAKoZ,OAAOiI,cAAc,8BAA8BrhB,KAAKiP,eAAc,kBAAkBjP,KAAKkC,cAAa,QAAQlC,KAAKisB,SAAW/gB,IAGzIigB,GAAAtrB,UAAAqsB,oBAAA,SAAoBtlB,EAAkB6f,GACpCzmB,KAAKisB,SAAWxF,EAChBzmB,KAAK8J,oBAAoBrD,aAAezG,KAAKisB,SAC7CjsB,KAAK8J,oBAAoBlD,SAAWA,GAGtCukB,GAAAtrB,UAAAisB,8BAAA,SAA8BK,GAC7BnsB,KAAK4hB,6BAA8B,EACnC5hB,KAAKosB,kBACLpsB,KAAK0hB,4BAA4B+J,KAAKU,IAGvChB,GAAAtrB,UAAAwsB,aAAA,WACErsB,KAAK4hB,6BAA8B,EACnC5hB,KAAKssB,mCAAqC,EAC1CtsB,KAAKusB,gCAAkC,EACvCvsB,KAAKwsB,+BAAgC,GAGvCrB,GAAAtrB,UAAA4lB,iBAAA,SAAiBgB,GACfzmB,KAAK8J,oBAAoBrD,aAAeggB,EACxCzmB,KAAK8J,oBAAoB1C,4BAA8BpH,KAAK4rB,UAC5D5rB,KAAK8J,oBAAoBsF,UAAYpP,KAAKqP,UAC1CrP,KAAK8J,oBAAoB8T,eAAiB5d,KAAK6d,eAC/C7d,KAAK8J,oBAAoBgU,eAAiB9d,KAAK+d,eAC/C/d,KAAK8J,oBAAoBmU,WAAaje,KAAKsrB,cAExCtrB,KAAKqP,WACNrP,KAAK8J,oBAAoBvD,sBAAwBvG,KAAKysB,WACtDzsB,KAAK8J,oBAAoBlD,SAAW,gBAEpC5G,KAAK8J,oBAAoBvD,sBAAwB,KACjDvG,KAAK8J,oBAAoBlD,SAAW,sBAKxCukB,GAAAtrB,UAAAusB,gBAAA,WACKpsB,KAAK4hB,6BAAgC5hB,KAAK6rB,gBACzC7rB,KAAKusB,gCAAiC,GAC9BvsB,KAAK4hB,6BAAiC5hB,KAAK6rB,iBAAoB7rB,KAAKurB,mBAGrEvrB,KAAK4hB,8BAAgC5hB,KAAK6rB,iBAAmB7rB,KAAKurB,qBACvEvrB,KAAKqP,WAIPrP,KAAKssB,kCAAoCtsB,KAAK0sB,oBAC9C1sB,KAAKwsB,+BAAgC,IAJrCxsB,KAAKssB,mCAAoC,EACzCtsB,KAAKwsB,+BAAgC,KALvCxsB,KAAKssB,mCAAoC,EACzCtsB,KAAKwsB,+BAAgC,IAYzCrB,GAAAtrB,UAAA8sB,gCAAA,SAAgChb,GAC9BA,EAAMC,iBACN5R,KAAKisB,SAAW,KAChBjsB,KAAK4hB,6BAA8B,EACnC5hB,KAAKssB,mCAAoC,EACzCtsB,KAAKwsB,+BAAgC,EACrCxsB,KAAKusB,gCAAiC,EAEtCvsB,KAAK0hB,4BAA4B+J,KAAK,KAGxCN,GAAAtrB,UAAA+sB,cAAA,SAAcjb,EAAWkb,EAAUliB,GACjCgH,EAAMC,iBAEN5R,KAAK8sB,6BAA+BD,G,qBAnNvC9lB,EAAAA,UAAS/F,KAAA,CAAC,CACTgG,SAAU,iCACVC,SAAA,sma,ivDANMwS,EAAAA,Q,MAHCmC,I,MACA9V,G,MAGA2G,G,MACAvL,K,6CASNiG,EAAAA,MAAKnG,KAAA,CAAC,wB,kBACNmG,EAAAA,MAAKnG,KAAA,CAAC,gB,iBACNmG,EAAAA,MAAKnG,KAAA,CAAC,e,wBACNmG,EAAAA,MAAKnG,KAAA,CAAC,sB,2BACNmG,EAAAA,MAAKnG,KAAA,CAAC,yB,sBACNmG,EAAAA,MAAKnG,KAAA,CAAC,oB,sBACNmG,EAAAA,MAAKnG,KAAA,CAAC,oB,kBACNmG,EAAAA,MAAKnG,KAAA,CAAC,gB,sBACNmG,EAAAA,MAAKnG,KAAA,CAAC,oB,aACNmG,EAAAA,MAAKnG,KAAA,CAAC,W,mCAEN+rB,EAAAA,S,8BACAA,EAAAA,UAmMH5B,IA1KE,SAAAA,GAAoB/R,EACV+F,EACArV,EACA0F,EACAtO,GAJUlB,KAAAoZ,OAAAA,EACVpZ,KAAAmf,0BAAAA,EACAnf,KAAA8J,oBAAAA,EACA9J,KAAAwP,mBAAAA,EACAxP,KAAAkB,kBAAAA,EA9BAlB,KAAA0hB,4BAAoD,IAAIsL,EAAAA,aACxDhtB,KAAA6hB,uBAA+C,IAAImL,EAAAA,aAE7DhtB,KAAAuP,WAAa,OAEbvP,KAAAukB,sBAAgC,KAEhCvkB,KAAAisB,SAAmB,KACnBjsB,KAAAitB,eAAyB,EACzBjtB,KAAAmP,UAAoB,KAEpBnP,KAAA4hB,6BAAuC,EACvC5hB,KAAAssB,mCAA6C,EAC7CtsB,KAAAusB,gCAA0C,EAC1CvsB,KAAAwsB,+BAAyC,EACzCxsB,KAAA6rB,iBAA2B,EAC3B7rB,KAAA4rB,UAAoB,KAIpB5rB,KAAAoP,WAAqB,EAGrBpP,KAAA2rB,2BAAqC,ECjDvC,IAAAuB,IAmBIA,GAAArtB,UAAAqG,SAAA,aAGAgnB,GAAArtB,UAAA+nB,eAAA,SAAe1W,GACb,OAAOlR,KAAKmf,0BAA0BtC,qBAAqB3L,EAAO,MAEpEgc,GAAArtB,UAAAstB,0BAAA,SAA0B5mB,EAA+B6D,EAA0BnB,GACjFjJ,KAAKyhB,yBAAyBgK,KAAK,CAACllB,sBAAqBA,EAAE6D,iBAAgBA,EAAEnB,cAAaA,K,qBArB/FlC,EAAAA,UAAS/F,KAAA,CAAC,CACTgG,SAAU,+BACVC,SAAA,2zD,iJAJMwS,EAAAA,Q,MAFCmC,M,sCAWNzU,EAAAA,MAAKnG,KAAA,CAAC,iB,gCACN+rB,EAAAA,UAeHG,IAbE,SAAAA,GACU9T,EACA+F,GADAnf,KAAAoZ,OAAAA,EACApZ,KAAAmf,0BAAAA,EAJAnf,KAAAyhB,yBAA8C,IAAIuL,EAAAA,aCZ9D,IAAAI,GAOE,SAAYlQ,EAAiC2I,EAA4B7N,EAAkBqV,EAAuBC,GAChHttB,KAAK+lB,0BAA4B,CAC/B3C,YAAa,GACb4C,KAAM,aAERhmB,KAAKkd,wBAA0BA,EAC/Bld,KAAK6lB,kBAAmBA,EACxB7lB,KAAKgY,OAASA,GAAkB,KAChChY,KAAKqtB,YAAcA,GAA4B,KAC/CrtB,KAAKutB,UAAYD,GAAsB,MCjB3CE,IAqHEA,GAAA3tB,UAAAqG,SAAA,WAAA,IAAA0D,EAAA5J,KACEA,KAAKuP,WAAa,WACqC,OAAnDvP,KAAK8J,oBAAoBvD,wBAC3BvG,KAAKuP,WAAa,+BAGpBvP,KAAKkC,cAAgBlC,KAAK8J,oBAAoBC,gBAC9C/J,KAAKyG,aAAezG,KAAK8J,oBAAoBrD,aAC7CzG,KAAKic,WAAajc,KAAK8J,oBAAoBvD,sBAC3CvG,KAAKiP,eAAiBjP,KAAK8J,oBAAoBoF,gBAC/ClP,KAAKge,qBAAuBhe,KAAK8J,oBAAoBmU,WACrDje,KAAKoP,UAAYpP,KAAK8J,oBAAoBsF,UAC1CpP,KAAKytB,qBAAuBztB,KAAK6V,YAAYC,MAAM,CACjD4X,YAAa,IAAI1X,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CAClDD,EAAAA,WAAWE,SACXF,EAAAA,WAAWK,UAAU,GACrBL,EAAAA,WAAWM,UAAU,KACrBN,EAAAA,WAAWO,QAAQ,8BAErB8W,SAAU,IAAItX,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CAC/CD,EAAAA,WAAWE,SACXF,EAAAA,WAAWO,QAAQ,4BAGvBxW,KAAKkB,kBAAkBO,gBAAgBwI,UAAS,SAAG4H,GACnD,OAAAjI,EAAKxI,eAAiByQ,EAAK3B,OAAM,SAAC2B,GAAQ,MAAqB,SAArBA,EAAK8N,gBAC/C3f,KAAKkB,kBAAkBc,cAAciI,UAAS,SAAG4H,GAAS,OAAAjI,EAAK7H,SAAW8P,IAC1E7R,KAAKmnB,wBAEPqG,GAAA3tB,UAAAshB,0BAAA,SAA0B1R,GACxB,OAAOzP,KAAKmf,0BAA0B9C,2BAA2B5M,IAGnE+d,GAAA3tB,UAAA8M,uBAAA,WAAA,IAAA/C,EAAA5J,KAEMA,KAAKoP,UAYPpP,KAAKke,wBAAwBvC,iBAAiB3b,KAAKkC,eAAe+H,UAAS,SACzEkU,GACEvU,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GAAO,EAAO,IACnFsB,EAAKuU,cAAgBA,EAA8B,eAAEjO,OAAM,SAACT,GACxDA,EAAaC,KAAK7D,QAAO,SAAC8D,GACK,IAA1BA,EAAI8M,oBACL7S,EAAKgb,iBAAkB,K,IAGvB+I,EAAS/jB,EAAKuX,0BAAyB,GAC3CyM,EAAkB,EAATD,GAAyB,GAAVA,GAAe/jB,EAAKgb,iBAAoBnV,EAAayN,0BAA4BtT,EAAKqS,WAC9G,OAAOrS,EAAKqS,WAAc2R,EAAkB,EAATD,GAAyB,GAAVA,GAAe/jB,EAAKgb,mBAEzE,SACAjd,GACCiC,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GAAM,EAAO,MA1BpFtI,KAAKwP,mBAAmB7C,uBAAuB3M,KAAKic,YAAYhS,UAAS,SACvEwF,GACE7F,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GAAO,EAAO,IACjFsB,EAAK6F,aAAgBA,EACrB7F,EAAKie,mBACN,SACAlgB,GACCiC,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GAAM,EAAO,OA0BxFklB,GAAA3tB,UAAAguB,qBAAA,SAAqBpe,GACnBzP,KAAKypB,0BAA2B,EAChCzpB,KAAKyP,aAAeA,GAGtB+d,GAAA3tB,UAAAgpB,uBAAA,WACE7oB,KAAK8J,oBAAoBlD,SAAW,oBACpC5G,KAAK8J,oBAAoBsF,UAAYpP,KAAKoP,UAC1CpP,KAAK8J,oBAAoBhD,aAAc,EACvC9G,KAAK8J,oBAAoBgI,YAAa,GAGxC0b,GAAA3tB,UAAAiuB,gBAAA,SAAgBnc,GACdA,EAAMC,iBACN5R,KAAK8J,oBAAoBlD,SAAW,cACpC5G,KAAK8J,oBAAoBsF,UAAYpP,KAAKoP,UAC1CpP,KAAK8J,oBAAoBhD,aAAc,EACvC9G,KAAK8J,oBAAoBgI,YAAa,GAGxC0b,GAAA3tB,UAAAkuB,sBAAA,SAAsBpc,GACpBA,EAAMC,iBACN5R,KAAK0X,UAAU,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAQ,OACrE1X,KAAKoP,UAMPpP,KAAKuP,WAAa,YALlBvP,KAAK8J,oBAAoBlD,SAAW,cACpC5G,KAAK8J,oBAAoBsF,UAAYpP,KAAKoP,UAC1CpP,KAAK8J,oBAAoBhD,aAAc,EACvC9G,KAAK8J,oBAAoBgI,YAAa,IAK1C0b,GAAA3tB,UAAAmuB,wBAAA,WACEhuB,KAAKiuB,iBAAmBliB,SAASC,OAAOC,MAAM,KAAKC,KAAI,SAACC,GAAO,OAAAA,EAAIiE,SAAS,eAAcnE,MAAM,KAAK,GAAGA,MAAM,KAC9GjM,KAAKkuB,eAAiBlmB,KAAKC,MAAMkmB,mBAAmBnuB,KAAKiuB,mB,IAEnDG,EAAWpuB,KAAKkuB,eAAyB,SAAI,IAAMluB,KAAKkuB,eAAwB,QAEhFG,EAAsBruB,KAAKytB,qBAAqB9V,SAAS+V,YAC7DY,EAAmBtuB,KAAKytB,qBAAqB9V,SAAS+V,YAAY7V,OAClE0W,EAAgBH,EAChBI,EAAkBxuB,KAAKyuB,eAAiBzuB,KAAK0uB,mBAC7CC,EAAoD,UAA5B3uB,KAAK0uB,mBAE/B1uB,KAAK0X,UAAU,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAQ,QAClE1X,KAAK4uB,0BAA4B5uB,KAAK6uB,yBAA4BL,KAAqBG,GAAgD,EAAvBJ,EAAcloB,QAAcsoB,GAAgD,EAAvBJ,EAAcloB,QAAcgoB,EAAoBtW,QAC1N/X,KAAKmX,yBAA0B,EAC/BnX,KAAK8uB,wBAAsD,UAA5B9uB,KAAK0uB,mBAAiCL,EAAoBxjB,MAAQ7K,KAAK0uB,mBACtG1uB,KAAKstB,SAAWiB,EAChBvuB,KAAK+uB,qBAED/uB,KAAKyuB,eACPzuB,KAAK0X,UAAU,EAAC,GAAM,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAQ,UAEtE1X,KAAK0uB,oBACP1uB,KAAK0X,UAAU,EAAC,GAAO,GAAM,GAAO,GAAO,GAAO,GAAO,GAAO,GAAQ,eAEvE1X,KAAK0uB,oBAAsBC,IACI,IAA7BN,EAAoBxjB,OACrB7K,KAAK0X,UAAU,EAAC,GAAO,GAAO,GAAM,GAAO,GAAO,GAAO,GAAO,GAAQ,SAE1C,IAA7B2W,EAAoBxjB,OAAewjB,EAAoBjW,SACxDpY,KAAK0X,UAAU,EAAC,GAAO,GAAO,GAAO,GAAM,GAAO,GAAO,GAAO,GAAQ,SAEvE4W,GAAoBA,EAAiBjW,WAAaiW,EAAiBjW,UAAUC,aAAe,GAC7FtY,KAAK0X,UAAU,EAAC,GAAO,GAAO,GAAO,GAAO,GAAM,GAAO,GAAO,GAAQ,SAEvE4W,GAAoBA,EAAiB/V,WAAuD,IAA1C+V,EAAiB/V,UAAUD,cAC9EtY,KAAK0X,UAAU,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,GAAM,GAAO,GAAQ,UAGhD,IAAzB6W,EAAcloB,QACfrG,KAAK0X,UAAU,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAM,GAAQ,cAI9E8V,GAAA3tB,UAAA6X,UAAA,SAAUoB,EAAMC,GACH,WAARA,GAA4B,QAARA,IACrB/Y,KAAKgvB,sBAAwBlW,EAAK,IAEzB,gBAARC,GAAiC,QAARA,IAC1B/Y,KAAKivB,2BAA6BnW,EAAK,IAE9B,UAARC,GAA2B,QAARA,IACpB/Y,KAAKkvB,sBAAwBpW,EAAK,GAClC9Y,KAAKmvB,wBAA0BrW,EAAK,GACpC9Y,KAAKovB,0BAA4BtW,EAAK,GACtC9Y,KAAKqvB,0BAA4BvW,EAAK,IAE7B,aAARC,GAA8B,QAARA,IACvB/Y,KAAKsvB,gBAAkBxW,EAAK,GAC5B9Y,KAAKuvB,kBAAoBzW,EAAK,KAGlC0U,GAAA3tB,UAAAkvB,iBAAA,WAAA,IAcUxG,EAdV3e,EAAA5J,KACMA,KAAKge,qBA8BThe,KAAKmf,0BAA0B/C,oBAAoBpc,KAAKkmB,mBAAmBO,cAAe,aAAaxc,UAAS,SAC9Gue,GACE5e,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GAAO,EAAO,IACjEN,KAAKC,MAAMugB,GACbnG,UACN8C,EAAc,IAAIc,GACvBrc,EAAK+d,aAAc/d,EAAKsc,mBAAoBtc,EAAK2d,OAAQ3d,EAAK8d,oBAC/D9d,EAAKuV,0BAA0BnD,sBAAsBmJ,EAAavb,EAAK6F,aAAayN,yBAAyBjT,UAAS,SACpHwe,GACE7e,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GAAO,EAAO,I,IAC7EogB,EAAY1gB,KAAKC,MAAMwgB,GACrBE,EAAU,IAAIyE,GACnB1E,EAAgB,KAAExL,wBAAyBwL,EAAgB,KAAExW,UAAWtI,EAAK6kB,cAAe7kB,EAAKklB,wBAAyBllB,EAAK0jB,UAC5H5E,EAAUrG,SACZzY,EAAK4F,mBAAmB5B,yBAAyB+a,GAAS1e,UAAS,SAEnE2e,GACEhf,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GAAO,EAAO,IACjEN,KAAKC,MAAM2gB,GACbvG,SACbzY,EAAKif,0BAEP,SACAlhB,GACCiC,EAAKuV,0BAA0B/C,oBAAoBxS,EAAKsc,mBAAmBO,cAAe,YAAYxc,YACtGL,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GAAM,EAAO,IAChFiJ,OAAOoY,SAAS,EAAG,GACnB/f,EAAKuN,yBAA0B,KAIpC,SACAxP,GACCiC,EAAKuV,0BAA0B/C,oBAAoBxS,EAAKsc,mBAAmBO,cAAe,YAAYxc,YACtGL,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GAAM,EAAO,IAChFiJ,OAAOoY,SAAS,EAAG,GACnB/f,EAAKuN,yBAA0B,MAItC,SACAxP,GACCiC,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GAAM,EAAO,IAChFiJ,OAAOoY,SAAS,EAAG,GACnB/f,EAAKuN,yBAA0B,KAzE7BiP,EAAmB,CACrBpO,OAAQhY,KAAKyuB,cACbje,kBAAkB,YAClB6c,YAAartB,KAAK8uB,wBAClB/I,0BAA2B,CACzB3C,YAAa,GACb4C,KAAM,aAER9I,wBAAyBld,KAAKyP,aAAayN,wBAC3CqG,UAAWvjB,KAAK+B,SAChBwrB,UAAWvtB,KAAKstB,UAEZ/E,EAAoB,IAAItC,GAC7BjmB,KAAK2nB,aAAc3nB,KAAKkmB,mBAAoBlmB,KAAK+B,SAAU/B,KAAK0nB,mBAAoBtB,GACrFpmB,KAAKmf,0BAA0BjD,uBAAuBqM,EAAoBvoB,KAAKyP,aAAayN,yBAAyBjT,UAAS,SAC5HwG,GACE7G,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GAAO,EAAO,IAClEN,KAAKC,MAAMwI,GACb4R,SACZzY,EAAKif,0BAEP,SACAlhB,GACCiC,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GAAM,EAAO,IAChFiJ,OAAOoY,SAAS,EAAG,GACnB/f,EAAKuN,yBAA0B,MAsDvCqW,GAAA3tB,UAAAgoB,gBAAA,WACE,IAQM2H,EACEC,EATLzvB,KAAKyP,eACNzP,KAAK0vB,sBAAuB,EAC5B1vB,KAAKytB,qBAAqBpkB,IAAI,eAAesmB,QAC7C3vB,KAAKytB,qBAAqBpkB,IAAI,eAAeqhB,SAAS,IACtD1qB,KAAKytB,qBAAqBpkB,IAAI,YAAYsmB,QAC1C3vB,KAAKytB,qBAAqBpkB,IAAI,YAAYqhB,SAAS,IACnD1qB,KAAKyuB,cAAgB,GACrBzuB,KAAK0uB,mBAAqB,GACtBc,EAAyBxvB,KAAKmhB,0BAA0BnhB,KAAKyP,cAC3DggB,EAAwBzvB,KAAKkmB,mBAAmBvJ,OAAS6S,EAC/DxvB,KAAK4uB,wBAAkD,EAAxBa,EAC/BzvB,KAAK6uB,wBAA0BY,EAAwB,EACvDzvB,KAAK4vB,oBAAsB5vB,KAAK4uB,wBAA0B,CACtDnmB,MAAO,8BACPuP,OAAQ,8DACPhY,KAAK6uB,wBAA0B,CAChCpmB,MAAO,+BACPuP,OAAQ,oBACP,CACDvP,MAAM,8BACNuP,OAAO,IAEXhY,KAAK6vB,iBAAmB7vB,KAAK4uB,wBAA0B,4BAA8B5uB,KAAK6uB,wBAA0B,8BAAgC,oBACpJ7uB,KAAK8vB,gBAAmB9vB,KAAK4uB,wBAA0Ba,EAAwBzvB,KAAK6uB,yBAAmD,EAAzBY,EAA6B,EAC3IzvB,KAAK+vB,4BAAuD,GAAzBN,EAA6B,GAA8B,EAAzBA,EACrEzvB,KAAKgwB,oBAAsBR,GAA0BxvB,KAAKkmB,mBAAmBvJ,OAAS3c,KAAKkmB,mBAAmBvJ,OAAS6S,EACpHxvB,KAAKoP,YACNpP,KAAKuP,WAAa,iCAIvBie,GAAA3tB,UAAAsnB,qBAAA,WAAA,IAAAvd,EAAA5J,KACCA,KAAKmf,0BAA0BrD,mBAAmB9b,KAAKyG,cAAcwD,UAAS,SAC5Ema,GACExa,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GAAO,EAAO,IACjFsB,EAAKsc,mBAAqB9B,EAAyB,KAAEla,SAASgG,OAAM,SAACiC,GACnE,OAAOA,GAAWA,EAAQsU,eAAiB7c,EAAKnD,eAC/C,GACHmD,EAAK2d,OAASnD,EAAyB,KAAEE,uB,IACnCkD,EAAcpD,EAAyB,KAAE9E,cAC/CmI,EAAoBrD,EAAyB,KAAE/E,2BAC/CqI,EAAqBF,GAAcA,IAAgB5d,EAAK1H,cAAgB,KAA4B0H,EAAK1H,cAC1G0H,EAAK+d,aAAeH,GAA4B,KAChD5d,EAAK8d,mBAAqBD,GAAwCC,EAClE9d,EAAK+C,0BACL,SACAhF,GACCiC,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GAAM,EAAO,OAItFklB,GAAA3tB,UAAAowB,kBAAA,SAAkBC,EAAKpnB,GACrB9I,KAAK0vB,sBAAuB,EACf,gBAAT5mB,GAAkC,UAARonB,IAC5BlwB,KAAKkvB,uBAAwB,EAC7BlvB,KAAKmvB,yBAA0B,EAC/BnvB,KAAKovB,2BAA4B,EACjCpvB,KAAKqvB,2BAA4B,EACjCrvB,KAAK0vB,sBAAuB,IAGhClC,GAAA3tB,UAAAswB,qBAAA,SAAqBjQ,GACnBlgB,KAAKypB,0BAA2B,EAChCzpB,KAAKisB,SAAU/L,GAGjBsN,GAAA3tB,UAAAogB,6BAAA,WAEEjgB,KAAK8J,oBAAoBvD,sBAAwBvG,KAAKisB,SACtDjsB,KAAK8J,oBAAoBsF,UAAYpP,KAAKoP,UAC1CpP,KAAK8J,oBAAoBlD,SAAW,e,qBAhavCG,EAAAA,UAAS/F,KAAA,CAAC,CACTgG,SAAU,wBACVC,SAAA,00b,41DAZOM,G,MAFDmU,I,MAHClC,EAAAA,a,MAEA/M,G,MADA3G,G,MAGD8V,I,MAOC1a,K,oCAUNiG,EAAAA,Q,gBACAA,EAAAA,SA2ZHqmB,IAtUE,SAAAA,GACQ/jB,EACAyU,EACArI,EACArG,EACA1F,EACAqV,EACAje,GANAlB,KAAAyJ,oBAAAA,EACAzJ,KAAAke,wBAAAA,EACAle,KAAA6V,YAAAA,EACA7V,KAAAwP,mBAAAA,EACAxP,KAAA8J,oBAAAA,EACA9J,KAAAmf,0BAAAA,EACAnf,KAAAkB,kBAAAA,EApFRlB,KAAAkmB,mBAAkC,CAChCvJ,OAAQ,GAEV3c,KAAAunB,OAAiB,KACjBvnB,KAAA0H,aAAe1H,KAAKyJ,oBAAoBnB,uBAAsB,GAAO,EAAO,IAE5EtI,KAAAme,cAAiC,GAGjCne,KAAA0vB,sBAAiC,EAIjC1vB,KAAAmX,yBAAmC,EACnCnX,KAAAypB,0BAAoC,EACpCzpB,KAAA8uB,wBAAkC,KAClC9uB,KAAAiP,eAAyB,KACzBjP,KAAA4kB,iBAA2B,EAE3B5kB,KAAAgvB,uBAAiC,EACjChvB,KAAAivB,4BAAsC,EACtCjvB,KAAAkvB,uBAAiC,EACjClvB,KAAAmvB,yBAAmC,EACnCnvB,KAAAovB,2BAAqC,EACrCpvB,KAAAqvB,2BAAqC,EACrCrvB,KAAAsvB,iBAA2B,EAC3BtvB,KAAAuvB,mBAA6B,EAC7BvvB,KAAA2nB,aAAuB,KACvB3nB,KAAA0nB,mBAA6B,KAC7B1nB,KAAAyuB,cAAwB,KACxBzuB,KAAA0uB,mBAA6B,KAC7B1uB,KAAAstB,SAAmB,KAEnBttB,KAAAic,WAAqB,KACrBjc,KAAAge,sBAAgC,EAChChe,KAAAoB,eAAuC,GACvCpB,KAAAkuB,eAA2B,GAE3BluB,KAAAuuB,cAAwB,KAExBvuB,KAAAowB,WAA0D,CACxDC,YAAa,CACXC,UAAW,iGACXC,SAAU,6BACVC,aAAc,uBACdC,eAAgB,SAElBC,UAAW,CACTC,YAAa,4CACbJ,SAAU,6BACVK,MAAO,UAGX5wB,KAAA6wB,gBAAkB,CAChBR,YAAa,CACXS,YAAa,qCACbC,SAAU,uCACVC,OAAQ,+BACRJ,MAAO,SAETF,UAAW,CACTO,SAAU,8FACVC,SAAU,wGACVN,MAAO,UAIX5wB,KAAAmxB,OAAS,CACPnZ,OAAQ,CACNoZ,UAAW,oBACXC,WAAY,cACZC,cAAe,iBACfV,MAAO,UCrGb,IAAAW,GASE,SAAY5a,EAAyBhH,EAAWiN,EAAoB4U,EAAuBzvB,GACzF/B,KAAK2W,gBAAkBA,EACvB3W,KAAK2P,IAAMA,EACX3P,KAAK4c,WAAaA,EAClB5c,KAAKwxB,cAAgBA,EACrBxxB,KAAKujB,UAAYxhB,GChBrB0vB,GAIE,SAAY7U,EAAoB4U,GAC9BxxB,KAAK4c,WAAaA,EAClB5c,KAAKwxB,cAAgBA,GCNzBE,GAII,SAAY7L,EAA4B8L,GACtC3xB,KAAK6lB,kBAAmBA,EACxB7lB,KAAK2xB,cAAgBA,GCN3BC,GAGI,SAAYC,GACV7xB,KAAK6xB,mBAAoBA,GCJ/BC,IAuHEA,GAAAjyB,UAAAqG,SAAA,WAAA,IAAA0D,EAAA5J,KACEA,KAAK+xB,WAAU,4BACf/xB,KAAKgyB,SAAW,uDAChBhyB,KAAKiyB,SAAW,qCACW,KAAxBjyB,KAAKkyB,gBAAyBlyB,KAAKkyB,iBAAmBnqB,YACvD/H,KAAKuP,WAAa,IAEjBvP,KAAKwS,UAELxS,KAAK2P,MACR3P,KAAK2c,OAAU3c,KAAK2P,IAAIwiB,OAASnyB,KAAK2P,IAAI8M,mBAEtCzc,KAAKmS,UACPnS,KAAKoyB,iBAAmBpyB,KAAKmS,QACF,YAAxBnS,KAAKmS,QAAQrK,SACd9H,KAAKqyB,kBAAmB,IAG5BryB,KAAKsyB,OAAStyB,KAAK8J,oBAAoBoF,gBACvClP,KAAK2jB,mBAAqB3jB,KAAK8J,oBAAoBrD,aACnDzG,KAAKuyB,cAAgBvyB,KAAK6V,YAAYC,MAAM,CAC1C0c,cAAe,IAAIxc,EAAAA,YAAY,GAC7BC,EAAAA,WAAWC,QAAQ,CACnBD,EAAAA,WAAWE,SACXF,EAAAA,WAAWO,QAAQ,IAAIxW,KAAKgyB,SAAQ,MAAMhyB,KAAKiyB,SAAQ,QAGzDtV,OAAQ,IAAI3G,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CAC7CD,EAAAA,WAAWE,SACXF,EAAAA,WAAWO,QAAQ,6BAErBic,aAAc,IAAIzc,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CAACD,EAAAA,WAAWE,YACjEuc,eAAgB,IAAI1c,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CAACD,EAAAA,WAAWE,YACnE6B,OAAQ,IAAIhC,EAAAA,cAEOhW,KAAKuyB,cAAc5a,SACT,eAAE+S,SAAS,4BAA6B,CAACiI,UAAU,IAEvD,KAAxB3yB,KAAKkyB,iBACRlyB,KAAKuP,WAAa,QAGS,gBAAxBvP,KAAKkyB,gBACNlyB,KAAKka,cAAcxF,mBAAmBzK,UAAS,SAC7C2oB,GACEhpB,EAAKgpB,cAAgBA,EAAc1iB,OAAM,SAAE2B,GAAS,OAAuB,IAAvBA,EAAKghB,gBACzDjpB,EAAKgpB,cAAgBhpB,EAAKgpB,cAAc1iB,OAAM,SAAE2B,GAAS,MAAc,4BAAdA,EAAKmU,OAC9Dpc,EAAK5D,GAAGC,gBACR2D,EAAKkpB,oBAAsBF,EAAc1iB,OAAM,SAAE2B,GAAS,OAAuB,IAAvBA,EAAKghB,gBAC/DjpB,EAAKkpB,oBAAoBC,KAAI,SAAE3S,EAAGC,GAAM,OAAAD,EAAE7S,WAAWylB,cAAc3S,KACnEzW,EAAK5D,GAAGC,kBAIa,6BAAxBjG,KAAKkyB,gBAAiDlyB,KAAK4W,uBAC5D5W,KAAKuP,WAAa,6BAKtBuiB,GAAAjyB,UAAAmS,aAAA,WACEhS,KAAKizB,mBAAmB,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,GAAQ,O,IAC9DC,EAAelzB,KAAKuyB,cAAc5a,SACtCwb,EAAyBnzB,KAAK2P,IAAI8M,kBAAoByW,EAAevW,OAAO9R,MAC5E7K,KAAKuyB,cAAc5a,SAAuB,aAAEyb,UAAU,MACtDpzB,KAAKuyB,cAAc5a,SAAyB,eAAEyb,UAAU,MACtDpzB,KAAKuyB,cAAcza,OAAS9X,KAAKuyB,cAAcxa,OAASob,EAC1DnzB,KAAKuP,WAAa,gBAG0B,IAAzC2jB,EAA8B,cAAEroB,OACjC7K,KAAKizB,mBAAmB,EAAC,GAAM,GAAO,GAAO,GAAO,GAAO,GAAQ,iBAEzB,IAAzCC,EAA8B,cAAEroB,OAAeqoB,EAA8B,cAAE9a,SAChFpY,KAAKizB,mBAAmB,EAAC,GAAO,GAAM,GAAO,GAAO,GAAO,GAAQ,iBAEhC,IAAlCC,EAAuB,OAAEroB,OAC1B7K,KAAKizB,mBAAmB,EAAC,GAAO,GAAO,GAAM,GAAO,GAAO,GAAQ,UAEhC,IAAlCC,EAAuB,OAAEroB,OAAeqoB,EAAuB,OAAE9a,SAClEpY,KAAKizB,mBAAmB,EAAC,GAAO,GAAM,GAAO,GAAM,GAAO,GAAQ,UAEjEC,EAAevW,OAAO5E,QAAUob,GACjCnzB,KAAKizB,mBAAmB,EAAC,GAAO,GAAO,GAAO,GAAO,GAAM,GAAQ,YAKzEnB,GAAAjyB,UAAAwzB,iBAAA,WAAA,IAAAzpB,EAAA5J,KACEA,KAAKklB,2BAA4B,E,IAC3BoO,EAAetzB,KAAKuyB,cAAc5a,SAASgF,OAAO9R,MACvD0oB,EAAkBvzB,KAAK2P,IAAIgD,WAAa2gB,EACxCnO,EAAc,IAAIoM,GAClBvxB,KAAKkC,cAAelC,KAAK2P,IAAK4jB,EAAiBvzB,KAAKuyB,cAAc5a,SAAS6a,cAAc3nB,MAAO7K,KAAK+B,UACtG/B,KAAKwP,mBAAmB3B,+BAA+BsgB,mBAAmBnuB,KAAKiO,iBAAiBulB,OAAQxzB,KAAK2P,IAAI8jB,GAAItO,GAAalb,UAAS,SACzIgO,GACMjQ,KAAKC,MAAMgQ,GAAUoK,UACnBqR,EAAQ9pB,EAAKwF,UAAY,oBAAsB,qBACjDskB,GAAS,aAAa9pB,EAAK7H,SAC3B2xB,GAAS9pB,EAAKgU,eAAiB,yBAA2B,0BAC1D8V,GAAS9pB,EAAKkU,eAAiB,yBAA2B,0BACxDlU,EAAKE,oBAAoBrD,cAC3BmD,EAAKwP,OAAOua,mBAAmBC,iBAAgB,WAAS,OAAA,GACxDhqB,EAAKwP,OAAOya,oBAAsB,SAClCjqB,EAAKwP,OAAOiI,cAAc,oBAAoBzX,EAAK1H,cAAa,oCAAoC0H,EAAK0oB,OAAM,oBAAoB1oB,EAAKqE,gBAAe,QAAQrE,EAAKE,oBAAoBrD,aAAeitB,IAEvM9pB,EAAKif,2BAIV,SACAlhB,GACCiC,EAAKlC,aAAeC,EACpBiC,EAAKsb,2BAA4B,KAKvC4M,GAAAjyB,UAAAozB,mBAAA,SAAmBhL,EAAKlP,GACV,QAARA,GACF/Y,KAAK8zB,qBAAuB7L,EAAI,GAChCjoB,KAAK+zB,sBAAwB9L,EAAI,GACjCjoB,KAAKg0B,cAAgB/L,EAAI,GACzBjoB,KAAKi0B,eAAiBhM,EAAI,GAC1BjoB,KAAKk0B,4BAA8BjM,EAAI,GACvCjoB,KAAKgX,cAAgBiR,EAAI,IACT,kBAARlP,GAAmC,QAARA,GACnC/Y,KAAK8zB,qBAAuB7L,EAAI,GAChCjoB,KAAK+zB,sBAAwB9L,EAAI,IAChB,WAARlP,GAA4B,QAARA,GAC7B/Y,KAAKg0B,cAAgB/L,EAAI,GACzBjoB,KAAKi0B,eAAiBhM,EAAI,GAC1BjoB,KAAKk0B,4BAA8BjM,EAAI,IACtB,WAARlP,GAA4B,QAARA,IAC7B/Y,KAAKgX,cAAgBiR,EAAI,KAK7B6J,GAAAjyB,UAAAs0B,iBAAA,WACEn0B,KAAK0H,cAAe,EACpB1H,KAAKuP,WAAa,GAClBvP,KAAKqS,mBAAoB,EACzBrS,KAAKizB,mBAAmB,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,GAAQ,O,IAC9DC,EAAelzB,KAAKuyB,cAAc5a,SAEtC3X,KAAKuyB,cAAc5a,SAAuB,aAAEyb,UAAU,MACtDpzB,KAAKuyB,cAAc5a,SAAyB,eAAEyb,UAAU,MACxDpzB,KAAKuyB,cAAc5a,SAAiB,OAAEyb,UAAU,MAC9CpzB,KAAKuyB,cAAcza,OAAS9X,KAAKuyB,cAAcxa,OACjD/X,KAAKkyB,eAAiB,GACtBlyB,KAAKuP,WAAa,6BAG0B,IAAzC2jB,EAA8B,cAAEroB,OACjC7K,KAAKizB,mBAAmB,EAAC,GAAM,GAAO,GAAO,GAAO,GAAQ,iBAElB,IAAzCC,EAA8B,cAAEroB,OAAeqoB,EAA8B,cAAE9a,SAChFpY,KAAKizB,mBAAmB,EAAC,GAAO,GAAM,GAAO,GAAO,GAAQ,iBAEzB,IAAlCC,EAAuB,OAAEroB,OAC1B7K,KAAKizB,mBAAmB,EAAC,GAAO,GAAO,GAAM,GAAO,GAAQ,UAEzB,IAAlCC,EAAuB,OAAEroB,OAAeqoB,EAAuB,OAAE9a,SAClEpY,KAAKizB,mBAAmB,EAAC,GAAO,GAAM,GAAO,GAAM,GAAQ,UAExB,IAAlCC,EAAuB,OAAEroB,OAC1B7K,KAAKizB,mBAAmB,EAAC,GAAO,GAAO,GAAO,GAAM,GAAO,GAAO,UAEjEC,EAAevW,OAAO5E,OACvB/X,KAAKizB,mBAAmB,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,YAOlEnB,GAAAjyB,UAAAu0B,8BAAA,WAEE,OADAp0B,KAAK0H,cAAe,EACjB1H,KAAKqS,mBACNrS,KAAK8J,oBAAoBuqB,iBAAkB,EAC3Cr0B,KAAKs0B,iBAAiB7I,YACtBzrB,KAAK8J,oBAAoByqB,wBAAyB,IAG/Cv0B,KAAK4W,sBACR5W,KAAK8J,oBAAoBuqB,iBAAkB,EAC3Cr0B,KAAKw0B,iBAAiB/I,KAAK,CAACzT,OAAQhY,KAAKy0B,qBAAsBzkB,KAAMhQ,KAAKyyB,oBAC1EzyB,KAAK8J,oBAAoByqB,wBAAyB,KAGpDv0B,KAAKuP,WAAa,GAClBvP,KAAK00B,cAAgB,MACrB10B,KAAKkyB,eAAiB,eACtBlyB,KAAKqS,mBAAoB,EACzBrS,KAAK0H,aAAe,QACjB1H,KAAKoS,0BACNpS,KAAK8J,oBAAoBlD,SAAW,mBAIxCkrB,GAAAjyB,UAAA80B,4BAAA,SAA4BxiB,GAI1B,IACI+gB,EACFC,EALFnzB,KAAK8J,oBAAoBuqB,iBAAkB,EAC3Cr0B,KAAK0H,aAAe,GACpB1H,KAAKizB,mBAAmB,EAAC,GAAO,GAAO,GAAO,GAAO,GAAQ,OACxDjzB,KAAKqS,kBAkB6B,KAFnC6gB,EAAelzB,KAAKuyB,cAAc5a,UAEV,OAAE9M,OAAeqoB,EAAuB,OAAEroB,MAAQ,EAC1E7K,KAAKizB,mBAAmB,EAAC,GAAO,GAAO,GAAM,GAAO,GAAQ,WAE1DjzB,KAAKkyB,eAAiB,GACtBlyB,KAAKuP,WAAa,0BAClBvP,KAAKs0B,iBAAiB7I,KAAKyH,EAAuB,OAAEroB,SAtBtDqoB,EAAelzB,KAAKuyB,cAAc5a,SACpCwb,EAAyBnzB,KAAK2P,IAAI8M,mBAAqByW,EAAevW,OAAO9R,MAC3E7K,KAAKuyB,cAAcza,QACgB,IAAlCob,EAAuB,OAAEroB,OAAeqoB,EAAuB,OAAEroB,MAAQ,EAC1E7K,KAAKizB,mBAAmB,EAAC,GAAO,GAAO,GAAM,GAAO,GAAQ,UAClB,IAAlCC,EAAuB,OAAEroB,OAAeqoB,EAAuB,OAAE9a,QACzEpY,KAAKizB,mBAAmB,EAAC,GAAO,GAAO,GAAO,GAAM,GAAQ,UACpDC,EAAevW,OAAO5E,QAAUob,EACxCnzB,KAAKizB,mBAAmB,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,WAE1DjzB,KAAKkyB,eAAiB,GACtBlyB,KAAKuP,WAAa,8BAkB1BuiB,GAAAjyB,UAAA+0B,8BAAA,WACE50B,KAAKuP,WAAa,GAClBvP,KAAKkyB,eAAiB,eACtBlyB,KAAKqS,mBAAoB,EACzBrS,KAAK0H,aAAe,IAGtBoqB,GAAAjyB,UAAAg1B,sBAAA,WAAA,IAIQ1P,EAJRvb,EAAA5J,KACMA,KAAKklB,4BACTllB,KAAK80B,gBAAiB,EACtB90B,KAAK+0B,aAAe/0B,KAAKuyB,cAAc5a,SAASgF,OAAO9R,MACjDsa,EAAc,IAAIsM,GAAyBzxB,KAAK+0B,aAAa/0B,KAAKuyB,cAAc5a,SAAS6a,cAAc3nB,OAC7G7K,KAAKwP,mBAAmBX,oCAAoCsf,mBAAmBnuB,KAAKiO,iBAAiBulB,OAAQxzB,KAAK2P,IAAI8jB,GAAItO,GAAalb,UAAS,SAC9IgO,GACMjQ,KAAKC,MAAMgQ,KACbrO,EAAKorB,oBAAqB,EAC1BprB,EAAKsoB,eAAkB,GACvBtoB,EAAK2F,WAAa,iCAClB3F,EAAKioB,mBAAoB7pB,KAAKC,MAAMgQ,GAAUgd,sBAEjD,SACAttB,GACCiC,EAAKlC,aAAeC,EACpBiC,EAAKsb,2BAA4B,EACjCtb,EAAK5D,GAAGC,oBAMd6rB,GAAAjyB,UAAAq1B,cAAA,WAAA,IAAAtrB,EAAA5J,KACEA,KAAK0H,aAAe,GACpB1H,KAAKklB,2BAA4B,EAC7BllB,KAAKqS,oBACPrS,KAAK80B,gBAAiB,GAEpB90B,KAAK6xB,qBAAuB9pB,WAAyC,KAA5B/H,KAAK6xB,qBAChD7xB,KAAK6xB,mBAAqB7xB,KAAKwS,UAAUyiB,qB,IAErC9P,EAAc,IAAIyM,GAA8B5xB,KAAK6xB,oBAC3D7xB,KAAKwP,mBAAmBV,yBAAyBqW,GAAalb,UAAS,SACnEgO,GACEjQ,KAAKC,MAAMgQ,KACTrO,EAAKsoB,eAAkB,GACvBtoB,EAAK2F,WAAa,yBAClB3F,EAAKiL,gBAAkB7M,KAAKC,MAAMgQ,GAAUzC,iBAC5C5L,EAAKurB,aAAentB,KAAKC,MAAMgQ,GAAUmd,gBAE9C,SACAztB,GACCiC,EAAKlC,aAAeC,EACpBiC,EAAKsb,2BAA4B,KAMvC4M,GAAAjyB,UAAAw1B,4BAAA,SAA4BljB,GAC1BnS,KAAK8J,oBAAoBuqB,iBAAkB,EACA,SAAxCr0B,KAAK8J,oBAAoBpD,aAC1B1G,KAAK4W,sBAAuB,GAE9B5W,KAAK0H,aAAe,GACpB1H,KAAKyyB,cAAqE,OAAtDzyB,KAAKuyB,cAAc5a,SAAuB,aAAE9M,MAAiB7K,KAAKuyB,cAAc5a,SAAyB,eAAU3X,KAAKuyB,cAAc5a,SAAuB,cAAlD9M,MAC3H7K,KAAKyyB,cAAsC,8BAAtBzyB,KAAKyyB,cAEpBzyB,KAAKy0B,qBAAqBrkB,SAAS,UAA4D,IAA/CpQ,KAAKuyB,cAAc5a,SAAiB,OAAE9M,OAA8D,MAA/C7K,KAAKuyB,cAAc5a,SAAiB,OAAE9M,MAE1I7K,KAAKy0B,qBAAqBrkB,SAAS,UAA4D,KAAhDpQ,KAAKuyB,cAAc5a,SAAiB,OAAE9M,OAC9F7K,KAAKs1B,gBAAiB,EACtBt1B,KAAKyyB,cAAiB,IAAMzyB,KAAKuyB,cAAc5a,SAAiB,OAAE9M,MAClE7K,KAAKu1B,oBAAsBv1B,KAAKy0B,qBAAuB,IAAMz0B,KAAKuyB,cAAc5a,SAAiB,OAAE9M,MAC9F7K,KAAK4W,qBACR5W,KAAKw0B,iBAAiB/I,KAAK,CAACzT,OAAQhY,KAAKu1B,oBAAqBvlB,KAAMhQ,KAAKyyB,gBAEzEzyB,KAAKkyB,eAAiB,GACtBlyB,KAAKuP,WAAa,0BAIpBvP,KAAKu1B,oBAAsBv1B,KAAKy0B,qBAC3Bz0B,KAAK4W,sBACR5W,KAAK8J,oBAAoByqB,wBAAyB,EAClDv0B,KAAKw0B,iBAAiB/I,KAAK,CAACzT,OAAQhY,KAAKy0B,qBAAsBzkB,KAAMhQ,KAAKyyB,iBAE1EzyB,KAAKkyB,eAAiB,GACtBlyB,KAAKuP,WAAa,yBAnBlBvP,KAAKizB,mBAAmB,EAAC,GAAO,GAAO,GAAO,GAAM,GAAO,GAAO,UAFpEjzB,KAAKs1B,gBAAiB,GA2B1BxD,GAAAjyB,UAAA21B,oBAAA,WACEx1B,KAAK0H,aAAe,GACpB1H,KAAKkyB,eAAiB,cACtBlyB,KAAKuP,WAAa,GAClBvP,KAAKqS,mBAAoB,EACzBrS,KAAK0H,cAAe,EACpB1H,KAAKs1B,gBAAiB,EACtBt1B,KAAKgX,eAAgB,GAGvB8a,GAAAjyB,UAAA41B,wBAAA,WAECz1B,KAAK0H,aAAe,GACnB1H,KAAKs1B,gBAAiB,EACtBt1B,KAAKgX,eAAgB,EACrBhX,KAAKkyB,eAAiB,cACtBlyB,KAAKuP,WAAa,GAClBvP,KAAKqS,mBAAoB,GAG3Byf,GAAAjyB,UAAA61B,mBAAA,WAAA,IAAA9rB,EAAA5J,KACEA,KAAKklB,2BAA4B,EACjCllB,KAAK0H,aAAe,GAChB1H,KAAKqS,oBACPrS,KAAK80B,gBAAiB,G,IAGlB3P,EAAc,IAAIuM,GAAyB1xB,KAAKmS,QAAQD,UAAUlS,KAAKyyB,cAC7EzyB,KAAKwP,mBAAmBZ,kBAAkBuW,GAAalb,UAAS,SAC9DgO,GACQjQ,KAAKC,MAAMgQ,KACbrO,EAAKsoB,eAAkB,GACvBtoB,EAAK2F,WAAa,yBAClB3F,EAAKiL,gBAAiB7M,KAAKC,MAAMgQ,GAAUzC,iBACxCxN,KAAKC,MAAMgQ,GAAUmd,gBACxBxrB,EAAKurB,aAAentB,KAAKC,MAAMgQ,GAAUmd,iBAG9C,SACAztB,GACCiC,EAAKlC,aAAeC,EACpBiC,EAAKsb,2BAA4B,EACjCtb,EAAK5D,GAAGC,mBAMd6rB,GAAAjyB,UAAA81B,mBAAA,WAAA,IAAA/rB,EAAA5J,KACEA,KAAKklB,2BAA4B,EACjCllB,KAAK0H,aAAe,GAChB1H,KAAKqS,oBACPrS,KAAK80B,gBAAiB,G,IAGlB3P,EAAc,IAAIuM,GAAyB1xB,KAAKmS,QAAQD,UAAU,iCACxElS,KAAKwP,mBAAmBZ,kBAAkBuW,GAAalb,UAAS,SAC9DgO,GACQjQ,KAAKC,MAAMgQ,KACbrO,EAAKsoB,eAAkB,GACvBtoB,EAAK2F,WAAa,8BAClB3F,EAAKiL,gBAAiB7M,KAAKC,MAAMgQ,GAAUzC,iBACxCxN,KAAKC,MAAMgQ,GAAUmd,gBACtBxrB,EAAKurB,aAAentB,KAAKC,MAAMgQ,GAAUmd,iBAGhD,SACAztB,GACCiC,EAAKlC,aAAeC,EACpBiC,EAAKsb,2BAA4B,KAIvC4M,GAAAjyB,UAAAowB,kBAAA,SAAkBC,EAAKrlB,GACrB+qB,aAAaC,QAAQ,UAAW3F,G,IAC1BgD,EAAelzB,KAAKuyB,cAAc5a,SACxCub,EAA+B,eAAExI,SAAS,4BAA6B,CAACiI,UAAU,IAClFO,EAAuB,OAAEvD,QACzB3vB,KAAK81B,yBAA0B,EAC/B91B,KAAK0H,cAAe,EACpB1H,KAAKgX,eAAgB,EACrBhX,KAAK+1B,gBAAiB,EACtB/1B,KAAKs1B,gBAAiB,EACtBt1B,KAAKy0B,qBAAuBvE,EACzBlwB,KAAKy0B,qBAAqBrkB,SAAS,WACpCpQ,KAAK+1B,gBAAiB,EACtB/1B,KAAKs1B,gBAAiB,EACtBt1B,KAAKyyB,aAAevC,IAIxB4B,GAAAjyB,UAAAirB,aAAA,SAAa9pB,G,IACLkyB,EAAelzB,KAAKuyB,cAAc5a,SACxCub,EAA6B,aAAEvD,QAC/BuD,EAAuB,OAAEvD,QACzB3vB,KAAK81B,yBAA0B,EAC/B91B,KAAK+1B,gBAAiB,EACtB/1B,KAAKs1B,gBAAiB,EACtBt1B,KAAKy0B,qBAAuBzzB,EAAK+pB,OAAO5f,QAAQnK,EAAK+pB,OAAO5f,QAAQ8f,eAAewI,GACnFzzB,KAAKg2B,aAAgB,GAAGh2B,KAAKy0B,qBAAqBxoB,MAAM,MAAM,GAAG5F,OAE9DrG,KAAKy0B,qBAAqBrkB,SAAS,WACpCpQ,KAAK+1B,gBAAiB,EACtB/1B,KAAKs1B,gBAAiB,EACtBt1B,KAAKyyB,aAAezxB,EAAK+pB,OAAO5f,QAAQnK,EAAK+pB,OAAO5f,QAAQ8f,eAAewI,KAM/E3B,GAAAjyB,UAAAo2B,uBAAA,SAAuBtkB,GAAvB,IAAA/H,EAAA5J,KACEA,KAAK0H,aAAc,GACnBiK,EAAMC,iBACF5R,KAAKwC,2BAA6BxC,KAAKoS,yBAC3CpS,KAAKuP,WAAa,kBAClBvP,KAAKkyB,eAAiB,IACVlyB,KAAK4W,sBACb5W,KAAK8J,oBAAoBuqB,iBAAkB,EAC3Cr0B,KAAKw0B,iBAAiB/I,KAAK,CAACzT,OAAQhY,KAAKy0B,qBAAsBzkB,KAAMhQ,KAAKyyB,eAC1EzyB,KAAK8J,oBAAoByqB,wBAAyB,IAEpDv0B,KAAK8J,oBAAoBb,cAAgBjJ,KAAKmS,QAAQjB,OACtDlR,KAAK8J,oBAAoBvD,sBAAwBvG,KAAK8J,oBAAoBvD,sBAC1EvG,KAAK8J,oBAAoBM,iBAAmBpK,KAAKmS,QAAQD,UACzDlS,KAAK8J,oBAAoBlD,SAAW,eACpC5G,KAAKkB,kBAAkBwC,YAAY1D,KAAK2D,UACxC3D,KAAKkB,kBAAkB2C,iBAAiB7D,KAAK8D,eAC7C9D,KAAKkB,kBAAkB8C,gBAAgBhE,KAAKiE,cAC5CjE,KAAKkB,kBAAkBqC,eAAevD,KAAKwD,aAC3CxD,KAAKkB,kBAAkBiD,cAAcnE,KAAKoE,YAC1CpE,KAAKkB,kBAAkB0D,sBAAsB5E,KAAK6E,oBAClD7E,KAAKkB,kBAAkBoD,uBAAuBtE,KAAKuE,qBACnDvE,KAAKkB,kBAAkBuD,kBAAkBzE,KAAK0E,gBAC9C1E,KAAKuP,WAAa,eAClBvP,KAAKk2B,gBAAkBl2B,KAAKwD,YAC5BxD,KAAKm2B,aAAen2B,KAAK2D,SACtB3D,KAAKoG,oBAAsB2B,WAC5B/H,KAAKkB,kBAAkBoC,mBAAmB2G,UAAS,SAAE4H,GAAS,OAAAjI,EAAKxD,kBAAoByL,IAEzF7R,KAAKkyB,eAAiB,KAmE1BJ,GAAAjyB,UAAAgpB,uBAAA,WACE7oB,KAAKkB,kBAAkB2B,kBAAkB,oBACzC7C,KAAK0H,aAAe,GACpB1H,KAAK8J,oBAAoBlD,SAAW,oBACpC5G,KAAK8J,oBAAoBnD,KAAO,oBAChC3G,KAAK8J,oBAAoBuF,UAAYrP,KAAKoP,UAC1CpP,KAAK8J,oBAAoB+T,eAAiB7d,KAAK4d,eAC/C5d,KAAK8J,oBAAoBiU,eAAiB/d,KAAK8d,eAC/C9d,KAAK8J,oBAAoBtH,0BAA2B,EACpDxC,KAAK+R,iB,IACDgT,EAAU/kB,KAAK2jB,mBAAqB,QAAQ3jB,KAAK2jB,mBAAuB,GAC3EoB,GAAW/kB,KAAK8J,oBAAoBgI,WAAa,yBAA2B,0BAC5EiT,GAAW/kB,KAAK8J,oBAAoBuF,UAAY,oBAAsB,qBACtE0V,GAAW/kB,KAAKge,qBAAuB,wBAA0B,yBACjE+G,GAAW,aAAa/kB,KAAK+B,SAC7BgjB,GAAW/kB,KAAK8J,oBAAoB+T,eAAiB,yBAA2B,0BAChFkH,GAAW/kB,KAAK8J,oBAAoBiU,eAAiB,yBAA2B,0BAC3E7S,EAAM,oBAAoBlL,KAAKkC,cAAa,uCAAuClC,KAAK8J,oBAAoBhD,YAAW,mBAAmB9G,KAAKsyB,OAASvN,EAC9J/kB,KAAKoZ,OAAOua,mBAAmBC,iBAAgB,WAAS,OAAA,GACxD5zB,KAAKoZ,OAAOya,oBAAsB,SAClC7zB,KAAKoZ,OAAOiI,cAAcnW,IAG5B4mB,GAAAjyB,UAAAu2B,uCAAA,SAAuCzkB,GACrCA,EAAMC,iBACD5R,KAAK8J,oBAAoBtH,yBA0B1BxC,KAAK8J,oBAAoBpD,WAC3B1G,KAAK8J,oBAAoBlD,SAAW,eAGlC5G,KAAK8J,oBAAoBhD,cAAgBiB,WAAa/H,KAAK8J,oBAAoBwH,iBAAmBvJ,YACpG/H,KAAK8J,oBAAoBwH,eAAiB,SAE5CtR,KAAKkB,kBAAkBqB,6BAA4B,GACnDvC,KAAKkB,kBAAkB8B,mBAAmB,CAACkO,OAAQ,GAAGgM,wBAAyB,GAAIhL,UAAU,KAC7FlS,KAAKkB,kBAAkB2B,kBAAkB,oBACzC7C,KAAK0H,aAAe,GACpB1H,KAAK8J,oBAAoBlD,SAAW,oBACpC5G,KAAK8J,oBAAoBuF,UAAYrP,KAAKoP,UAC1CpP,KAAK8J,oBAAoB+T,eAAiB7d,KAAK4d,eAC/C5d,KAAK8J,oBAAoBiU,eAAiB/d,KAAK8d,eAC/C9d,KAAK8J,oBAAoBtH,0BAA2B,EACpDxC,KAAK8J,oBAAoBgI,YAAa,EAClCiT,EAAU/kB,KAAK2jB,mBAAqB,QAAQ3jB,KAAK2jB,mBAAuB,GAC3EoB,GAAW/kB,KAAK8J,oBAAoBgI,WAAa,yBAA2B,0BAC5EiT,GAAW/kB,KAAK8J,oBAAoBuF,UAAY,oBAAsB,qBACtE0V,GAAW/kB,KAAKge,qBAAuB,wBAA0B,yBACjE+G,GAAW,aAAa/kB,KAAK+B,SAC7BgjB,GAAW/kB,KAAK8J,oBAAoB+T,eAAiB,yBAA2B,0BAChFkH,GAAW/kB,KAAK8J,oBAAoBiU,eAAiB,yBAA2B,0BAC7E/d,KAAKoS,0BACN2S,GAAW/kB,KAAK8J,oBAAoBsI,yBAS/BlH,EANHlL,KAAK8J,oBAAoBwH,eAMjB,oBAAoBtR,KAAKkC,cAAa,mBAAmBlC,KAAKsyB,OAASvN,EALtE,oBAAoB/kB,KAAKkC,cAAa,uCAAuClC,KAAK8J,oBAAoBhD,YAAW,mBAAmB9G,KAAKsyB,OAASvN,EAM9J/kB,KAAKoZ,OAAOua,mBAAmBC,iBAAgB,WAAS,OAAA,GACxD5zB,KAAKoZ,OAAOya,oBAAsB,SAClC7zB,KAAKoZ,OAAOiI,cAAcnW,KA9D1BlL,KAAKkB,kBAAkB2B,kBAAkB,oBACzC7C,KAAKkB,kBAAkBqB,6BAA4B,GACnDvC,KAAK8J,oBAAoBnD,KAAM,oBAC/B3G,KAAK8J,oBAAoBlD,SAAW,oBACpC5G,KAAK8J,oBAAoBgI,YAAa,EACtC9R,KAAK8J,oBAAoB6O,oBAAqB,IA+DlDmZ,GAAAjyB,UAAAkS,eAAA,WACE/R,KAAKkB,kBAAkBwC,YAAY,MACnC1D,KAAKkB,kBAAkB2C,iBAAiB,MACxC7D,KAAKkB,kBAAkB8C,gBAAgB,MACvChE,KAAKkB,kBAAkBqC,eAAe,MACtCvD,KAAKkB,kBAAkBiD,cAAc,MACrCnE,KAAKkB,kBAAkB0D,sBAAsB,MAC7C5E,KAAKkB,kBAAkBoD,uBAAuB,MAC9CtE,KAAKkB,kBAAkBuD,kBAAkB,OAI3CqtB,GAAAjyB,UAAAw2B,qBAAA,SAAqBlT,GACnB,OAAGA,EAAS5V,WAAW6C,SAAS,KACvB+S,EAEDA,EAAS5V,WAAW+oB,OAAO,Q,qBAruBtCvvB,EAAAA,UAAS/F,KAAA,CAAC,CACTgG,SAAU,sBACVC,SAAA,gl3B,8tDAtBOuS,EAAAA,a,MAEDC,EAAAA,Q,MAEChN,G,MACA3G,G,MAEA2O,G,MAODvN,EAAAA,mB,MAEChG,K,8BAUNiG,EAAAA,Q,eACAA,EAAAA,Q,iBACAA,EAAAA,Q,qBACAA,EAAAA,Q,gBACAA,EAAAA,Q,sBACAA,EAAAA,Q,uBACAA,EAAAA,Q,iBACAA,EAAAA,Q,yBACAA,EAAAA,Q,sBACAA,EAAAA,Q,sBACAA,EAAAA,Q,4BACAA,EAAAA,Q,kBACAA,EAAAA,Q,4BACAA,EAAAA,Q,+BACAA,EAAAA,Q,gCACAA,EAAAA,Q,iBACAA,EAAAA,Q,yBACAA,EAAAA,MAAKnG,KAAA,CAAC,uB,mBACNmG,EAAAA,MAAKnG,KAAA,CAAC,iB,gBACNmG,EAAAA,MAAKnG,KAAA,CAAC,c,mBACNmG,EAAAA,MAAKnG,KAAA,CAAC,iB,kBACNmG,EAAAA,MAAKnG,KAAA,CAAC,gB,oBACNmG,EAAAA,MAAKnG,KAAA,CAAC,kB,qBACNmG,EAAAA,MAAKnG,KAAA,CAAC,mB,mBACNmG,EAAAA,MAAKnG,KAAA,CAAC,iB,sBACNmG,EAAAA,MAAKnG,KAAA,CAAC,oB,0BACNmG,EAAAA,MAAKnG,KAAA,CAAC,wB,2BACNmG,EAAAA,MAAKnG,KAAA,CAAC,yB,uBACN+rB,EAAAA,S,wBAEAA,EAAAA,S,wBACAA,EAAAA,UAmsBH+E,IA9oBE,SAAAA,GAAoBjc,EACVuD,EACA5J,EACA1F,EACAoQ,EACAlU,EACA9E,GANUlB,KAAA6V,YAAAA,EACV7V,KAAAoZ,OAAAA,EACApZ,KAAAwP,mBAAAA,EACAxP,KAAA8J,oBAAAA,EACA9J,KAAAka,cAAAA,EACAla,KAAAgG,GAAAA,EACAhG,KAAAkB,kBAAAA,EA9DAlB,KAAAglB,gBAAsC,IAAIgI,EAAAA,aAE1ChtB,KAAAw0B,iBAAmB,IAAIxH,EAAAA,aACvBhtB,KAAAs0B,iBAAyC,IAAItH,EAAAA,aAEvDhtB,KAAAmxB,OAAS,CACPnZ,OAAQ,CACNoZ,UAAW,oBACXC,WAAY,cACZC,cAAe,iBACfV,MAAO,UAKX5wB,KAAAu2B,WAAY,EACZv2B,KAAAuP,WAAa,OACbvP,KAAA0H,aAAe,KACf1H,KAAAsyB,OAAiB,KACjBtyB,KAAAklB,2BAAqC,EAErCllB,KAAA00B,cAAgB,MAEhB10B,KAAA80B,gBAA0B,EAC1B90B,KAAA6xB,mBAA6B,GAG7B7xB,KAAAivB,4BAAsC,EAMtCjvB,KAAA8zB,sBAAgC,EAChC9zB,KAAA+zB,uBAAiC,EACjC/zB,KAAAg0B,eAAyB,EACzBh0B,KAAAgX,eAAyB,EACzBhX,KAAAi0B,gBAA0B,EAC1Bj0B,KAAAk0B,6BAAuC,EACvCl0B,KAAAs1B,gBAAyB,EACzBt1B,KAAAqyB,kBAA4B,EAC5BryB,KAAAg1B,oBAA8B,EAG9Bh1B,KAAA8yB,oBAA6B,GCnG/B,IAAA0D,IAMEA,GAAA32B,UAAA42B,UAAA,SAAU5rB,EAAY7J,G,IACdwV,EAAU,gDAChB,OAAK3L,EAAM6rB,MAAMlgB,GACR3L,EAAMoC,QAAQuJ,EAAQ,eAExB3L,G,qBAVV8rB,EAAAA,KAAI31B,KAAA,CAAC,CACJglB,KAAM,iB,uCAWRwQ,IARE,SAAAA,MCLF,IAAAI,IAMIA,GAAA/2B,UAAA42B,UAAA,SAAUlsB,EAAQvJ,GACd,OAAOuJ,GAAKA,EAAE,GAAGmS,cAAgBnS,EAAEssB,MAAM,IAAM,I,qBANtDF,EAAAA,KAAI31B,KAAA,CAAC,CACFglB,KAAM,iB,uCAOV4Q,IAJI,SAAAA,MCLJ,IAAAE,IAMEA,GAAAj3B,UAAA42B,UAAA,SAAU3Z,G,IAECoT,EADL6G,EAAO,GACX,IAAS7G,KAAOpT,EACVA,EAAM+N,eAAeqF,IACvB6G,EAAK9mB,KAAK,CAAEigB,IAAKA,EAAKrlB,MAAOiS,EAAMoT,KAGvC,OAAO6G,G,qBAZVJ,EAAAA,KAAI31B,KAAA,CAAC,CACJglB,KAAM,e,uCAaR8Q,IAVE,SAAAA,MCLF,IAAAE,IAMEA,GAAAn3B,UAAA42B,UAAA,SAAU5rB,GACR,OAAO7K,KAAKi3B,UAAUC,wBAAwBrsB,I,qBAJjD8rB,EAAAA,KAAI31B,KAAA,CAAC,CAAEglB,KAAM,mB,0CAFLmR,EAAAA,gBAQTH,IAJE,SAAAA,GAAoBC,GAAAj3B,KAAAi3B,UAAAA,E,ICItBG,IAKSA,GAAAv3B,UAAAw3B,kBAAP,SAAyBC,EAAaC,GAGpChc,QAAQC,IAAI+b,G,IAKXC,GADAA,EAFsC,OAApCD,EAAcb,MAAM,cACtBc,EAAaC,EAAAA,MAAWC,cAAcJ,EAAK,CAACK,OAAO,CAAC,YAAY,oBAAoB,UAAU,WAAW,kBAAkB,oBAAoB,cAAc,YAAY,iBAAiB,YAC7K33B,KAAK43B,yBAAyBJ,IAEK,OAAtCD,EAAcb,MAAM,gBAC9Bc,EAAaC,EAAAA,MAAWC,cAAcJ,EAAK,CAACK,OAAO,CAAC,kBAAkB,oBAAoB,gBAAgB,UAAU,cAAc,YAAY,oBAAoB,UAAU,WAAW,iBAAiB,YAC3L33B,KAAK63B,4BAA4BL,IAEW,OAAhDD,EAAcb,MAAM,0BAC5Bc,EAAaC,EAAAA,MAAWC,cAAcJ,EAAK,CAACK,OAAO,CAAC,kBAAkB,oBAAoB,oBAAoB,mBAAmB,oBAAoB,0BAA0B,qBAAqB,oBAAoB,UAAU,WAAW,cAAc,YAAY,iBAAiB,YAC3Q33B,KAAK83B,qCAAqCN,IAEL,OAA1CD,EAAcb,MAAM,oBAC5Bc,EAAaC,EAAAA,MAAWC,cAAcJ,EAAK,CAACK,OAAO,CAAC,oBAAoB,gBAAgB,SAAS,eAAe,oBAAoB,iBAAiB,kBAAkB,aAAa,aAAa,uBAAuB,qBAAqB,oBAAoB,gBAAgB,iBACpQ33B,KAAK+3B,+BAA+BP,KAGjDA,EAAaC,EAAAA,MAAWC,cAAcJ,EAAK,CAACK,OAAO,CAAC,kBAAkB,oBAAoB,oBAAoB,UAAU,iBAAiB,qBAAsB,0BAA2B,iBAAkB,SAAU,cAAe,eACxN33B,KAAKg4B,0BAA0BR,IAfjCx3B,KAAKi4B,eAAeT,EAAUF,IAmBrCY,EAAmBC,EAAAA,MADd,CAAEC,OAAQ,CAAEvmB,KAAQ2lB,GAAaa,WAAY,CAAC,SACX,CAAEC,SAAU,OAAQxvB,KAAM,UACxE9I,KAAKu4B,gBAAgBL,EAAaX,IAI9BH,GAAAv3B,UAAAo4B,eAAR,SAAwBT,EAA0BF,GAI9C,I,IAHEkB,EAAkB,GAClBC,EAAW,GACX5L,EAAG,OACIliB,EAAI,EAAGA,EAAI2sB,EAAKjxB,OAAQsE,IAG/B,I,IAFIE,EAAQgiB,EAAI6L,OAAOpB,EAAK3sB,IACxBulB,EAAMrD,EAAIkK,KAAKO,EAAK3sB,IACfguB,EAAI,EAAGA,EAAI9tB,EAAMxE,OAAQsyB,IAChB,OAAb9tB,EAAM8tB,KACP9tB,EAAM8tB,GAAK,IAEbH,EAAgBG,GACdzI,EAAIyI,GAAGtyB,QAAUwE,EAAM8tB,GAAGtyB,OACtB6pB,EAAIyI,GAAGtyB,OAAO,EACdwE,EAAM8tB,GAAGtyB,OAAO,EACdwE,EAAM8tB,GAAGtyB,SAAW0B,YACtBywB,EAAgBG,GAAMzI,EAAIyI,GAAGtyB,OAAO,GAE5CoyB,EAASxoB,KAAK,CAAC2oB,OAAUJ,EAAgBG,KAI3C,OADAnB,EAAU,SAAWiB,EACdjB,GAIHJ,GAAAv3B,UAAA+3B,yBAAR,SAAkCJ,GAWhC,OAVAA,EAAUqB,GAAGC,EAAI,YACjBtB,EAAUuB,GAAGD,EAAI,oBACjBtB,EAAUwB,GAAGF,EAAI,eACjBtB,EAAUyB,GAAGH,EAAI,gBACjBtB,EAAU0B,GAAGJ,EAAI,kBACjBtB,EAAU2B,GAAGL,EAAI,oBACjBtB,EAAU4B,GAAGN,EAAI,cACjBtB,EAAU6B,GAAGP,EAAI,YACjBtB,EAAU8B,GAAGR,EAAI,iBACjBtB,EAAU+B,GAAGT,EAAI,SACVtB,GAGDJ,GAAAv3B,UAAAg4B,4BAAR,SAAqCL,GAYnC,OAXAA,EAAUqB,GAAGC,EAAI,kBACjBtB,EAAUuB,GAAGD,EAAI,oBACjBtB,EAAUwB,GAAGF,EAAI,gBACjBtB,EAAUyB,GAAGH,EAAI,UACjBtB,EAAU0B,GAAGJ,EAAI,cACjBtB,EAAU2B,GAAGL,EAAI,YACjBtB,EAAU4B,GAAGN,EAAI,oBACjBtB,EAAU6B,GAAGP,EAAI,eACjBtB,EAAU8B,GAAGR,EAAI,gBACjBtB,EAAU+B,GAAGT,EAAI,iBACjBtB,EAAUgC,GAAGV,EAAI,SACVtB,GAGDJ,GAAAv3B,UAAAi4B,qCAAR,SAA8CN,GAe5C,OAdAA,EAAUqB,GAAGC,EAAI,kBACjBtB,EAAUuB,GAAGD,EAAI,oBACjBtB,EAAUwB,GAAGF,EAAI,oBACjBtB,EAAUyB,GAAGH,EAAI,mBACjBtB,EAAU0B,GAAGJ,EAAI,oBACjBtB,EAAU2B,GAAGL,EAAI,oBACjBtB,EAAU4B,GAAGN,EAAI,eACjBtB,EAAU6B,GAAGP,EAAI,oBACjBtB,EAAU8B,GAAGR,EAAI,eACjBtB,EAAU+B,GAAGT,EAAI,gBACjBtB,EAAUgC,GAAGV,EAAI,cACjBtB,EAAUiC,GAAGX,EAAI,YACjBtB,EAAUkC,GAAGZ,EAAI,iBACjBtB,EAAUmC,GAAGb,EAAI,SACVtB,GAGDJ,GAAAv3B,UAAAk4B,+BAAR,SAAwCP,GAetC,OAdAA,EAAUqB,GAAGC,EAAI,oBACjBtB,EAAUuB,GAAGD,EAAI,gBACjBtB,EAAUwB,GAAGF,EAAI,QACjBtB,EAAUyB,GAAGH,EAAI,eACjBtB,EAAU0B,GAAGJ,EAAI,oBACjBtB,EAAU2B,GAAGL,EAAI,iBACjBtB,EAAU4B,GAAGN,EAAI,kBACjBtB,EAAU6B,GAAGP,EAAI,aACjBtB,EAAU8B,GAAGR,EAAI,aACjBtB,EAAU+B,GAAGT,EAAI,uBACjBtB,EAAUgC,GAAGV,EAAI,qBACjBtB,EAAUiC,GAAGX,EAAI,mBACjBtB,EAAUkC,GAAGZ,EAAI,gBACjBtB,EAAUmC,GAAGb,EAAI,cACVtB,GAEDJ,GAAAv3B,UAAAm4B,0BAAR,SAAmCR,GAYjC,OAXAA,EAAUqB,GAAGC,EAAI,kBACjBtB,EAAUuB,GAAGD,EAAI,oBACjBtB,EAAUwB,GAAGF,EAAI,6BACjBtB,EAAUyB,GAAGH,EAAI,UACjBtB,EAAU0B,GAAGJ,EAAI,iBACjBtB,EAAU2B,GAAGL,EAAI,eACjBtB,EAAU4B,GAAGN,EAAI,gBACjBtB,EAAU6B,GAAGP,EAAI,iBACjBtB,EAAU8B,GAAGR,EAAI,SACjBtB,EAAU+B,GAAGT,EAAI,cACjBtB,EAAUgC,GAAGV,EAAI,eACVtB,GAGDJ,GAAAv3B,UAAA04B,gBAAR,SAAwBqB,EAAaC,GAC3BhoB,EAAa,IAAIioB,KAAK,CAACF,GAAS,CACpC9wB,KAnJa,oFAqJfixB,EAAAA,OAAiBloB,EAAMgoB,EApJH,U,qBAEvB94B,EAAAA,a,uCAoJDq2B,IAjJE,SAAAA,MCZF,IAAA4C,IAsCEA,GAAAn6B,UAAAqG,SAAA,WACElG,KAAKi6B,kBAIPD,GAAAn6B,UAAAq6B,SAAA,WACE,OAAO,IAAI7lB,MAAO8lB,cAAcluB,MAAM,KAAK,IAG9C+tB,GAAAn6B,UAAAu6B,oBAAA,WACAp6B,KAAKq6B,cAAcr6B,KAAKs6B,YAAYjxB,IAAI,kBAAkBwB,QAG1DmvB,GAAAn6B,UAAAw6B,cAAA,SAAcjsB,G,IACPmsB,EAAoBv6B,KAAKw6B,aAAax6B,KAAKs6B,YAAYjxB,IAAI,aAAawB,OAC5E4vB,EAAkBz6B,KAAKw6B,aAAax6B,KAAKs6B,YAAYjxB,IAAI,WAAWwB,OAChE6vB,EAAoH,GAAzF,IAASrmB,KAAKkmB,GAAkB,IAAYlmB,KAAKomB,KAAgB,MAC5FE,EAAqH,IAAzF,IAAStmB,KAAKkmB,GAAkB,IAAYlmB,KAAKomB,KAAgB,MAChG,IAAIpmB,KAAKkmB,GAAqB,IAAIlmB,KAAKomB,IAAwC,KAApBA,GAC5Dz6B,KAAKs6B,YAAYjxB,IAAI,aAAaqhB,SAAS,IAC3C1qB,KAAK46B,qBAAsB,EAC3B56B,KAAK66B,kBAAmB,EACxB76B,KAAK86B,2BAA4B,IACzB1sB,GAA4B,0BAAdA,GAAyCssB,GAC/D16B,KAAK46B,qBAAsB,EAC3B56B,KAAK66B,kBAAmB,GAEhBzsB,GAA4B,0BAAdA,GAAyCusB,GAC/D36B,KAAK46B,qBAAsB,EAC3B56B,KAAK66B,kBAAmB,IAGxB76B,KAAK66B,kBAAmB,EACxB76B,KAAK46B,qBAAsB,GAP3B56B,KAAK86B,2BAA4B,IAanCd,GAAAn6B,UAAAo6B,eAAA,WACEj6B,KAAKs6B,YAAct6B,KAAK6V,YAAYC,MAAM,CACxCilB,eAAgB,IAAI/kB,EAAAA,YAAY,IAChC3H,UAAW,IAAI2H,EAAAA,YAAY,IAC3B1H,QAAS,IAAI0H,EAAAA,YAAY,OAI/BgkB,GAAAn6B,UAAAm7B,eAAA,WAAA,IAAApxB,EAAA5J,KACEA,KAAKi7B,0BAA2B,E,IAC1BC,EAAqB,CAAC,CAACC,UAAU,GAAGC,kBAAkB,GAAGC,QAAQ,GAAGC,SAAS,GAAGC,gBAAgB,GAAGC,kBAAkB,GAAGlV,YAAY,GAAGmV,UAAU,GAAGzU,eAAe,GAAGrK,OAAO,KACjL+e,EAAwB,CAAC,CAACH,gBAAgB,GAAGC,kBAAkB,GAAGG,cAAc,GAAGC,QAAQ,GAAGtV,YAAY,GAAGmV,UAAU,GAAGL,kBAAkB,GAAGC,QAAQ,GAAGC,SAAS,GAAGtU,eAAe,GAAGrK,OAAO,KAC/Lkf,EAAsB,CAAC,CAACN,gBAAgB,GAAGC,kBAAkB,GAAGhrB,kBAAkB,GAAG4Y,iBAAiB,GAAG0S,kBAAkB,GAAGC,kBAAkB,GAAGC,aAAa,GAAGZ,kBAAkB,GAAGC,QAAQ,GAAGC,SAAS,GAAGhV,YAAY,GAAGmV,UAAU,GAAGzU,eAAe,GAAGrK,OAAO,GAAGsf,WAAW,KAClRC,EAAuB,CAAC,CAACX,gBAAgB,GAAGC,kBAAkB,GAAGW,kBAAkB,GAAGC,QAAQ,GAAGC,eAAe,GAAGC,mBAAmB,GAAGC,wBAAwB,GAAGC,eAAe,GAAIxkB,OAAO,GAAIqV,YAAY,GAAIE,UAAU,KAC5NkP,EAAqBz8B,KAAKs6B,YAAYjxB,IAAI,kBAAkBwB,MAC5D0vB,EAAoBv6B,KAAKw6B,aAAax6B,KAAKs6B,YAAYjxB,IAAI,aAAawB,OACxE4vB,EAAkBz6B,KAAKw6B,aAAax6B,KAAKs6B,YAAYjxB,IAAI,WAAWwB,OAE1C,0BAAvB4xB,GAAyE,0BAAvBA,EACnDz8B,KAAKwP,mBAAmBrB,uBAAuBsuB,EAAmBlC,EAAkBE,GAAiBxwB,UAAS,SAC5GgO,GACErO,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GAAO,EAAO,I,IAC3Ewb,EAAS9b,KAAKC,MAAMgQ,GACtBxH,EAAK,CAACoB,KAAMjI,EAAK8yB,gBAAgB5Y,IAMrC,GAL0B,IAAvBrT,EAAU,KAAEpK,QAAuC,0BAAvBo2B,EAC7BhsB,EAAIoB,KAAMgqB,EACqB,IAAvBprB,EAAU,KAAEpK,QAAuC,0BAAvBo2B,IACpChsB,EAAIoB,KAAMqqB,GAEe,EAAxBpY,EAAa,KAAEzd,OAChB,IAAK,IAAIsE,EAAE,EAAGA,EAAG8F,EAAU,KAAEpK,OAAQsE,IAAK,CACrC8F,EAAU,KAAE9F,GAAsB,oBAAM5C,YACzC0I,EAAU,KAAE9F,GAAY,QAAI8F,EAAU,KAAE9F,GAAsB,kBAAEgyB,OAAO,EAAE,IACzElsB,EAAU,KAAE9F,GAAa,SAAI8F,EAAU,KAAE9F,GAAsB,kBAAEgyB,OAAO,GAAG,KAE1ElsB,EAAU,KAAE9F,GAAW,SAAM5C,YAC9B0I,EAAU,KAAE9F,GAAW,OAAIf,EAAKgzB,oBAAoBnsB,EAAU,KAAE9F,GAAW,SAE1E8F,EAAU,KAAE9F,GAAY,UAAM5C,YAC/B0I,EAAU,KAAE9F,GAAY,QAAIf,EAAKgzB,oBAAoBnsB,EAAU,KAAE9F,GAAY,U,IAE3EkyB,EAAKpsB,EAAU,KAAE9F,GAAsB,kBACxCkyB,IAAO90B,YACR0I,EAAU,KAAE9F,GAAsB,kBAAS,WAALkyB,EAAiB,eAAe,iBAErEpsB,EAAU,KAAE9F,GAAmB,iBAAM5C,YACtC0I,EAAU,KAAE9F,GAAmB,eAAIf,EAAKgzB,oBAAoBnsB,EAAU,KAAE9F,GAAmB,iBAIjGf,EAAKqxB,0BAA2B,EAChCrxB,EAAKkzB,cAAczF,kBAAkB5mB,EAAU,KAAG7G,EAAKmzB,YAAYnzB,EAAK0wB,YAAYjxB,IAAI,kBAAkBwB,MAAO0vB,EAAmBE,KACrI,SACA9yB,GACCiC,EAAKqxB,0BAA2B,EAChCrxB,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GAAM,EAAO,MAGrD,0BAAvBm0B,EAERz8B,KAAKwP,mBAAmBjB,sBAAsBgsB,EAAkBE,GAAiBxwB,UAAS,SACxFgO,GACErO,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GAAO,EAAO,I,IAC3Ewb,EAAS,CAACjS,KAAM7J,KAAKC,MAAMgQ,GAAuC,6BACpExH,EAAM,CAACoB,KAAMjI,EAAK8yB,gBAAgB5Y,IACtC,GAA4B,EAAxBA,EAAa,KAAEzd,OACjB,IAAM,IAAIsE,EAAE,EAAGA,EAAG8F,EAAU,KAAEpK,OAAQsE,IAChC8F,EAAU,KAAE9F,GAAoB,kBAAM5C,YACxC0I,EAAU,KAAE9F,GAAoB,gBAAIf,EAAKgzB,oBAAoBnsB,EAAU,KAAE9F,GAAoB,kBAE3F8F,EAAU,KAAE9F,GAAyB,uBAAM5C,YAC7C0I,EAAU,KAAE9F,GAAyB,qBAA6D,QAAzD8F,EAAU,KAAE9F,GAAyB,qBAAEqyB,cAA0B,UAAY,WAI5HpzB,EAAKqxB,0BAA2B,EAChCrxB,EAAKkzB,cAAczF,kBAAkB5mB,EAAU,KAAG7G,EAAKmzB,YAAYnzB,EAAK0wB,YAAYjxB,IAAI,kBAAkBwB,MAAO0vB,EAAmBE,KAErI,SACA9yB,GACCiC,EAAKqxB,0BAA2B,E,IAC1BgC,EAAet1B,EAAMsF,QAAQ,cAAe,IAAIumB,OAEpC,QADC7rB,EAAMsF,QAAQ,iBAAkB,IAAIumB,OAAOvnB,MAAM,KAAK,GAExErC,EAAKH,oBAAoBnB,uBAAsB,GAAM,EAAM20B,GAE1DrzB,EAAKH,oBAAoBnB,uBAAsB,GAAM,EAAO,MAKlEtI,KAAKmf,0BAA0BhR,uBAAuBsuB,EAAmBlC,EAAkBE,GAAiBxwB,UAAS,SACnHgO,GACErO,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GAAO,EAAO,I,IAC3Ewb,EAAS9b,KAAKC,MAAMgQ,GACtBxH,EAAM,CAACoB,KAAMjI,EAAK8yB,gBAAgB5Y,IAMtC,GAL0B,IAAvBrT,EAAU,KAAEpK,QAAuC,cAAvBo2B,EAC7BhsB,EAAIoB,KAAMqpB,EACqB,IAAvBzqB,EAAU,KAAEpK,QAAuC,gBAAvBo2B,IACpChsB,EAAIoB,KAAO6pB,GAEc,EAAxB5X,EAAa,KAAEzd,OAClB,IAAK,IAAIsE,EAAE,EAAGA,EAAG8F,EAAU,KAAEpK,OAAQsE,IAChC8F,EAAU,KAAE9F,GAAW,SAAM5C,YAC9B0I,EAAU,KAAE9F,GAAW,OAAIf,EAAKgzB,oBAAoBnsB,EAAU,KAAE9F,GAAW,SAE1E8F,EAAU,KAAE9F,GAAsB,oBAAM5C,YAC3C0I,EAAU,KAAE9F,GAAY,QAAI8F,EAAU,KAAE9F,GAAsB,kBAAEgyB,OAAO,EAAE,IACzElsB,EAAU,KAAE9F,GAAa,SAAI8F,EAAU,KAAE9F,GAAsB,kBAAEgyB,OAAO,GAAG,KAI7E/yB,EAAKqxB,0BAA2B,EAChCrxB,EAAKkzB,cAAczF,kBAAkB5mB,EAAU,KAAG7G,EAAKmzB,YAAYnzB,EAAK0wB,YAAYjxB,IAAI,kBAAkBwB,MAAO0vB,EAAmBE,KACrI,SACA9yB,GACCiC,EAAKqxB,0BAA2B,EAChCrxB,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GAAM,EAAO,OAKxF0xB,GAAAn6B,UAAAk9B,YAAA,SAAY9tB,EAAwBZ,EAAmBC,G,IAC/C4uB,EAAM,QACVC,EAAOC,EAAAA,WAAW/uB,EAAW,SAAU6uB,GACvCG,EAAOD,EAAAA,WAAW9uB,EAAS,SAAU4uB,GACrCI,EAAM,IAAIjpB,KAEVkpB,EADcH,EAAAA,WAAWE,EAAK,SAAUJ,GACd,IAAIl9B,KAAKw9B,YAAYF,EAAIG,YAAcz9B,KAAKw9B,YAAYF,EAAII,cAAgB19B,KAAKw9B,YAAYF,EAAIK,cAG3H,OAFoB39B,KAAK49B,mBAAmB3uB,GAEnB,IAAIkuB,EAAK,OAAOE,EAAK,QAASE,GAE3DvD,GAAAn6B,UAAA26B,aAAA,SAAaqD,G,IACP/Z,EAAS,GAKb,OAFEA,EAFE+Z,GACEC,EAAQD,EAAQ5xB,MAAM,MACR,GAAE,IAAI6xB,EAAM,GAAE,IAAIA,EAAM,GAErCha,GAETkW,GAAAn6B,UAAA29B,YAAA,SAAY1gB,GACV,OAAQ,IAAMA,GAAO+Z,OAAO,IAE9BmD,GAAAn6B,UAAA+9B,mBAAA,SAAmB3uB,G,IACb6U,EACJ,OAAO7U,GACL,IAAK,cACH6U,EAAS,cACT,MAEF,IAAK,YACHA,EAAS,YACT,MAEF,IAAK,wBACHA,EAAS,wBACT,MAEF,IAAK,wBACHA,EAAS,6BACT,MAEF,IAAK,wBACHA,EAAS,wBACT,MAEF,QACEA,EAAS7U,EAId,OAAO6U,GAERkW,GAAAn6B,UAAA68B,gBAAA,SAAgBjsB,GAAhB,IAAA7G,EAAA5J,KACE,OAAOyQ,EAAU,KAAEstB,IAAG,SAAClzB,GAqBrB,OApBIA,EAAmB,cACrBA,EAAmB,YAAIuyB,EAAAA,WAAWvyB,EAAmB,YAAGjB,EAAKo0B,IAAKp0B,EAAKszB,MAErEryB,EAAkB,aAA2C,IAAtCA,EAAkB,WAAEsJ,QAAQ,KACrDtJ,EAAkB,WAAIuyB,EAAAA,WAAWvyB,EAAkB,WAAGjB,EAAKo0B,IAAKp0B,EAAKszB,KAC5DryB,EAAkB,aAA2C,IAAtCA,EAAkB,WAAEsJ,QAAQ,OAC5DtJ,EAAkB,WAAIjB,EAAKq0B,kBAAkBpzB,EAAkB,aAG7DA,EAA0B,qBAAmD,IAA9CA,EAA0B,mBAAEsJ,QAAQ,KACrEtJ,EAA0B,mBAAIuyB,EAAAA,WAAWvyB,EAA0B,mBAAGjB,EAAKo0B,IAAKp0B,EAAKszB,KAC5EryB,EAA0B,qBAAmD,IAA9CA,EAA0B,mBAAEsJ,QAAQ,OAC5EtJ,EAA0B,mBAAIjB,EAAKq0B,kBAAkBpzB,EAA0B,qBAG7EA,EAAmB,cAA4C,IAAvCA,EAAmB,YAAEsJ,QAAQ,KACvDtJ,EAAmB,YAAIuyB,EAAAA,WAAWvyB,EAAmB,YAAGjB,EAAKo0B,IAAKp0B,EAAKszB,KAC9DryB,EAAmB,cAA4C,IAAvCA,EAAmB,YAAEsJ,QAAQ,OAC9DtJ,EAAmB,YAAIjB,EAAKq0B,kBAAkBpzB,EAAmB,cAE5DA,KAGXmvB,GAAAn6B,UAAAo+B,kBAAA,SAAkBC,GAAlB,IAAAt0B,EAAA5J,KACC,OAAOk+B,EAAQjyB,MAAM,KAAK8xB,IAAG,SAAEI,GAAS,OAAAf,EAAAA,WAAWe,EAAMv0B,EAAKo0B,IAAKp0B,EAAKszB,OAAM1vB,KAAK,MAGpFwsB,GAAAn6B,UAAA+8B,oBAAA,SAAoBwB,GAClB,OAAOA,EAAMC,OAAOC,WAAWF,GAAK9a,QAAQ,GAAI,Q,qBA/QnDvc,EAAAA,UAAS/F,KAAA,CAAC,CACTgG,SAAU,gBACVC,SAAA,qxK,uaALMmwB,I,MAFC7vB,G,MAJAiS,EAAAA,a,MAGAoC,I,MAEAnP,KAqRTutB,IA7PE,SAAAA,GACU8C,EACArzB,EACAoM,EACAsJ,EACA3P,GAJAxP,KAAA88B,cAAAA,EACA98B,KAAAyJ,oBAAAA,EACAzJ,KAAA6V,YAAAA,EACA7V,KAAAmf,0BAAAA,EACAnf,KAAAwP,mBAAAA,EAnBVxP,KAAAg+B,IAAM,aACNh+B,KAAAk9B,IAAM,QAMNl9B,KAAAi7B,0BAAmC,EACnCj7B,KAAA86B,2BAAqC,EACrC96B,KAAA66B,kBAA4B,EAC5B76B,KAAA46B,qBAA+B,EAC/B56B,KAAA0H,aAAe1H,KAAKyJ,oBAAoBnB,uBAAsB,GAAO,EAAO,IAC5EtI,KAAAme,cAAiC,GC5BnC,IAAAogB,IAqCEA,GAAA1+B,UAAAqG,SAAA,WACElG,KAAK0H,aAAe1H,KAAK0H,aACQ,sBAA9B1H,KAAKw+B,OAAOxB,cACbh9B,KAAKy+B,gBAAiB,EAErBz+B,KAAKy+B,gBAAiB,EAEzBz+B,KAAK2B,WAAa3B,KAAK0+B,WACvB1+B,KAAK2+B,WAAa,IAAIC,EAAAA,mBAAmB5+B,KAAK2B,YAC9C3B,KAAK6+B,YAAc7+B,KAAK2+B,WAAW9sB,KAAKxL,OACpCrG,KAAK2B,aAAeoG,YACxB/H,KAAK6Z,QAAU7Z,KAAK2B,WAAWm9B,OAAM,SAAEC,EAAEC,GAAqB,OAACD,EAArBC,EAAAC,gBAAuC,GAAIF,GAAK,IACzF/+B,KAAK6Z,QAAUtY,OAAOw1B,KAAK/2B,KAAK6Z,UAEjC7Z,KAAK6Z,QAAQkZ,KAAI,SAAE3S,EAAGC,GAAM,OAAAD,EAAE7S,WAAWylB,cAAc3S,MAMzDke,GAAA1+B,UAAAq/B,gBAAA,WAEEl/B,KAAK2+B,WAAW5L,KAAO/yB,KAAK+yB,KAM5B/yB,KAAK2+B,WAAWQ,UAAYn/B,KAAKm/B,UACjCn/B,KAAK2+B,WAAW5L,KAAO/yB,KAAK+yB,KAC5B/yB,KAAKo/B,MAAMn5B,iBAEbs4B,GAAA1+B,UAAAw/B,YAAA,SAAYC,GAEVA,GADAA,EAAcA,EAAY9L,QACAwJ,cAC1Bh9B,KAAK2+B,WAAWzuB,OAASovB,GAE3Bf,GAAA1+B,UAAAirB,aAAA,SAAa9pB,GACXhB,KAAK2+B,WAAWzuB,OAASlP,EAAK+pB,OAAOlgB,MACrC7K,KAAK6+B,YAAc7+B,KAAK2+B,WAAW9sB,KAAKxL,OACxCrG,KAAK2+B,WAAWQ,UAAYn/B,KAAKm/B,WAEnCZ,GAAA1+B,UAAA0/B,2BAAA,SAA2B1qB,EAAyB2qB,GAClDx/B,KAAK8J,oBAAoB4M,iBAAmB8oB,EAC5Cx/B,KAAK8J,oBAAoB+K,gBAAkBA,EAC3C7U,KAAK8J,oBAAoBlD,SAAW,kBAEtC23B,GAAA1+B,UAAA4/B,wBAAA,SAAwB5qB,EAAyB2qB,GAC/Cx/B,KAAKkB,kBAAkBQ,cAAc89B,GACrCx/B,KAAK8J,oBAAoBlD,SAAS,mBAClC5G,KAAK8J,oBAAoBC,gBAAkBy1B,EAAW7oB,gBACtD3W,KAAK8J,oBAAoB6O,oBAAqB,EAC9C3Y,KAAK8J,oBAAoB41B,sBAAuB,GAElDnB,GAAA1+B,UAAAsZ,eAAA,SAAejX,EAAuBs9B,GACpCx/B,KAAKoZ,OAAOC,SAAS,CAAC,uBAAuBnX,GAAkB,CAACoX,WAAYtZ,KAAKuZ,e,qBAlFpFxS,EAAAA,UAAS/F,KAAA,CAAC,CACTgG,SAAU,cACVC,SAAA,4gH,29BAXMnB,G,MAD6BoB,EAAAA,mB,MAO5BhG,G,MAEeuY,EAAAA,Q,MAAfC,EAAAA,kB,qCAONvS,EAAAA,MAAKnG,KAAA,CAAC,gB,cACNmG,EAAAA,MAAKnG,KAAA,CAAC,Y,oBACNmG,EAAAA,MAAKnG,KAAA,CAAC,kB,iBAUN2+B,EAAAA,UAAS3+B,KAAA,CAAC4+B,EAAAA,gB,YACVD,EAAAA,UAAS3+B,KAAA,CAAC6+B,EAAAA,YAiEbtB,IAhEE,SAAAA,GACUz0B,EACAs1B,EACAl+B,EACAkY,EACAG,GAJAvZ,KAAA8J,oBAAAA,EACA9J,KAAAo/B,MAAAA,EACAp/B,KAAAkB,kBAAAA,EACAlB,KAAAoZ,OAAAA,EACApZ,KAAAuZ,YAAAA,EAdVvZ,KAAA8/B,iBAAmB,CAAC,kBAAmB,mBAAoB,iBAAiB,eAAgB,eAAgB,UCrB9G,IAAAC,GAKI,SAAYpO,EAAwBhV,GAClC3c,KAAK2xB,cAAeA,EACpB3xB,KAAK2c,OAASA,GCPpBqjB,IA+DEA,GAAAngC,UAAAqG,SAAA,WAAA,IAAA0D,EAAA5J,KAwCI,GArCFA,KAAKizB,mBAAmB,EAAC,GAAO,GAAO,GAAO,GAAQ,OACtDjzB,KAAK2jB,mBAAqB3jB,KAAK8J,oBAAoBrD,aACnDzG,KAAK0/B,qBAAuB1/B,KAAK8J,oBAAoB41B,qBAIjD1/B,KAAK8J,oBAAoB6O,oBAC3B3Y,KAAK4G,SAAW,aAChB5G,KAAKkB,kBAAkBW,gBAAgBoI,UAAS,SAAE4H,GAAS,OAAAjI,EAAKq2B,WAAapuB,IAC7E7R,KAAKkB,kBAAkBiE,0BAA0B8E,UAAS,SAAE4H,GAAS,OAAAjI,EAAK1H,cAAgB2P,MAE1F7R,KAAK4G,SAAW,mBACb5G,KAAKkgC,oBACNlgC,KAAKka,cAAc9E,oBAAoBpV,KAAKkC,eAAe+H,UAAS,SAClEtI,GACEiI,EAAK0Q,mBAAqB3Y,EAAwB,cAOtD3B,KAAKsa,mBAAqB,IAM5Bta,KAAKmgC,iBAAmBngC,KAAK6V,YAAYC,MAAM,CAC7C6G,OAAQ,IAAI3G,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CAC7CD,EAAAA,WAAWE,SACXF,EAAAA,WAAWO,QAAQ,6BAErBic,aAAc,IAAIzc,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CAACD,EAAAA,WAAWE,YACjE6B,OAAQ,IAAIhC,EAAAA,cAGXhW,KAAKigC,aAAel4B,UAAW,CAGhC,GAFA/H,KAAKogC,8BAEDpgC,KAAKoG,kBAAkB6N,KAAI,SAACtJ,GAAK,OAAAA,EAAEyF,SAAS,8BAG9C,OAFApQ,KAAKqgC,iBAAkB,OACvBrgC,KAAKsgC,kBAAoBtgC,KAAKigC,WAAWM,cAAcva,MAIrDhmB,KAAKoG,kBAAkB6N,KAAI,SAACtJ,GAAK,OAAAA,EAAEyF,SAAS,uBAC9CpQ,KAAKqgC,iBAAkB,EACvBrgC,KAAKsgC,kBAAoBtgC,KAAKigC,WAAWM,cAAcva,QAS/Dga,GAAAngC,UAAAugC,4BAAA,WAAA,IAAAx2B,EAAA5J,KACKA,KAAKigC,aAAel4B,WACvB/H,KAAKka,cAAc/E,uBAAuBnV,KAAKigC,WAAWzqB,kBAAkBvL,UAAS,SACnFu2B,GACE52B,EAAK62B,sBAAwBD,EAAkBE,wBAC/C92B,EAAK+2B,2BAA6BH,EAAkBI,gCAS1DZ,GAAAngC,UAAAghC,eAAA,SAAeZ,EAAyBvnB,GACtC1Y,KAAKkB,kBAAkBQ,cAAcu+B,GACrCjgC,KAAKkB,kBAAkBe,iBAAiBjC,KAAKkC,eAC7ClC,KAAK8J,oBAAoBlD,SAAW,mBACpC5G,KAAK8J,oBAAoB6O,oBAAqB,EAC9C3Y,KAAKigC,WAAaA,EAClBjgC,KAAKkB,kBAAkB2B,kBAAkB6V,IAG3CsnB,GAAAngC,UAAAilB,wBAAA,WACE9kB,KAAKkB,kBAAkB2B,kBAAkB,oBACzC7C,KAAKkB,kBAAkBqB,6BAA4B,GACnDvC,KAAK8J,oBAAoBlD,SAAW,oBACpC5G,KAAK8J,oBAAoBgI,YAAa,EACtC9R,KAAK8J,oBAAoB6O,oBAAqB,GAGhDqnB,GAAAngC,UAAA4Y,mBAAA,WAAA,IAAA7O,EAAA5J,KACEA,KAAKkB,kBAAkB6B,yBAAyBkH,UAAS,SAAE4H,GAAS,OAAAjI,EAAK8O,eAAiB7G,IAC9D,qBAAxB7R,KAAK0Y,eACP1Y,KAAK8kB,0BAEL9kB,KAAK8J,oBAAoBlD,SAAW,eAIxCo5B,GAAAngC,UAAAihC,sBAAA,SAAsBnvB,GAEpB3R,KAAK0H,cAAe,EACpB1H,KAAK8J,oBAAoB6O,oBAAqB,EAC9C3Y,KAAKkG,YAGP85B,GAAAngC,UAAAkhC,0BAAA,WAAA,IAAAn3B,EAAA5J,KACEA,KAAK4G,SAAW,sBAChB5G,KAAKghC,gBAAkBhhC,KAAKigC,WAAWjoB,OACvChY,KAAKihC,cAAgBjhC,KAAKigC,WAAWtjB,OACrC3c,KAAKkhC,aAAelhC,KAAKygC,sBAAsBvwB,OAAM,SAAC2B,GAAQ,MAA8B,oBAA9BA,EAAK/J,OAAOk1B,gBAAqC,GAAGmE,MAClHnhC,KAAKka,cAAcxF,mBAAmBzK,UAAS,SAC7C2oB,GACEhpB,EAAKgpB,cAAgBA,KAG3BoN,GAAAngC,UAAAuhC,qBAAA,WACEphC,KAAKqhC,qBAAsB,EAC3BrhC,KAAK8J,oBAAoBpD,WAAa,OACtC1G,KAAK8J,oBAAoByqB,wBAAyB,EAClDv0B,KAAKkC,cAAgBlC,KAAK8J,oBAAoBC,gBAC9C/J,KAAK0H,cAAe,EACpB1H,KAAK4G,SAAW,eAGlBo5B,GAAAngC,UAAAyhC,eAAA,WACEthC,KAAK0H,cAAe,EACpB1H,KAAK8J,oBAAoBpD,WAAa,OACtC1G,KAAKqhC,qBAAsB,EAC3BrhC,KAAKkC,cAAgBlC,KAAK8J,oBAAoBC,gBAC9C/J,KAAK8J,oBAAoByqB,wBAAyB,EAClDv0B,KAAK4G,SAAW,4BAGlBo5B,GAAAngC,UAAA0hC,wBAAA,W,IACQrO,EAAiBlzB,KAAKmgC,iBAAiBxoB,SACzC3X,KAAKmgC,iBAAiBroB,QACc,IAAlCob,EAAuB,OAAEroB,MAC3B7K,KAAKizB,mBAAmB,EAAC,GAAM,GAAO,GAAO,GAAQ,UAEZ,IAAlCC,EAAuB,OAAEroB,OAAeqoB,EAAuB,OAAE9a,QACxEpY,KAAKizB,mBAAmB,EAAC,GAAO,GAAM,GAAO,GAAQ,UAEZ,IAAlCC,EAAuB,OAAEroB,MAChC7K,KAAKizB,mBAAmB,EAAC,GAAO,GAAO,GAAO,GAAO,WAErDjzB,KAAKigC,WAAWjoB,OAASkb,EAAuB,OAAEroB,MAClD7K,KAAK4G,SAAW,yBAMtBo5B,GAAAngC,UAAAozB,mBAAA,SAAmBhL,EAAKlP,GACR,QAAVA,GACF/Y,KAAKg0B,cAAgB/L,EAAI,GACzBjoB,KAAKi0B,eAAiBhM,EAAI,GAC1BjoB,KAAKk0B,4BAA8BjM,EAAI,GACvCjoB,KAAKgX,cAAgBiR,EAAI,IACN,WAAVlP,GAAgC,QAAVA,GAC/B/Y,KAAKg0B,cAAgB/L,EAAI,GACzBjoB,KAAKi0B,eAAiBhM,EAAI,GAC1BjoB,KAAKk0B,4BAA8BjM,EAAI,IACpB,WAAVlP,GAAgC,QAAVA,IAC/B/Y,KAAKgX,cAAgBiR,EAAI,KAI7B+X,GAAAngC,UAAAowB,kBAAA,SAAkBC,EAAKrlB,GACrB7K,KAAKs1B,gBAAiB,EAEV,WADZt1B,KAAKy0B,qBAAuBvE,KAE1BlwB,KAAKs1B,gBAAiB,EACtBt1B,KAAKyyB,aAAevC,IAIxB8P,GAAAngC,UAAA2hC,oBAAA,SAAoBhN,GACdx0B,KAAK8J,oBAAoByqB,yBAA2Bv0B,KAAK8J,oBAAoBuqB,iBAC/Er0B,KAAKigC,WAAWjoB,OAASwc,EAAiBxc,OAC1ChY,KAAKyhC,WAAajN,EAAiBxkB,MAEnChQ,KAAKqhC,qBAAsB,EAE7BrhC,KAAK4G,SAAW,sBAChB5G,KAAK8J,oBAAoBC,gBAAkB/J,KAAKkC,eAGlD89B,GAAAngC,UAAA6hC,gBAAA,SAAgB/kB,GACV3c,KAAK8J,oBAAoByqB,yBAA2Bv0B,KAAK8J,oBAAoBuqB,gBAClE,EAAT1X,IACF3c,KAAKihC,cAAgBtkB,GAIvB3c,KAAKqhC,qBAAsB,EAE7BrhC,KAAK4G,SAAW,sBAChB5G,KAAK8J,oBAAoBC,gBAAkB/J,KAAKkC,eAGlD89B,GAAAngC,UAAA8hC,iCAAA,WAAA,IAAA/3B,EAAA5J,KACMA,KAAKghC,kBAAoBhhC,KAAKigC,WAAWjoB,SAC3ChY,KAAKyhC,WAAa,I,IAEdG,EAAkB,IAAI7B,GAAuB//B,KAAKyhC,WAAazhC,KAAKihC,eAC1EjhC,KAAKka,cAAc3E,oBAAoBqsB,EAAiB5hC,KAAKigC,WAAWzqB,kBAAkBvL,UAAS,SACjGgO,GACMjQ,KAAKC,MAAMgQ,KACbrO,EAAKiL,gBAAkB7M,KAAKC,MAAMgQ,GAAUzC,iBAC5C5L,EAAKurB,aAAentB,KAAKC,MAAMgQ,GAAUmd,cACzCxrB,EAAKhD,SAAW,iCAEnB,SACAe,GACCiC,EAAKlC,aAAeC,EAAMsF,QAAQ,KAAK,OAM7C+yB,GAAAngC,UAAA0/B,2BAAA,SAA2B1qB,EAAyBlT,GAClD3B,KAAK8J,oBAAoB4M,iBAAmB/U,EAC5C3B,KAAK8J,oBAAoB+K,gBAAkBA,EAC3C7U,KAAK8J,oBAAoBlD,SAAW,kB,qBApRvCG,EAAAA,UAAS/F,KAAA,CAAC,CACTgG,SAAU,sBACVC,SAAA,opT,w5CAZOuS,EAAAA,a,MADA/E,G,MAQA3O,G,MALA2G,G,MACAgN,EAAAA,Q,MACAvY,K,4CAYNiG,EAAAA,MAAKnG,KAAA,CAAC,uB,gBACNmG,EAAAA,MAAKnG,KAAA,CAAC,c,sBACNmG,EAAAA,Q,sBACAA,EAAAA,Q,qBACAA,EAAAA,Q,iBACAA,EAAAA,Q,2BACAA,EAAAA,SA2QH64B,IA3OE,SAAAA,GAAoBnqB,EACVqE,EACApQ,EACA0F,EACA4J,EACAlY,GALV,IAAA0I,EAAA5J,KAAoBA,KAAA6V,YAAAA,EACV7V,KAAAka,cAAAA,EACAla,KAAA8J,oBAAAA,EACA9J,KAAAwP,mBAAAA,EACAxP,KAAAoZ,OAAAA,EACApZ,KAAAkB,kBAAAA,EA3CkBlB,KAAAoG,kBAA8B,GAS1DpG,KAAAsa,mBAAoC,GACpCta,KAAAma,eAAiB,oBACjBna,KAAAqa,aAAe,kBAGfra,KAAA0H,aAAe,KAMf1H,KAAAsgC,kBAA4B,GAC5BtgC,KAAAg0B,eAAyB,EACzBh0B,KAAAgX,eAAyB,EACzBhX,KAAAi0B,gBAA0B,EAC1Bj0B,KAAAk0B,6BAAuC,EACvCl0B,KAAAs1B,gBAA0B,EAC1Bt1B,KAAA4yB,cAAuB,GAKvB5yB,KAAAqhC,qBAA+B,EAI/BrhC,KAAA2gC,4BAAsC,EACtC3gC,KAAAqgC,iBAA2B,EAiE3BrgC,KAAA6hC,gBAAe,WACb,MAAyB,wBAAlBj4B,EAAK3J,U,QChBd6hC,GAAAjiC,UAAAqG,SAAA,WAAA,IAAA0D,EAAA5J,KACMA,KAAKuP,aAAexH,YACtB/H,KAAKuP,WAAavP,KAAK8J,oBAAoBlD,UAE1C5G,KAAK8J,oBAAoBtH,0BAA4BxC,KAAK8J,oBAAoBsI,yBAC5EpS,KAAK8J,oBAAoBsI,yBAA2BpS,KAAK8J,oBAAoBtH,2BAChFxC,KAAKkB,kBAAkB0C,eAAeqG,UAAS,SAAE4H,GAAS,OAAAjI,EAAKjG,SAAWkO,IAC1E7R,KAAKkB,kBAAkB6C,oBAAoBkG,UAAS,SAAE4H,GAAS,OAAAjI,EAAK9F,cAAgB+N,IACpF7R,KAAKkB,kBAAkBgD,mBAAmB+F,UAAS,SAAE4H,GAAS,OAAAjI,EAAK3F,aAAe4N,IAClF7R,KAAKkB,kBAAkBuC,iBAAiBwG,UAAS,SAAE4H,GAAS,OAAAjI,EAAKpG,YAAcqO,IAC/E7R,KAAKkB,kBAAkBmD,iBAAiB4F,UAAS,SAAE4H,GAAS,OAAAjI,EAAKxF,WAAayN,IAC9E7R,KAAKkB,kBAAkBsD,0BAA0ByF,UAAS,SAAE4H,GAAS,OAAAjI,EAAKrF,oBAAsBsN,IAChG7R,KAAKkB,kBAAkByD,qBAAqBsF,UAAS,SAAE4H,GAAS,OAAAjI,EAAKlF,eAAiBmN,IACtF7R,KAAKkB,kBAAkB4D,0BAA0BmF,UAAS,SAAE4H,GAAS,OAAAjI,EAAK/E,mBAAqBgN,MAOnGiwB,GAAAjiC,UAAAwR,uBAAA,WACErR,KAAK+hC,2BAA2BtW,QAGlCqW,GAAAjiC,UAAA6R,uBAAA,SAAuBC,GACrBA,EAAMC,iBACN5R,KAAKkB,kBAAkB2B,kBAAkB,sBACzC7C,KAAKkB,kBAAkBqB,6BAA4B,GACnDvC,KAAK8J,oBAAoBlD,SAAW,oBACpC5G,KAAK8J,oBAAoBgI,YAAa,EACtC9R,KAAK8J,oBAAoBjD,cAAgB7G,KAAK8J,oBAAoBhD,YAC9D9G,KAAKwd,cACPxd,KAAK8J,oBAAoBjD,cAAgB7G,KAAKwd,aAEhDxd,KAAK8J,oBAAoBwH,eAAiB,OAC1CtR,KAAK8J,oBAAoBtH,0BAA2B,EACvB,UAA1BxC,KAAKgiC,mBACNhiC,KAAK8J,oBAAoBtH,0BAA2B,GAEtDxC,KAAK8J,oBAAoByqB,wBAAyB,EAClDv0B,KAAK8J,oBAAoBlD,SAAW,oBACpC5G,KAAK+R,iBACDgT,EAAU/kB,KAAK8J,oBAAoBgI,WAAa,yBAA2B,0BAC/EiT,GAAW/kB,KAAK8J,oBAAoBuF,UAAY,oBAAsB,qBACzC,UAA1BrP,KAAKgiC,mBACNjd,GAAW/kB,KAAK8J,oBAAoBhD,YAAc,oBAAsB,sBAE1Eie,GAAW/kB,KAAKge,qBAAuB,wBAA0B,yBACjE+G,GAAqC,UAA1B/kB,KAAKgiC,iBAA+B,uBAAyB,wBACxEjd,GAAW,aAAa/kB,KAAK8J,oBAAoBuT,SACjD0H,GAAW/kB,KAAK8J,oBAAoB+T,eAAiB,yBAA2B,0BAChFkH,GAAW/kB,KAAK8J,oBAAoBiU,eAAiB,yBAA2B,0BAC1E7S,EAAM,oBAAoBlL,KAAK8J,oBAAoBC,gBAAe,0CAA0C/J,KAAK8J,oBAAoBoF,gBAAkB6V,EAC3J/kB,KAAKoZ,OAAOua,mBAAmBC,iBAAgB,WAAS,OAAA,GACxD5zB,KAAKoZ,OAAOya,oBAAsB,SAClC7zB,KAAKoZ,OAAOiI,cAAcnW,IAG9B42B,GAAAjiC,UAAAoS,mBAAA,SAAmBkB,G,QACjB,GAAInT,KAAKyT,oBAAsBzT,KAAKuT,kCAAmC,CACrE,GAA+C,EAA3CvT,KAAKwD,YAAY,GAAe,WAAE6C,O,IACpC,IAAwB,IAAAqN,EAAAL,EAAArT,KAAKwD,YAAY,GAAe,YAACmQ,EAAAD,EAAApS,QAAAqS,EAAA7I,KAAA6I,EAAAD,EAAApS,OACvD,GADkBqS,EAAA9I,MACJkF,WAAaoD,EACzB,OAAO,E,oGAIb,OAAO,EAEP,OAAO,GAIX2uB,GAAAjiC,UAAA4T,iBAAA,WAAA,IAAA7J,EAAA5J,KACE,GAAyB,OAArBA,KAAKwD,aAAyBxD,KAAKwD,cAAgBuE,UAWvD,OAVA/H,KAAKwD,YAAYqI,QAAO,SAACrI,GACnBA,EAAY0G,UACd1G,EAAY0G,SAAS2B,QAAO,SAACsG,GACgB,uBAAvCA,EAAQjB,OAAO0B,qBAAgDhJ,EAAKiJ,6BAA6BV,KACnGvI,EAAKE,oBAAoBM,iBAAmB+H,EAAQD,UACpDtI,EAAK4Y,OAAQ,SAKjBxiB,KAAKwiB,OAQXsf,GAAAjiC,UAAAmS,aAAA,SAAarC,GAAb,IAAA/F,EAAA5J,KACIA,KAAKiS,mBAAmBtC,EAAIK,QAC9BhQ,KAAK8N,MAAQ6B,EACb3P,KAAKuP,WAAa,eAClBvP,KAAKmS,QAAUnS,KAAKwD,YAAY,GAAG0G,SAAS,GAC5ClK,KAAKwP,mBAAmB5C,2BAA2B5M,KAAKwD,YAAY,GAAG0G,SAAS,GAAGgI,WAAWjI,UAAS,SACrGwF,GACE7F,EAAK6F,aAAeA,EAEpB7F,EAAK6F,aAAavF,SAAWN,EAAK6F,aAAavF,SAASgG,OAAM,SAC3DC,GAAmB,OAAAA,EAA2B,UAAEC,SAASxG,EAAKE,oBAAoBM,oBACrFR,EAAKuI,QAAUvI,EAAK6F,aAAavF,SAAS,IAG3C,SACAvC,GAAe,OAAAiC,EAAKlC,aAAeC,EAAMsF,QAAQ,KAAK,QAK3D60B,GAAAjiC,UAAA0S,sBAAA,SAAsBJ,EAAmBK,EAAwB9C,GAAjE,IAAA9F,EAAA5J,KACEA,KAAKuP,WAAa,wBAElBvP,KAAKmS,QAAUA,EACfnS,KAAKwP,mBAAmB5C,2BAA2B5M,KAAKmS,QAAQD,WAAWjI,UAAS,SAClFwF,GACE7F,EAAK6F,aAAeA,EAEpB7F,EAAK6F,aAAavF,SAAWN,EAAK6F,aAAavF,SAASgG,OAAM,SAC3DC,GAAmB,OAAAA,EAA2B,UAAEC,SAASxG,EAAKuI,QAAQD,aACzEtI,EAAKuI,QAAUvI,EAAK6F,aAAavF,SAAS,GAC1CN,EAAKiG,WAAa2C,EAClB5I,EAAK8I,gBAAkBhD,EAAKQ,OAAM,SAAC2B,GAAM,OAAAA,EAAK7B,OAASpG,EAAKiG,WAAqB,WAAG,GAAG8C,YAGxF,SACAhL,GAAe,OAAAiC,EAAKlC,aAAeC,KAGxCm6B,GAAAjiC,UAAAsiB,cAAA,WACEniB,KAAKuP,WAAa,QAGpBuyB,GAAAjiC,UAAAuiB,UAAA,SAAUzS,GAAV,IAAA/F,EAAA5J,KACEA,KAAKkiB,qBAAsB,EAC3BliB,KAAKwP,mBAAmBzB,0BAA0B4B,GAAK1F,UAAS,SAC7DoY,GACC9Q,OAAOC,SAASC,UACjB,SACA9J,GACCiC,EAAKlC,aAAeC,EACpBiC,EAAKsY,qBAAsB,KAMjC4f,GAAAjiC,UAAAoT,wBAAA,SAAwBd,GAKtB,OAJInS,KAAKuT,mCAAqCvT,KAAK6S,6BAA6BV,IAC3D,uBAAnBA,EAAQjB,QAA0E,YAAvCiB,EAAQrK,OAAO8K,sBAC1D5S,KAAKwT,wBAAyB,KAE5BxT,KAAKwT,wBAOXsuB,GAAAjiC,UAAA4S,8BAAA,WAAA,IAAA7I,EAAA5J,KACE,GAAyB,OAArBA,KAAKwD,aAAyBxD,KAAKwD,cAAgBuE,UAWvD,OAVE/H,KAAK8J,oBAAoBtH,0BAA2B,EACtDxC,KAAKwD,YAAYqI,QAAO,SAACrI,GACnBA,EAAY0G,UACd1G,EAAY0G,SAAS2B,QAAO,SAACsG,GACgB,uBAAvCA,EAAQjB,OAAO0B,qBAAuF,YAAvCT,EAAQrK,OAAO8K,qBAAqChJ,EAAKiJ,6BAA6BV,KACvJvI,EAAKkJ,4BAA6B,SAKtC9S,KAAK8S,4BAsBXgvB,GAAAjiC,UAAAkT,YAAA,SAAYZ,GACM,OAAZA,GAAoBA,IAAYpK,WACjC/H,KAAKiT,wBAAwBd,KAChCnS,KAAKuP,WAAa,cAClBvP,KAAKmS,QAAUA,EACfnS,KAAK8J,oBAAoBtH,0BAA2B,EACpDxC,KAAKqS,mBAAoB,IAK3ByvB,GAAAjiC,UAAAsd,iBAAA,SAAiB5W,EAA+B6D,EAA0BnB,GACxEjJ,KAAKyhB,yBAAyB,CAAElb,sBAAqBA,EAAE6D,iBAAgBA,EAAEnB,cAAaA,KAGxF64B,GAAAjiC,UAAA4hB,yBAAA,SAAyBhS,GACvBzP,KAAK8J,oBAAoBb,cAAgBwG,EAAaxG,cACtDjJ,KAAK8J,oBAAoBtH,0BAA2B,EACpDxC,KAAK8J,oBAAoBvD,sBAAwBkJ,EAAalJ,sBAC9DvG,KAAK8J,oBAAoBM,iBAAmBqF,EAAarF,iBACzDpK,KAAKkB,kBAAkBwC,YAAY1D,KAAK2D,UACxC3D,KAAKkB,kBAAkB2C,iBAAiB7D,KAAK8D,eAC7C9D,KAAKkB,kBAAkB8C,gBAAgBhE,KAAKiE,cAC5CjE,KAAKkB,kBAAkBqC,eAAevD,KAAKwD,aAC3CxD,KAAKkB,kBAAkBiD,cAAcnE,KAAKoE,YAC1CpE,KAAKkB,kBAAkB0D,sBAAsB5E,KAAK6E,oBAClD7E,KAAKkB,kBAAkBoD,uBAAuBtE,KAAKuE,qBACnDvE,KAAKkB,kBAAkBuD,kBAAkBzE,KAAK0E,gBAC9C1E,KAAKuP,WAAa,gBAGpBuyB,GAAAjiC,UAAAkS,eAAA,WACE/R,KAAKkB,kBAAkBwC,YAAY,MACnC1D,KAAKkB,kBAAkB2C,iBAAiB,MACxC7D,KAAKkB,kBAAkB8C,gBAAgB,MACvChE,KAAKkB,kBAAkBqC,eAAe,MACtCvD,KAAKkB,kBAAkBiD,cAAc,MACrCnE,KAAKkB,kBAAkB0D,sBAAsB,MAC7C5E,KAAKkB,kBAAkBoD,uBAAuB,MAC9CtE,KAAKkB,kBAAkBuD,kBAAkB,O,qBAtU5CsC,EAAAA,UAAS/F,KAAA,CAAC,CACTgG,SAAU,wBACVC,SAAA,ysZ,g9GAbOnB,G,MAQA2G,G,MACAvL,G,MAFAuY,EAAAA,U,4CAUNtS,EAAAA,MAAKnG,KAAA,CAAC,uB,kBACNmG,EAAAA,MAAKnG,KAAA,CAAC,gB,mBACNmG,EAAAA,MAAKnG,KAAA,CAAC,iB,gBACNmG,EAAAA,MAAKnG,KAAA,CAAC,c,mBACNmG,EAAAA,MAAKnG,KAAA,CAAC,iB,kBACNmG,EAAAA,MAAKnG,KAAA,CAAC,gB,oBACNmG,EAAAA,MAAKnG,KAAA,CAAC,kB,qBACNmG,EAAAA,MAAKnG,KAAA,CAAC,mB,sBACNmG,EAAAA,MAAKnG,KAAA,CAAC,oB,0BACNmG,EAAAA,MAAKnG,KAAA,CAAC,wB,2BACNmG,EAAAA,MAAKnG,KAAA,CAAC,yB,mBACNmG,EAAAA,MAAKnG,KAAA,CAAC,iB,qBACNmG,EAAAA,MAAKnG,KAAA,CAAC,mB,wBACNmG,EAAAA,MAAKnG,KAAA,CAAC,sB,kCACN+rB,EAAAA,UAoTH+U,IAnPE,SAAAA,GACUh4B,EACA0F,EACAtO,EACAkY,GAJV,IAAAxP,EAAA5J,KACUA,KAAA8J,oBAAAA,EACA9J,KAAAwP,mBAAAA,EACAxP,KAAAkB,kBAAAA,EACAlB,KAAAoZ,OAAAA,EArEApZ,KAAA+hC,2BAAgD,IAAI/U,EAAAA,aAM9DhtB,KAAAme,cAAuB,GACvBne,KAAAkK,SAAuB,GACvBlK,KAAAygB,YAA0B,GAC1BzgB,KAAA0gB,YAA0B,GAC1B1gB,KAAA6P,WAA2B,GAC3B7P,KAAA0P,KAAe,GAWf1P,KAAAqS,mBAA6B,EAG7BrS,KAAA+T,oBAA8B,EAC9B/T,KAAAuf,mBAA6B,EAC7Bvf,KAAA4hB,6BAAuC,EAEvC5hB,KAAAoe,uBAAiC,EACjCpe,KAAAkhB,0BAAoC,EAGpClhB,KAAAkiB,qBAA+B,EAE/BliB,KAAAugB,YAAsB,EAEtBvgB,KAAA+gB,mBAA6B,EAC7B/gB,KAAAod,6BAAuC,EASvCpd,KAAA2iB,sBAAgC,EAChC3iB,KAAA4iB,sBAA+B,GAC/B5iB,KAAAoB,eAAuC,GACvCpB,KAAAye,WAAkB,KAMlBze,KAAAwiB,OAAiB,EACjBxiB,KAAAwT,wBAAkC,EAClCxT,KAAA8iB,0BAAoC,EACpC9iB,KAAA8S,4BAAsC,EACtC9S,KAAAgU,2BAA6B,CAAC,2BAA4B,mBAiM1DhU,KAAAuT,gCAA+B,WAC7B,OAAO3J,EAAKoK,2BAA2BC,KAAI,SAACC,GAC1C,OAA0C,IAA1CtK,EAAKxD,kBAAkB+N,QAAQD,MAInClU,KAAA6S,6BAA4B,SAAIV,GAC9B,GAAgB,OAAZA,GAAoBA,IAAYpK,UAAW,C,IAC3CqM,EAAa,IAAIC,KAErB,OADAD,EAAWE,QAAQF,EAAWG,UAAY,GACnCH,GAAc,IAAIC,KAAKlC,EAAQqC,gBCxS1C,IAAAytB,GAKI,SAAYtlB,GACR3c,KAAK2c,OAASA,EACd3c,KAAKmjB,SAAW,MAChBnjB,KAAKkiC,SAAW,UCRxBC,GAOI,SAAYC,EAA0BzlB,EAAiB0lB,EAA4BC,GAC/EtiC,KAAKoiC,eAAiBA,EACtBpiC,KAAK2c,OAASA,EACd3c,KAAKmjB,SAAW,MAChBnjB,KAAKqiC,mBAAqBA,EAC1BriC,KAAKuiC,kBAAoBD,GCZjCE,IAqCEA,GAAA3iC,UAAAqG,SAAA,WAAA,IAAA0D,EAAA5J,KACEA,KAAK0iB,eAAiB1iB,KAAK8J,oBAAoB4Y,eAC/C1iB,KAAKuP,WAAa,cAClBvP,KAAKgR,SAAW,KAChBhR,KAAKwP,mBAAmB3C,uBACvB5C,UAAS,SACR6Z,GACEla,EAAK64B,wBAAyB,EAC9B74B,EAAK04B,QAAUxe,EAAO4e,2BAA2B1c,KACjDpc,EAAK+4B,eAAiB7e,EAAO4e,2BAA2BE,gBACzD,SACDj7B,GACEiC,EAAKoH,SAAWrJ,KAKtB66B,GAAA3iC,UAAAgjC,iBAAA,SAAiB7hC,GACc,qBAA1BA,EAAK8hC,cAAcrP,KACpBzzB,KAAK+iC,uBAAwB,EAC7B/iC,KAAKgjC,mBAAqBhiC,EAAK+pB,OAAOlgB,OAEX,kBAA1B7J,EAAK8hC,cAAcrP,KACpBzzB,KAAKijC,cAAgBjiC,EAAK+pB,OAAOlgB,OAEJ,KAA5B7K,KAAKgjC,oBAAoD,KAAvBhjC,KAAKijC,cACxCjjC,KAAKypB,0BAA2B,EAEhCzpB,KAAKypB,0BAA2B,GAIpC+Y,GAAA3iC,UAAAgoB,gBAAA,WAAA,IAQY1C,EARZvb,EAAA5J,KAEKA,KAAKkjC,sBACNljC,KAAKmjC,oBAAqB,EAC1BnjC,KAAKojC,sBAAuB,EAC5BpjC,KAAKqjC,kBAAmB,EACxBrjC,KAAKsjC,4BAA6B,GAC6B,IAA1DtjC,KAAK2iC,eAAexuB,QAAQnU,KAAKgjC,qBAC9B7d,EAAc,IAAIgd,GACtBniC,KAAKgjC,mBAAoBhjC,KAAK0iB,eAAe5C,eAAgB9f,KAAKijC,cAAejjC,KAAKsiC,SACxFtiC,KAAKwP,mBAAmBrC,sBAAsBnN,KAAK0iB,eAAe7C,WAAYsF,GAC7Elb,UAAS,SACR80B,GACE,IACEn1B,EAAK25B,yBAA2Bv7B,KAAKC,MAAM82B,GAC3C,MAAMhuB,GACNnH,EAAK25B,yBAA2BxE,EAElCn1B,EAAK05B,4BAA6B,GACnC,SACDvyB,GACiB,OAAZA,EAAEjJ,OACH8B,EAAKu5B,oBAAqB,EACN,OAAZpyB,EAAEjJ,OACV8B,EAAKw5B,sBAAuB,EACR,OAAZryB,EAAEjJ,OACV8B,EAAK45B,kBAAmB,EAExB55B,EAAKy5B,kBAAmB,KAK9BrjC,KAAKqjC,kBAAmB,GAEjBrjC,KAAKyjC,uBACdzjC,KAAK0jC,eAITlB,GAAA3iC,UAAA6jC,YAAA,WAAA,IAAA95B,EAAA5J,KACEA,KAAK2jC,sBAAuB,E,IACtBxe,EAAc,IAAI8c,GACtBjiC,KAAK0iB,eAAe5C,gBACtB9f,KAAKwP,mBAAmB1C,wBAAwB9M,KAAK0iB,eAAe7C,WAAYsF,GAC/Elb,UAAS,SACR6Z,GACQ8f,EAAa57B,KAAKC,MAAM6b,GAAQ+f,SACtCtyB,OAAOC,SAASgU,KAAOoe,GACxB,SACDj8B,GACEiC,EAAK+5B,sBAAuB,KAKlCnB,GAAA3iC,UAAAikC,oBAAA,SAAoBh7B,GACN,QAATA,GACD9I,KAAKkjC,sBAAuB,EAC5BljC,KAAKyjC,uBAAwB,EAC7BzjC,KAAK+iC,uBAAwB,EAC7B/iC,KAAKypB,0BAA2B,EAChCzpB,KAAKgjC,mBAAqB,MACR,SAATl6B,IACT9I,KAAKkjC,sBAAuB,EAC5BljC,KAAKyjC,uBAAwB,EAC7BzjC,KAAK+iC,uBAAwB,EAC7B/iC,KAAKypB,0BAA2B,IAGpC+Y,GAAA3iC,UAAAgpB,uBAAA,WACE7oB,KAAK8J,oBAAoBlD,SAAW,oBACpC5G,KAAK8J,oBAAoBhD,aAAc,EACvC9G,KAAK8J,oBAAoBgI,YAAa,EACtC9R,KAAK8J,oBAAoBtH,0BAA2B,G,qBAvIvDuE,EAAAA,UAAS/F,KAAA,CAAC,CACTgG,SAAU,oBACVC,SAAA,ymhB,o+BAROnB,G,MADA2G,K,yCAaNtF,EAAAA,SAmIHq7B,IA/GE,SAAAA,GAAqB14B,EACX0F,GADWxP,KAAA8J,oBAAAA,EACX9J,KAAAwP,mBAAAA,EAlBVxP,KAAAwjC,kBAA4B,EAE5BxjC,KAAA2jC,sBAAgC,EAChC3jC,KAAAmjC,oBAA8B,EAC9BnjC,KAAAojC,sBAAgC,EAChCpjC,KAAAqjC,kBAA4B,EAC5BrjC,KAAAyiC,wBAAkC,EAClCziC,KAAAgjC,mBAA6B,GAC7BhjC,KAAAijC,cAAwB,GACxBjjC,KAAAkjC,sBAAgC,EAChCljC,KAAAyjC,uBAAiC,EACjCzjC,KAAA+iC,uBAAiC,EACjC/iC,KAAAypB,0BAAoC,EACpCzpB,KAAAsjC,4BAAsC,EAEtCtjC,KAAAsiC,QAAkB,G,qBCanByB,EAAAA,SAAQ/iC,KAAA,CAAC,CACRgjC,QAAS,CACPC,EAAAA,aACAC,EAAAA,iBACAC,EAAAA,YACAC,EAAAA,oBACAC,EAAAA,eACAC,EAAAA,mBACAC,EAAAA,cACAC,EAAAA,mBACAC,EAAAA,gBAIFC,aAAc,CACZ5+B,EACA6D,EACAqF,EACAwzB,GACA/sB,EACAmE,EACAc,EACAI,EACAG,EACAiM,GACAqC,GACA4B,GACA+B,GACAM,GACApS,GACA4B,GACA0G,GACAoO,GACA0E,GACAI,GACAE,GACAE,GACAgD,GACArU,GACA4Y,GACAyB,GACA8B,IAEF6C,QAAS,CAAC7+B,GACV8+B,UAAW,CACT,CAAEC,QAASj8B,EAAek8B,SAAUxpB,IACpC8b,GACApsB,OA5FJ+5B,EAgGgCA,GAnDhC,SAAAA,M"}
|
|
1
|
+
{"version":3,"sources":["ng://@hmcts/ccpay-web-component/lib/payment-lib.service.ts","ng://@hmcts/ccpay-web-component/lib/services/orderslist.service.ts","ng://@hmcts/ccpay-web-component/lib/payment-lib.component.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/error-handler.service.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/logger/logger.service.ts","ng://@hmcts/ccpay-web-component/lib/services/payment-list/payment-list.service.ts","ng://@hmcts/ccpay-web-component/lib/components/payment-list/payment-list.component.ts","node_modules/tslib/tslib.es6.js","ng://@hmcts/ccpay-web-component/lib/services/shared/httpclient/webcomponent.http.client.ts","ng://@hmcts/ccpay-web-component/lib/services/payment-view/payment-view.service.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PostRefundRetroRemission.ts","ng://@hmcts/ccpay-web-component/lib/components/payment-view/payment-view.component.ts","ng://@hmcts/ccpay-web-component/lib/services/refunds/refunds.service.ts","ng://@hmcts/ccpay-web-component/lib/components/process-refund/process-refund.component.ts","ng://@hmcts/ccpay-web-component/lib/components/refund-list/refund-list.component.ts","ng://@hmcts/ccpay-web-component/lib/services/card-details/card-details.service.ts","ng://@hmcts/ccpay-web-component/lib/components/card-details/card-details.component.ts","ng://@hmcts/ccpay-web-component/lib/components/page-not-found.component.ts","ng://@hmcts/ccpay-web-component/lib/services/status-history/status-history.service.ts","ng://@hmcts/ccpay-web-component/lib/components/status-history/status-history.component.ts","ng://@hmcts/ccpay-web-component/lib/services/notification/notification.service.ts","ng://@hmcts/ccpay-web-component/lib/components/contact-details/contact-details.component.ts","ng://@hmcts/ccpay-web-component/lib/components/pba-details/pba-details.component.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/logger/console-logger.service.ts","ng://@hmcts/ccpay-web-component/lib/services/case-transactions/case-transactions.service.ts","ng://@hmcts/ccpay-web-component/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.ts","ng://@hmcts/ccpay-web-component/lib/components/case-transactions/case-transactions.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PaymentToPayhubRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PayhubAntennaRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/fee-summary/fee-summary.component.ts","ng://@hmcts/ccpay-web-component/lib/components/error-banner/error-banner.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/UnidentifiedPaymentsRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/AllocatePaymentRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/UnsolicitedPaymentsRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.ts","ng://@hmcts/ccpay-web-component/lib/components/unprocessed-payments/unprocessed-payments.component.ts","ng://@hmcts/ccpay-web-component/lib/components/processed-payments/processed-payments.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IAllocationPaymentsRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/allocate-payments/allocate-payments.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/AddRemissionRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/AddRetroRemissionRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PostIssueRefundRetroRemission.ts","ng://@hmcts/ccpay-web-component/lib/components/add-remission/add-remission.component.ts","ng://@hmcts/ccpay-web-component/lib/pipes/ccd-hyphens.pipe.ts","ng://@hmcts/ccpay-web-component/lib/pipes/capitalize.pipe.ts","ng://@hmcts/ccpay-web-component/lib/pipes/key-value.pipe.ts","ng://@hmcts/ccpay-web-component/lib/pipes/sanitize-html.pipe.ts","ng://@hmcts/ccpay-web-component/lib/services/xl-file/xl-file.service.ts","ng://@hmcts/ccpay-web-component/lib/components/reports/reports.component.ts","ng://@hmcts/ccpay-web-component/lib/components/table/table.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IPutNotificationRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IResubmitRefundRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/refund-status/refund-status.component.ts","ng://@hmcts/ccpay-web-component/lib/components/service-request/service-request.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IserviceRequestCardPayment.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IserviceRequestPbaPayment.ts","ng://@hmcts/ccpay-web-component/lib/components/pba-payment/pba-payment.component.ts","ng://@hmcts/ccpay-web-component/lib/payment-lib.module.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\n\nexport class PaymentLibService {\n API_ROOT: string;\n BULKSCAN_API_ROOT: string;\n REFUNDS_API_ROOT: string;\n NOTIFICATION_API_ROOT: string;\n CARDPAYMENTRETURNURL: string;\n\n constructor() { }\n\n setApiRootUrl(apiRoot: string): void {\n this.API_ROOT = apiRoot;\n }\n\n getApiRootUrl(): string {\n return this.API_ROOT;\n }\n\n setBulkScanApiRootUrl(bulkscanapiRoot: string): void {\n this.BULKSCAN_API_ROOT = bulkscanapiRoot;\n }\n\n getBulkScanApiRootUrl(): string {\n return this.BULKSCAN_API_ROOT;\n }\n\n setRefundndsApiRootUrl(refundsapiRoot: string): void {\n this.REFUNDS_API_ROOT = refundsapiRoot;\n }\n\n getRefundsApiRootUrl(): string {\n return this.REFUNDS_API_ROOT;\n }\n setNoticationApiRootUrl(notificationapiRoot: string): void {\n this.NOTIFICATION_API_ROOT = notificationapiRoot;\n }\n\n getNoticationApiRootUrl(): string {\n return this.NOTIFICATION_API_ROOT;\n }\n setCardPaymentReturnUrl(cardPaymentReturnUrl: string):void {\n this.CARDPAYMENTRETURNURL = cardPaymentReturnUrl;\n }\n getCardPaymentReturnUrl(): string {\n return this.CARDPAYMENTRETURNURL;\n }\n}\n","import { Injectable } from '@angular/core';\nimport { Observable, BehaviorSubject } from 'rxjs';\nimport {IOrderReferenceFee} from '../interfaces/IOrderReferenceFee';\nimport { IRefundList } from '../interfaces/IRefundList';\nimport { IPaymentView } from '../interfaces/IPaymentView'; \n\n@Injectable({\n providedIn: 'root'\n})\nexport class OrderslistService {\n private ordersList: BehaviorSubject<IOrderReferenceFee[]> = new BehaviorSubject<IOrderReferenceFee[]>(null);\n private refundView: BehaviorSubject<IRefundList> = new BehaviorSubject<IRefundList>(null);\n private caseType = new BehaviorSubject(\"\");\n getcaseType = this.caseType.asObservable();\n private feeExists = new BehaviorSubject<boolean>(null);\n getFeeExist = this.feeExists.asObservable();\n private ccdCaseNumber = new BehaviorSubject(\"\");\n getCCDCaseNumberforRefund = this.ccdCaseNumber.asObservable();\n private isFromServiceRequestPage = new BehaviorSubject<boolean>(null);\n getisFromServiceRequestPage = this.isFromServiceRequestPage.asObservable();\n private OrderRefId = new BehaviorSubject(\"\");\n getOrderRefId = this.OrderRefId.asObservable();\n private navigationPage = new BehaviorSubject(\"\");\n getnavigationPage = this.navigationPage.asObservable();\n\n private orderRef = new BehaviorSubject(\"\");\n getorderRef = this.orderRef.asObservable();\n private orderCCDEvent = new BehaviorSubject(\"\");\n getorderCCDEvent = this.caseType.asObservable();\n private orderCreated = new BehaviorSubject<Date>(null);\n getorderCreated = this.orderCreated.asObservable();\n private orderParty = new BehaviorSubject(\"\");\n getorderParty = this.orderParty.asObservable();\n private orderRemissionTotal = new BehaviorSubject<number>(null);\n getorderRemissionTotal = this.orderRemissionTotal.asObservable();\n private orderFeesTotal = new BehaviorSubject<number>(null);\n getorderFeesTotal = this.orderFeesTotal.asObservable();\n private orderTotalPayments = new BehaviorSubject<number>(null);\n getorderTotalPayments = this.orderTotalPayments.asObservable();\n private rolesList: BehaviorSubject<any[]> = new BehaviorSubject<any[]>(null);\n\n private orderDetail: BehaviorSubject<any[]> = new BehaviorSubject<any[]>(null);\n\n private paymentPageView: BehaviorSubject<IPaymentView> = new BehaviorSubject<IPaymentView>(null);\n\n constructor() { }\n\n setOrdersList(orderLevelFees: IOrderReferenceFee[]): void {\n this.ordersList.next(Object.assign([], orderLevelFees));\n }\n getOrdersList() {\n return this.ordersList;\n }\n\n setRefundView(refundList: IRefundList): void {\n this.refundView.next(Object.assign([], refundList));\n }\n getRefundView() {\n return this.refundView;\n }\n\n setCaseType(caseType: string){\n this.caseType.next(caseType);\n }\n getCaseType(){\n return this.caseType;\n }\n\n setCCDCaseNumber(ccdCaseNumber: string){\n this.ccdCaseNumber.next(ccdCaseNumber);\n }\n getCCDCaseNumber(){\n return this.ccdCaseNumber;\n }\n\n setFeeExists(feeExists: boolean){\n this.feeExists.next(feeExists);\n }\n getFeeExists(){\n return this.feeExists;\n } \n\n setisFromServiceRequestPage(isFromServiceRequestPage: boolean){\n this.isFromServiceRequestPage.next(isFromServiceRequestPage);\n }\n getisFromServiceRequestPages(){\n return this.isFromServiceRequestPage;\n }\n\n setOrderRefId(OrderRefId: string){\n this.OrderRefId.next(OrderRefId);\n }\n getSelectedOrderRefId(){\n return this.OrderRefId;\n }\n\n setnavigationPage(navigationPage: string){\n this.navigationPage.next(navigationPage);\n }\n getnavigationPageValue(){\n return this.navigationPage;\n }\n\n setpaymentPageView(paymentpageList: IPaymentView): void {\n this.paymentPageView.next(Object.assign([], paymentpageList));\n }\n getpaymentPageView() {\n return this.paymentPageView;\n }\n\n setUserRolesList(rolesList:any[]): void {\n this.rolesList.next(Object.assign([], rolesList));\n }\n getUserRolesList() {\n return this.rolesList;\n }\n\n setorderDetail(orderDetail:any[]): void {\n this.orderDetail.next(Object.assign([], orderDetail));\n }\n getorderDetail() {\n return this.orderDetail;\n }\n\n setOrderRef(orderRef: string){\n this.orderRef.next(orderRef);\n }\n getorderRefs(){\n return this.orderRef;\n }\n\n setorderCCDEvent(orderCCDEvent: string){\n this.orderCCDEvent.next(orderCCDEvent);\n }\n getorderCCDEvents(){\n return this.orderCCDEvent;\n }\n\n setorderCreated(orderCreated: Date){\n this.orderCreated.next(orderCreated);\n }\n getorderCreateds(){\n return this.orderCreated;\n }\n\n setorderParty(orderParty: string){\n this.orderParty.next(orderParty);\n }\n getorderPartys(){\n return this.orderParty;\n }\n\n setorderRemissionTotal(orderRemissionTotal: number){\n this.orderRemissionTotal.next(orderRemissionTotal);\n }\n getorderRemissionTotals(){\n return this.orderRemissionTotal;\n }\n\n setorderFeesTotal(orderFeesTotal: number){\n this.orderFeesTotal.next(orderFeesTotal);\n }\n getorderFeesTotals(){\n return this.orderFeesTotal;\n }\n\n setorderTotalPayments(orderTotalPayments: number){\n this.orderTotalPayments.next(orderTotalPayments);\n }\n getoorderTotalPaymentss(){\n return this.orderTotalPayments;\n }\n}\n","import { ChangeDetectorRef, Component, Input, OnInit } from '@angular/core';\nimport { PaymentLibService } from './payment-lib.service';\nimport { IBSPayments } from './interfaces/IBSPayments';\nimport { OrderslistService } from './services/orderslist.service';\nimport { IPayment } from './interfaces/IPayment';\n\n@Component({\n selector: 'ccpay-payment-lib',\n template: `\n <ccpay-refund-list [USERID]=\"USERID\" [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" [LOGGEDINUSEREMAIL]=\"LOGGEDINUSEREMAIL\" *ngIf=\"viewName === 'refund-list'\"></ccpay-refund-list>\n <ccpay-payment-list *ngIf=\"viewName === 'payment-list'\"></ccpay-payment-list>\n <ccpay-refund-status\n [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\"\n [API_ROOT]=\"API_ROOT\"\n *ngIf=\"viewName === 'refundstatuslist'\"> </ccpay-refund-status >\n <ccpay-payment-view [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'payment-view'\"\n [isTurnOff]=\"ISTURNOFF\" [isTakePayment]=\"TAKEPAYMENT\" [caseType]=\"CASETYPE\"\n [ISPAYMENTSTATUSENABLED] = \"ISPAYMENTSTATUSENABLED\"\n ></ccpay-payment-view>\n\n <ccpay-process-refund *ngIf=\"viewName === 'process-refund'\"\n [refundReference]=\"refundReference\"\n [refundlistsource]=\"refundlistsource\"\n ></ccpay-process-refund>\n <ccpay-pba-payment *ngIf=\"viewName === 'pba-payment'\"\n [pbaPayOrderRef]=\"pbaPayOrderRef\"\n ></ccpay-pba-payment>\n <ccpay-case-transactions [isTakePayment]=\"isTakePayment\" [isFromServiceRequestPage]=\"isFromServiceRequestPage\" [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'case-transactions'\"></ccpay-case-transactions>\n <app-mark-unidentified-payment *ngIf=\"viewName === 'unidentifiedPage'\"\n [caseType]=\"CASETYPE\"></app-mark-unidentified-payment>\n <app-mark-unsolicited-payment *ngIf=\"viewName === 'unsolicitedPage'\"\n [caseType]=\"CASETYPE\"></app-mark-unsolicited-payment>\n <app-allocate-payments *ngIf=\"viewName === 'allocate-payments'\"\n [isTurnOff]=\"ISTURNOFF\"\n [caseType]=\"CASETYPE\"\n ></app-allocate-payments>\n <ccpay-fee-summary *ngIf=\"viewName === 'fee-summary'\"\n [ccdCaseNumber]=\"CCD_CASE_NUMBER\"\n [paymentGroupRef]=\"paymentGroupReference\"\n [isTurnOff]=\"ISTURNOFF\"\n [caseType]=\"CASETYPE\"\n ></ccpay-fee-summary>\n <ccpay-reports *ngIf=\"viewName === 'reports'\"\n [ISPAYMENTSTATUSENABLED] = \"ISPAYMENTSTATUSENABLED\"\n ></ccpay-reports>\n `\n})\n\nexport class PaymentLibComponent implements OnInit {\n @Input('API_ROOT') API_ROOT: string;\n @Input('BULKSCAN_API_ROOT') BULKSCAN_API_ROOT: string;\n @Input('REFUNDS_API_ROOT') REFUNDS_API_ROOT: string;\n @Input('NOTIFICATION_API_ROOT') NOTIFICATION_API_ROOT: string;\n @Input('CARDPAYMENTRETURNURL') CARDPAYMENTRETURNURL: string;\n @Input('CCD_CASE_NUMBER') CCD_CASE_NUMBER: string;\n @Input('EXC_REFERENCE') EXC_REFERENCE: string;\n @Input('PAYMENT_METHOD') PAYMENT_METHOD: string;\n @Input('VIEW') VIEW: string;\n @Input('VIEWSERVICE') VIEWSERVICE: string;\n @Input('PAYMENT_GROUP_REF') PAYMENT_GROUP_REF?: string;\n @Input('TAKEPAYMENT') TAKEPAYMENT: boolean;\n @Input('SERVICEREQUEST') SERVICEREQUEST: string;\n @Input('DCN_NUMBER') DCN_NUMBER: string;\n @Input('SELECTED_OPTION') SELECTED_OPTION: string;\n @Input('ISBSENABLE') ISBSENABLE: Boolean;\n @Input('ISSFENABLE') ISSFENABLE: boolean;\n @Input('ISTURNOFF') ISTURNOFF: boolean;\n @Input('CASETYPE') CASETYPE: string;\n @Input('ISPAYMENTSTATUSENABLED') ISPAYMENTSTATUSENABLED: boolean;\n @Input('rootUrl') rootUrl: boolean;\n @Input('REFUNDLIST') REFUNDLIST: string;\n @Input('USERID') USERID: string;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: any[];\n @Input('LOGGEDINUSEREMAIL') LOGGEDINUSEREMAIL: string;\n @Input('isFromServiceRequestPage') isFromServiceRequestPage: boolean;\n\n paymentMethod: string;\n bspaymentdcn: string;\n unProcessedPaymentServiceId: string = null;\n paymentGroupReference: string;\n paymentReference: string;\n refundReference: string;\n isFromPayBubble: boolean = false;\n refundlistsource: any;\n viewName: string;\n isTurnOff: boolean;\n caseType: string;\n unProcessedPayment: IBSPayments = null;\n isRefundStatusView: boolean;\n isRedirectFromCaseTransactionPage: string;\n isCallFromRefundList: boolean;\n isFromRefundStatusPage: boolean;\n iscancelClicked : boolean;\n isFromPaymentDetailPage: boolean;\n pbaPayOrderRef: IPayment;\n isTakePayment: boolean;\n\n orderDetail: any[];\n orderRef: string;\n orderStatus: string;\n orderParty: string;\n orderCreated: Date;\n orderCCDEvent: string;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n orderFeesTotal: number = 0.00;\n orderRemissionTotal: number = 0.00;\n orderTotalPayments: number = 0.00;\n orderPendingPayments: number = 0.00;\n\n constructor(private paymentLibService: PaymentLibService,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) { }\n ngAfterContentChecked(): void {\n this.cd.detectChanges();\n }\n\n\n ngOnInit() {\n this.paymentLibService.setApiRootUrl(this.API_ROOT);\n this.paymentLibService.setBulkScanApiRootUrl(this.BULKSCAN_API_ROOT);\n this.paymentLibService.setRefundndsApiRootUrl(this.REFUNDS_API_ROOT);\n this.paymentLibService.setNoticationApiRootUrl(this.NOTIFICATION_API_ROOT);\n this.paymentLibService.setCardPaymentReturnUrl(this.CARDPAYMENTRETURNURL);\n\n if(this.LOGGEDINUSERROLES.length > 0) {\n this.OrderslistService.setUserRolesList(this.LOGGEDINUSERROLES);\n }\n if (this.PAYMENT_GROUP_REF) {\n this.paymentGroupReference = this.PAYMENT_GROUP_REF;\n }\n if (this.DCN_NUMBER) {\n this.bspaymentdcn = this.DCN_NUMBER;\n }\n if (this.REFUNDLIST === \"true\") {\n this.VIEW = 'refund-list';\n this.viewName = this.VIEW;\n }\n if (this.VIEW === 'fee-summary') {\n this.viewName = 'fee-summary';\n } else if (this.VIEW !== 'reports' && this.VIEW !== 'refund-list') {\n this.viewName = 'case-transactions';\n } else {\n this.viewName = this.VIEW;\n }\n\n if (this.isTakePayment) {\n this.TAKEPAYMENT = true;\n }\n }\n}\n","import { Injectable } from '@angular/core';\nimport { _throw } from 'rxjs/observable/throw';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { HttpErrorResponse } from '@angular/common/http';\nimport { stringify } from '@angular/core/src/util';\n\n@Injectable({\n providedIn: 'root'\n})\n\n\nexport class ErrorHandlerService {\n\n constructor() { }\n\n\n handleError(err: HttpErrorResponse): Observable<any> {\n let errorMessage: string;\n if (err.error instanceof Error) {\n // A client-side or network error occurred.\n errorMessage = `An error occurred: ${err.error.message}`;\n } else {\n // The backend returned an unsuccessful response code.\n if (err.status === 404) {\n\n if (typeof err.error === 'string' && err.error !== undefined) {\n \n if(err.error.length > 60) {\n if (JSON.parse(err.error).statusCode !== undefined && JSON.parse(err.error).statusCode === 500)\n {\n errorMessage = 'Internal server error';\n } else {\n if(err.error.length > 60) {\n errorMessage = JSON.parse(err.error).error;\n } else {\n errorMessage = err.error;\n }\n \n }\n } else {\n errorMessage = err.error;\n }\n } else {\n errorMessage = JSON.parse(err.error).error;\n }\n \n }\n else if (err.status === 500) {\n errorMessage = 'Internal server error';\n } else if (err.error.messsage === undefined) {\n if( typeof err.error === 'object') {\n errorMessage = JSON.parse(JSON.stringify(err.error)).error;\n } else {\n if (typeof err.error === 'string' && err.error !== undefined) {\n \n if(err.error.length > 60) {\n if (JSON.parse(err.error).statusCode !== undefined && JSON.parse(err.error).statusCode === 500)\n {\n errorMessage = 'Internal server error';\n } else {\n if(err.error.length > 60) {\n errorMessage = JSON.parse(err.error).error;\n } else {\n errorMessage = err.error;\n }\n \n }\n } else {\n errorMessage = err.error;\n }\n } else {\n errorMessage = JSON.parse(err.error).error;\n }\n \n }\n \n } else {\n if (err.error.message !== undefined) {\n errorMessage = `${err.error.message}`;\n } else {\n errorMessage = `${err.error}`;\n }\n \n }\n }\n return _throw(errorMessage);\n }\n\n\n getServerErrorMessage(isErrorExist, isDataNotExist = false, error='') {\n const bodyContent = isDataNotExist ? error : 'Try again later';\n return {\n title: \"There is a problem with the service\",\n body: bodyContent,\n showError: isErrorExist\n };\n }\n}\n","import { Injectable } from '@angular/core';\n\nconst noop = (): any => undefined;\n\nexport abstract class Logger {\n\n info: any;\n warn: any;\n error: any;\n}\n\n@Injectable({\n providedIn: 'root'\n})\nexport class LoggerService implements Logger {\n\n info: any;\n warn: any;\n error: any;\n\n invokeConsoleMethod(type: string, args?: any): void {}\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\n\nimport { Observable } from 'rxjs/internal/Observable';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { IPayments } from '../../interfaces/IPayments';\nimport { catchError } from 'rxjs/operators';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PaymentListService {\n payments: IPayments;\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n\n getPaymentByCcdCaseNumber(ccdCaseNumber: string, paymentMethod: string): Observable<IPayments> {\n this.logger.info('Payment-list-service getPaymentByCcdCaseNumber for: ', ccdCaseNumber);\n\n return this.http.get<IPayments>(`${this.paymentLibService.API_ROOT}/cases/${ccdCaseNumber}/payments`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import {Component, OnInit} from '@angular/core';\n\nimport {PaymentListService} from '../../services/payment-list/payment-list.service';\nimport {IPayments} from '../../interfaces/IPayments';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport {IStatusHistory} from '../../interfaces/IStatusHistory';\n\n@Component({\n selector: 'ccpay-payment-list',\n templateUrl: './payment-list.component.html',\n styleUrls: ['./payment-list.component.css']\n})\nexport class PaymentListComponent implements OnInit {\n payments: IPayments;\n errorMessage: string;\n code: string;\n\n constructor(private paymentListService: PaymentListService,\n private paymentLibComponent: PaymentLibComponent) {\n }\n\n ngOnInit() {\n this.paymentListService.getPaymentByCcdCaseNumber(this.paymentLibComponent.CCD_CASE_NUMBER, this.paymentLibComponent.PAYMENT_METHOD)\n .subscribe(\n payments => this.payments = payments,\n (error: any) => this.errorMessage = <any>error\n );\n }\n\n loadPaymentViewComponent(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.paymentLibComponent.paymentMethod = paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n}\n","/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Meta } from '@angular/platform-browser';\nimport { Observable } from 'rxjs';\n\n@Injectable()\nexport class WebComponentHttpClient {\n constructor(\n private http: HttpClient,\n private meta: Meta\n ) { }\n\n post(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.post(url, body, opts);\n }\n\n put(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.put(url, body, opts);\n }\n\n get(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.get(url, opts);\n }\n\n delete(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.delete(url, opts);\n }\n \n patch(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.patch(url, body, opts);\n }\n\n addHeaders(options: any): any {\n const csrfToken = this.meta.getTag('name=csrf-token');\n const headers = {};\n \n if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n if (csrfToken === null) {\n if( document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')) !== undefined ) {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')).split('=')[1]; \n } else {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith(' XSRF-TOKEN')).split('=')[1];\n }\n \n } else {\n headers['CSRF-Token'] = csrfToken.content;\n }\n options.headers = new HttpHeaders(headers);\n options.responseType = 'text';\n return options;\n }\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { v4 as uuidv4 } from 'uuid';\nimport {IPayment} from '../../interfaces/IPayment';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { catchError } from 'rxjs/operators';\nimport { LoggerService } from '../shared/logger/logger.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { PayhubAntennaRequest } from '../../interfaces/PayhubAntennaRequest';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { Meta } from '@angular/platform-browser';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { IAllocationPaymentsRequest } from '../../interfaces/IAllocationPaymentsRequest';\nimport {IOrderReferenceFee} from '../../interfaces/IOrderReferenceFee';\nimport { BehaviorSubject } from 'rxjs';\nimport { IserviceRequestPbaPayment } from '../../interfaces/IserviceRequestPbaPayment';\nimport { IserviceRequestCardPayment } from '../../interfaces/IserviceRequestCardPayment';\nimport { RefundsRequest } from '../../interfaces/RefundsRequest';\nimport { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\nimport { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';\nimport { error } from '@angular/compiler/src/util';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PaymentViewService {\n private ordersList = <BehaviorSubject<IOrderReferenceFee[]>>new BehaviorSubject([]);\n\n private meta: Meta;\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getPaymentDetails(paymentReference: string, paymentMethod: string): Observable<IPayment> {\n this.logger.info('Payment-view-service getPaymentDetails for: ', paymentReference);\n\n return this.http.get<IPayment>(paymentMethod === 'card' || paymentMethod === 'cash' || paymentMethod === 'cheque' || paymentMethod === 'postal order' ?\n `${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}` :\n `${this.paymentLibService.API_ROOT}/credit-account-payments/${paymentReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getPaymentGroupDetails(paymentGroupReference: string): Observable<IPaymentGroup> {\n this.logger.info('Payment-view-service getPaymentGroupDetails for: ', paymentGroupReference);\n\n return this.http.get<IPayment>(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getApportionPaymentDetails(paymentReference: string): Observable<IPaymentGroup> {\n this.logger.info('Payment-view-service getPaymentGroupDetails for: ', paymentReference);\n\n return this.http.get<IPayment>(`${this.paymentLibService.API_ROOT}/payment-groups/fee-pay-apportion/${paymentReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getPBAaccountDetails(): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/pba-accounts`;\n return this.http.get(url, { withCredentials: true }).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postWays2PayCardPayment(serviceRef: string, body: IserviceRequestCardPayment): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/service-request/${serviceRef}/card-payments`;\n const rurl = this.paymentLibService.CARDPAYMENTRETURNURL.replace('.prod', '');\n body['return-url'] = `${rurl}/payment`;\n return this.https.post(url, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n \n postPBAaccountPayment(serviceRef: string, body: IserviceRequestPbaPayment): Observable<any> {\n let randomKey = 'idam-key-' + Math.random().toString().split('.').join('-');\n body['idempotency_key'] = randomKey; \n const url = `${this.paymentLibService.API_ROOT}/service-request/${serviceRef}/pba-payments`;\n return this.https.post(url, body);\n }\n\n postBSPayments(body: AllocatePaymentRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/bulk-scan-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSUnidentifiedPayments(body: UnidentifiedPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSUnsolicitedPayments(body: UnsolicitedPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSAllocationPayments(body: IAllocationPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postPaymentGroupWithRemissions(paymentGroupReference: string, feeId: number, body: AddRemissionRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}/fees/${feeId}/remissions`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n deleteFeeFromPaymentGroup(feeId: number): Observable<any> {\n this.logger.info('Payment-view-service deleteFeeFromPaymentGroup for: ', feeId);\n return this.https.delete(`${this.paymentLibService.API_ROOT}/fees/${feeId}`).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postPaymentToPayHub(body: PaymentToPayhubRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/card-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postPaymentAntennaToPayHub(body: PayhubAntennaRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/telephony-card-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n downloadSelectedReport(reportName: string, startDate: string, endDate:string): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/report/data?date_from=${startDate}&date_to=${endDate}&report_type=${reportName}`;\n return this.https.get(url, { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n downloadFailureReport(startDate: string, endDate:string): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/payment-failures/failure-report?date_from=${startDate}&date_to=${endDate}`;\n return this.https.get(url, { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getBSfeature(): Observable<any> {\n return this.https.get('api/payment-history/bulk-scan-feature', { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getSiteID(): Observable<any> {\n return this.https.get('api/payment-history/refdata/legacy-sites', { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getPartyDetails(caseNumber: string): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/case-payment-orders?case_ids=${caseNumber}`;\n return this.https.get(url, { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n \n setOrdersList(orderLevelFees: IOrderReferenceFee[]): void {\n this.ordersList.next(Object.assign([], orderLevelFees));\n}\n getOrdersList() {\n return this.ordersList;\n }\n\n //issue refund\n postRefundsReason(body: PostRefundRetroRemission): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/refund-for-payment`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n // retro remissions\n postPaymentGroupWithRetroRemissions(paymentGroupReference: string, feeId: number, body: AddRetroRemissionRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}/fees/${feeId}/retro-remission`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postRefundRetroRemission(body:PostIssueRefundRetroRemission) {\n return this.https.post(`${this.paymentLibService.API_ROOT}/refund-retro-remission`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getPaymentFailure(paymentReference: string): Observable<any> {\n return this.https.get(`${this.paymentLibService.API_ROOT}/payment-failures/${paymentReference}`, {\n withCredentials: true\n }).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { IFee } from \"./IFee\";\nimport { IRefundContactDetails } from \"./IRefundContactDetails\";\n\nexport class PostRefundRetroRemission {\n ccd_case_number: string;\n payment_reference: string;\n refund_reason: string;\n total_refund_amount: any;\n fees: any[];\n is_over_payment: boolean;\n contact_details: IRefundContactDetails\n \n constructor(contact_details:any,fees: any[], payment_reference : string,refund_reason:string, total_refund_amount : any, is_over_payment: string ) {\n this.contact_details = contact_details;\n this.fees = fees;\n this.payment_reference= payment_reference;\n this.refund_reason = refund_reason;\n\t this.total_refund_amount = total_refund_amount;\n this.is_over_payment = is_over_payment === 'op';\n } \n}","import { Component, OnInit, Input } from '@angular/core';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\nimport { ChangeDetectorRef } from '@angular/core';\nimport { IPaymentFailure } from '../../interfaces/IPaymentFailure';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';\n\n@Component({\n selector: 'ccpay-payment-view',\n templateUrl: './payment-view.component.html',\n styleUrls: ['./payment-view.component.scss']\n})\n\nexport class PaymentViewComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() isTakePayment: boolean;\n @Input() caseType: boolean;\n @Input() orderRef: string;\n @Input() orderStatus: string;\n @Input() orderTotalPayments: number;\n @Input() payment: IPayment;\n @Input() LOGGEDINUSERROLES: string[];\n @Input() ISPAYMENTSTATUSENABLED: string;\n @Input() orderParty: string;\n @Input() orderCreated: Date;\n @Input() orderCCDEvent: string;\n @Input() orderFeesTotal: number;\n @Input() orderRemissionTotal: number;\n @Input() orderDetail: any[];\n fees: any;\n isFullyRefund: boolean;\n @Input(\"isServiceRequest\") isServiceRequest: string;\n errorMsg: string;\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n ccdCaseNumber: string;\n selectedOption: string;\n dcnNumber: string;\n isStatusAllocated: boolean;\n isRemissionsMatch: boolean;\n feeId: IFee;\n viewStatus: string;\n isRefundRemission: boolean = false;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n remissions: IRemission[] = [];\n allPaymentsFailure: IPaymentFailure[] = [];\n selectedPaymentsStatus: IPaymentFailure;\n remissionFeeAmt: number;\n isRefundRemissionBtnEnable: boolean;\n serviceReference: string;\n isFromServiceRequestPage: boolean;\n isFromPaymentDetailPage: boolean;\n paymentFees: IFee[];\n paymentType: string;\n isContinueBtnDisabled: boolean = true;\n viewCompStatus: string;\n contactDetailsObj: IRefundContactDetails\n notification: any;\n isConfirmationBtnDisabled: boolean;\n refundReference: string;\n refundAmount: string;\n constructor(private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) {\n }\n\n ngAfterContentChecked(): void {\n this.cd.detectChanges();\n }\n\n ngOnInit() {\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION;\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.serviceReference = this.paymentLibComponent.paymentGroupReference;\n this.viewStatus = 'paymentview';\n this.paymentViewService.getApportionPaymentDetails(this.paymentLibComponent.paymentReference).subscribe(\n paymentGroup => {\n let fees = [];\n paymentGroup.fees.forEach(fee => {\n this.isRemissionsMatch = false;\n\n paymentGroup.remissions.forEach(rem => {\n if (rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n if (!this.isRemissionsMatch) {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees\n this.paymentFees =fees;\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n\n },\n (error: any) => this.errorMessage = error\n );\n this.paymentViewService.getPaymentFailure(this.paymentLibComponent.paymentReference).subscribe({\n next: (res) => {\n JSON.parse(res).payment_failure_list.reverse().forEach(payments => {\n\n this.allPaymentsFailure.push(payments.payment_failure_initiated);\n if(payments.payment_failure_closed) {\n this.allPaymentsFailure.push(payments.payment_failure_closed);\n }\n });\n this.allPaymentsFailure = this.allPaymentsFailure.reverse();\n },\n error: (e) => {\n this.allPaymentsFailure = [];\n this.errorMsg = \"Server error\"\n }\n })\n }\n\n get isCardPayment(): boolean {\n return this.paymentGroup.payments[0].method === 'card';\n }\n\n get isTelephonyPayment(): boolean {\n return this.paymentGroup.payments[0].channel === 'telephony';\n }\n\n public goToPaymentList(): void {\n this.paymentLibComponent.viewName = 'payment-list';\n }\n getOverPaymentValue() {\n let feesOverPayment = 0;\n this.paymentGroup.fees.forEach(fee => {\n feesOverPayment += fee.over_payment;\n });\n return feesOverPayment > 0 ? feesOverPayment : this.paymentGroup.payments[0].over_payment;\n\n }\n goToServiceRequestPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = false;\n this.paymentLibComponent.SERVICEREQUEST = 'true';\n this.paymentLibComponent.isFromServiceRequestPage = true;\n window.location.reload();\n }\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n if (!this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.resetOrderData();\n } else {\n this.OrderslistService.getorderRefs().subscribe((data) => this.orderRef = data);\n this.OrderslistService.getorderCCDEvents().subscribe((data) => this.orderCCDEvent = data);\n this.OrderslistService.getorderCreateds().subscribe((data) => this.orderCreated = data);\n this.OrderslistService.getorderDetail().subscribe((data) => this.orderDetail = data);\n this.OrderslistService.getorderPartys().subscribe((data) => this.orderParty = data);\n this.OrderslistService.getorderRemissionTotals().subscribe((data) => this.orderRemissionTotal = data);\n this.OrderslistService.getorderFeesTotals().subscribe((data) => this.orderFeesTotal = data);\n this.OrderslistService.getoorderTotalPaymentss().subscribe((data) => this.orderTotalPayments = data);\n this.viewStatus = 'order-full-view';\n }\n\n }\n\n addRemission(fee: IFee) {\n if(this.chkIsAddRemissionBtnEnable(fee)) {\n this.feeId = fee;\n this.paymentViewService.getApportionPaymentDetails(this.paymentGroup.payments[0].reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n this.paymentLibComponent.isFromPaymentDetailPage = true;\n this.viewStatus = 'addremission';\n this.isRefundRemission = true;\n this.cd.detectChanges();\n },\n (error: any) => this.errorMessage = error\n );\n }\n }\n\n checkForFees(paymentGroup: any) {\n if(paymentGroup !== null && paymentGroup !== undefined)\n {\n if (paymentGroup.fees !== null && paymentGroup.fees !== undefined) {\n return true;\n }\n\n }\n return false;\n }\n processRefund() {\n this.isConfirmationBtnDisabled = true;\n this.errorMessage = '';\n const obj = this.paymentGroup.fees[0];\n this.fees = [{ id: obj.id, \n code: obj.code,\n version:obj.version, \n apportion_amount: obj.apportion_amount,\n calculated_amount: obj.calculated_amount,\n updated_volume: obj.updated_volume ? obj.updated_volume : obj.volume,\n volume: obj.volume,\n refund_amount: this.getOverPaymentValue() }];\n const requestBody = new PostRefundRetroRemission(this.contactDetailsObj,this.fees, this.paymentGroup.payments[0].reference, 'RR037', \n this.getOverPaymentValue(), 'op');\n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n })\n }\n gotoAddressPage(note?: IRefundContactDetails) {\n if (note) {\n this.notification = { contact_details: note, notification_type: note.notification_type };\n }\n this.errorMessage = '';\n this.viewCompStatus = 'overPaymentAddressCapture';\n }\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n //if(!this.chkIsIssueRefundBtnEnable(payment)) {\n this.paymentViewService.getApportionPaymentDetails(payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(payment.reference));\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n this.viewStatus = 'addrefundforremission';\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n //}\n }\n\n goToPaymentViewComponent() {\n this.viewCompStatus = '';\n this.viewStatus = 'paymentview';\n }\n issueRefund(paymentgrp: IPaymentGroup) {\n if (paymentgrp !== null && paymentgrp !== undefined) {\n if(this.chkIsIssueRefundBtnEnable(paymentgrp.payments[0])) {\n if(paymentgrp.payments[0].over_payment > 0) {\n this.viewCompStatus = 'overpayment';\n } else {\n this.paymentGroup = paymentgrp;\n this.viewStatus = 'issuerefund';\n this.isRefundRemission = true;\n this.paymentLibComponent.isFromPaymentDetailPage = true;\n this.isFromPaymentDetailPage = true;\n this.isFromServiceRequestPage = false;\n }\n }\n }\n }\n getRemissionByFeeCode(feeCode: string, remissions: IRemission[]): IRemission {\n if (remissions && remissions.length > 0) {\n for (const remission of remissions) {\n if (remission.fee_code === feeCode) {\n return remission;\n }\n }\n }\n return null;\n }\n\n chkIsIssueRefundBtnEnable(payment: IPayment): boolean {\n if (payment !== null && payment !== undefined) {\n return payment.issue_refund && payment.refund_enable\n } else {\n return false;\n }\n }\n\n chkIsAddRefundBtnEnable(remission: IRemission): boolean {\n if (remission !== null && remission !== undefined) {\n return remission.add_refund;\n } else {\n return false;\n }\n }\n\n chkIsAddRemissionBtnEnable(fee: IFee): boolean {\n if (fee !== null && fee !== undefined) {\n return fee.add_remission && fee.remission_enable;\n } else {\n return false\n }\n}\n selectPymentOption(paymentType: string) {\n this.paymentType = paymentType;\n this.isContinueBtnDisabled = false;\n }\n continuePayment(paymentgrp: IPaymentGroup) {\n \n if (this.paymentType === 'op') {\n this.isFullyRefund = false\n this.viewCompStatus = 'overPaymentAddressCapture';\n } else if(this.paymentType === 'fp') {\n this.isFullyRefund = true\n this.paymentGroup = paymentgrp;\n this.viewStatus = 'issuerefund';\n this.viewCompStatus = \"\";\n this.isRefundRemission = true;\n this.paymentLibComponent.isFromPaymentDetailPage = true;\n this.isFromPaymentDetailPage = true;\n this.isFromServiceRequestPage = this.paymentLibComponent.isFromServiceRequestPage;\n }\n }\n gotoPaymentSelectPage(event: Event) {\n event.preventDefault();\n this.viewCompStatus = 'overpayment';\n }\n getContactDetails(obj:IRefundContactDetails) {\n this.contactDetailsObj = obj;\n this.viewCompStatus = 'overpaymentcheckandanswer';\n }\n\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n\n goToPaymentFailuePage(payment: any) {\n this.viewStatus = 'payment-failure';\n this.selectedPaymentsStatus = payment;\n }\n goBackToPaymentView(event: any) {\n event.preventDefault();\n this.viewStatus = 'paymentview';\n }\n}\n","import { Injectable } from '@angular/core';\nimport {HttpClient, HttpHeaders} from '@angular/common/http';\nimport { Meta } from '@angular/platform-browser';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {catchError} from 'rxjs/operators';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { IPatchRefundAction } from '../../interfaces/IPatchRefundAction';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { IssueRefundRequest } from '../../interfaces/IssueRefundRequest';\nimport { IResubmitRefundRequest } from '../../interfaces/IResubmitRefundRequest';\nimport { IRefundStatusHistory } from '../../interfaces/IRefundStatusHistory';\nimport { IPutNotificationRequest } from '../../interfaces/IPutNotificationRequest';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class RefundsService {\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService,\n private meta: Meta\n ) { }\n\n getRefundReasons(): Observable<IRefundReasons[]> {\n return this.http.get<IRefundReasons[]>(`${this.paymentLibService.REFUNDS_API_ROOT}/reasons`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getRefundRejectReasons(): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/rejection-reasons`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getRefundActions(refundReference: string): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/${refundReference}/actions`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\npatchRefundActions(body:IPatchRefundAction, refundReference: string, reviewerAction: string): Observable<any> {\n // const opts = this.addHeaders({});\n return this.https.patch(`${this.paymentLibService.REFUNDS_API_ROOT}/${refundReference}/action/${reviewerAction}`, body)\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundList(refundstatus?: string, selfexclusive?:boolean): Observable<IRefundList[]> {\n return this.http.get<IRefundList[]>(`${this.paymentLibService.REFUNDS_API_ROOT}?status=${refundstatus}&excludeCurrentUser=${selfexclusive}`, \n {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundStatusHistory(reference?: string) {\n return this.http.get<IRefundStatusHistory>(`${this.paymentLibService.REFUNDS_API_ROOT}/${reference}/status-history`, \n {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundStatusList(ccdCaseNumber:string): Observable<IRefundList[]> {\n return this.http.get<IRefundList[]>(`${this.paymentLibService.REFUNDS_API_ROOT}?ccdCaseNumber=${ccdCaseNumber}`, {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetUserDetails(): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/get-user-details`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n \npostIssueRefund(body: IssueRefundRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.REFUNDS_API_ROOT}/refund`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\nputResendOrEdit(body: IPutNotificationRequest, refundRef:string, notificationType:string): Observable<any> {\n return this.https.put(`${this.paymentLibService.REFUNDS_API_ROOT}/resend/notification/${refundRef}?notificationType=${notificationType}`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\npatchResubmitRefund(body: IResubmitRefundRequest, refund_reference: string): Observable<any> {\n // const opts = this.addHeaders({});\n return this.https.patch(`${this.paymentLibService.REFUNDS_API_ROOT}/resubmit/${refund_reference}`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\naddHeaders(options: any): any {\n const csrfToken = this.meta.getTag('name=csrf-token');\n const headers = {};\n if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n if (csrfToken.content === null) {\n if( document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')) !== undefined ) {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')).split('=')[1]; \n } else {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith(' XSRF-TOKEN')).split('=')[1];\n }\n } else {\n headers['CSRF-Token'] = csrfToken.content;\n }\n options.headers = new HttpHeaders(headers);\n options.responseType = 'text';\n return options;\n}\n}\n","import {Component, OnInit, Input} from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport {RefundsService} from '../../services/refunds/refunds.service';\nimport { IRefundAction } from '../../interfaces/IRefundAction';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { IRefundRejectReason } from '../../interfaces/IRefundRejectReason';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { ActivatedRoute,Router } from '@angular/router';\n\n@Component({\n selector: 'ccpay-process-refund',\n templateUrl: './process-refund.component.html',\n styleUrls: ['./process-refund.component.css']\n})\nexport class ProcessRefundComponent implements OnInit {\n @Input() refundReference: string;\n @Input() refundlistsource: IRefundList;\n\n processRefundForm: FormGroup;\n\n errorMessage = this.getErrorMessage(false, '', '', '');\n sendmeback: string = null;\n viewStatus: string;\n refundActionList: IRefundAction[] = []; \n refundRejectReasonList: IRefundRejectReason[] = []; \n isSendMeBackClicked: boolean = false;\n isRejectClicked: boolean = false;\n isOtherClicked: boolean = false;\n isSuccesspageEnable: boolean = false;\n\n refundActionsHasError: boolean = false;\n refundRejectReasonHasError: boolean = false;\n isReasonFieldEmpty: boolean = false;\n isReasonFieldInvalid: boolean = false;\n reasonFieldMinHasError: boolean = false;\n reasonFieldMaxHasError: boolean = false;\n isReasonEmpty: boolean = false;\n isReasonInvalid: boolean = false;\n successMsg: string = null;\n navigationpage: string;\n ccdCaseNumber: string;\n isFromRefundListPage: boolean;\n cpoDetails:any = null;\n isCPODown: boolean;\n isConfirmButtondisabled: boolean = true;\n constructor(private RefundsService: RefundsService,\n private paymentViewService: PaymentViewService,\n private formBuilder: FormBuilder,\n private OrderslistService: OrderslistService,\n private paymentLibComponent: PaymentLibComponent,\n private router: Router,\n private activeRoute: ActivatedRoute) {\n }\n\n ngOnInit() {\n this.viewStatus = 'RefundProcess';\n this.RefundsService.getRefundActions(this.refundReference).subscribe(\n refundActionList => {\n this.refundActionList = <any>refundActionList;\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err, err);\n }\n );\n this.processRefundForm = this.formBuilder.group({\n refundActionField: new FormControl('', Validators.compose([\n Validators.required\n ])),\n refundRejectReasonField: new FormControl('', Validators.compose([\n Validators.required\n ])),\n sendMeBackField: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$'),\n\n ])),\n enterReasonField: new FormControl('', Validators.compose([\n Validators.required,\n Validators.maxLength(30),\n Validators.pattern('^([a-zA-Z0-9.\\\\s]*)$'),\n ])),\n });\n this.ccdCaseNumber = this.refundlistsource.ccd_case_number;\n\n if((typeof this.paymentLibComponent.TAKEPAYMENT === 'string' && this.paymentLibComponent.TAKEPAYMENT === 'false') || (typeof this.paymentLibComponent.TAKEPAYMENT === 'boolean' && !this.paymentLibComponent.TAKEPAYMENT) ) {\n this.isFromRefundListPage = true;\n }\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).content[0];\n\n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.isCPODown = true;\n }\n );\n }\n \n checkRefundActions(code: string) {\n this.refundActionsHasError = false;\n this.isReasonFieldEmpty = false;\n this.isReasonEmpty = false;\n this.isReasonInvalid = false;\n this.refundRejectReasonHasError = false;\n if(code === 'Return to caseworker') {\n this.isConfirmButtondisabled = true;\n this.isSendMeBackClicked = true;\n this.isRejectClicked = false;\n this.isOtherClicked = false;\n\n } else if (code === 'Approve') {\n this.isSendMeBackClicked = false;\n this.isConfirmButtondisabled = false;\n this.isRejectClicked = false;\n this.isOtherClicked = false;\n\n } else if (code === 'Reject') {\n this.isRejectClicked = true;\n this.isSendMeBackClicked = false;\n this.isOtherClicked = false;\n this.RefundsService.getRefundRejectReasons().subscribe(\n refundRejectReasonList => {\n this.refundRejectReasonList = <any>refundRejectReasonList;\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err, err);\n }\n );\n } else if (code === 'RE005') {\n this.isOtherClicked = true;\n } else if (code !== 'RE005') {\n this.isOtherClicked = false;\n }\n }\n processRefundSubmit() {\n let processRefundRequest;\n let status;\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n const controls = this.processRefundForm.controls;\n const processFormError = controls.sendMeBackField.errors;\n\n if (this.processRefundForm.dirty && controls.refundActionField.valid \n && (controls.refundActionField.value == 'Approve'\n || (controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.valid && controls.refundRejectReasonField.value != 'RE005')\n || (controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.value == 'RE005' && controls.enterReasonField.valid)\n || (controls.refundActionField.value == 'Return to caseworker' && controls.sendMeBackField.valid))) {\n if (controls.refundActionField.value === 'Approve'){\n status = 'APPROVE';\n processRefundRequest = {\n code:'',\n reason: ''\n };\n } else if (controls.refundActionField.value === 'Reject') {\n status = 'REJECT';\n\n processRefundRequest = {\n code: controls.refundRejectReasonField.value ? controls.refundRejectReasonField.value : '',\n reason: controls.refundRejectReasonField.value == 'RE005' ? controls.enterReasonField.value : ''\n };\n } else if (controls.refundActionField.value === 'Return to caseworker') {\n status = 'SENDBACK';\n\n processRefundRequest = {\n code: '',\n reason: controls.sendMeBackField.value\n };\n }\n this.RefundsService.patchRefundActions(processRefundRequest, this.refundReference, status).subscribe(\n response => {\n this.isSuccesspageEnable = true;\n // this.successMsg = JSON.parse(response)['data'];\n this.successMsg = response.replace(/['\"]+/g, '');\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err, err);\n }\n );\n } else {\n if(controls.refundActionField.value == \"\") {\n this.resetForm([true, false, false, false, false, false, false, false], 'action');\n }\n if(controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.value == \"\") {\n this.resetForm([false, true, false, false, false, false, false, false], 'rejectReason');\n }\n if(controls.refundActionField.value == 'Return to caseworker') {\n if(controls.sendMeBackField.value == '' ) {\n this.resetForm([false, false, true, false, false, false, false, false], 'addAreason');\n }\n if(controls.sendMeBackField.value != '' && controls.sendMeBackField.invalid ) {\n this.resetForm([false, false, false, true, false, false, false, false], 'addAreason');\n }\n if(processFormError && processFormError.minlength && processFormError.minlength.actualLength < 3 ) {\n this.resetForm([false, false, false, false, true, false, false, false], 'addAreason');\n }\n if(processFormError && processFormError.maxlength && processFormError.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, false, false, true, false, false], 'addAreason');\n }\n }\n if(controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.value == 'RE005') {\n if(controls.enterReasonField.value === \"\") {\n this.resetForm([false, false, false, false, false, false, true, false], 'enterReason');\n }\n if(controls.enterReasonField.value!== \"\" && controls.enterReasonField.invalid) {\n this.resetForm([false, false, false, false, false, false, false, true], 'enterReason');\n }\n }\n }\n\n }\n getErrorMessage(isErrorExist, status, errorMsg, err) {\n let bodyTxt = 'Please try again later';\n if (status !== 500) {\n if (errorMsg !== undefined) {\n bodyTxt = errorMsg;\n } else {\n bodyTxt = err;\n }\n \n }\n return {\n title: 'Something went wrong',\n body: bodyTxt,\n showError: isErrorExist\n };\n }\n loadRefundListPage() {\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n if (this.navigationpage === 'casetransactions') {\n // window.location.href='/refund-list?takePayment=false&refundlist=true';\n // // this.OrderslistService.setnavigationPage('casetransactions');\n // // this.OrderslistService.setisFromServiceRequestPage(false);\n // // this.paymentLibComponent.VIEW ='case-transactions';\n // // this.paymentLibComponent.viewName = 'case-transactions';\n // // this.paymentLibComponent.ISBSENABLE = true;\n // // this.paymentLibComponent.isRefundStatusView = false;\n this.paymentLibComponent.viewName = 'refundstatuslist';\n this.paymentLibComponent.isRefundStatusView = true;\n } else {\n this.paymentLibComponent.viewName = 'refundstatuslist';\n this.paymentLibComponent.isRefundStatusView = true;\n }\n }\n loadRefundsHomePage() {\n if(typeof this.paymentLibComponent.TAKEPAYMENT === 'string' && this.paymentLibComponent.TAKEPAYMENT === 'false') {\n //window.location.href='/refund-list?takePayment=false&refundlist=true';\n this.paymentLibComponent.viewName = 'refund-list';\n }\n else {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.VIEW ='case-transactions';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n }\n }\n redirecttoRefundListPage() {\n if((typeof this.paymentLibComponent.TAKEPAYMENT === 'string' && this.paymentLibComponent.TAKEPAYMENT === 'false') || (typeof this.paymentLibComponent.TAKEPAYMENT === 'boolean' && !this.paymentLibComponent.TAKEPAYMENT) ) {\n // window.location.href='/refund-list?takePayment=false&refundlist=true';\n this.paymentLibComponent.viewName = 'refund-list';\n }\n else {\n this.loadRefundListPage();\n }\n }\n loadCaseTransactionPage() {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n }\n\n resetForm(vals, field) {\n if(field==='action' || field==='all') {\n this.refundActionsHasError = vals[0];\n }\n if(field==='rejectReason' || field==='all') {\n this.refundRejectReasonHasError = vals[1];\n }\n if(field==='addAreason' || field==='all') {\n this.isReasonFieldEmpty = vals[2];\n this.isReasonFieldInvalid = vals[3];\n this.reasonFieldMinHasError = vals[4];\n this.reasonFieldMaxHasError = vals[5];\n }\n if(field==='enterReason' || field==='all') {\n this.isReasonEmpty = vals[6];\n this.isReasonInvalid = vals[7];\n }\n }\n\n goToCaseReview() {\n const isPayBubble = this.paymentLibComponent.isFromPayBubble;\n if(isPayBubble) {\n this.loadCaseTransactionPage();\n } else {\n this.router.navigate([`/cases/case-details/${this.ccdCaseNumber}`], {relativeTo: this.activeRoute});\n }\n }\n}\n","import {Component, OnInit, Input} from '@angular/core';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { IRefundList } from '../../interfaces/IRefundList';\n\n@Component({\n selector: 'ccpay-refund-list',\n templateUrl: './refund-list.component.html',\n styleUrls: ['./refund-list.component.css']\n})\nexport class RefundListComponent implements OnInit {\n @Input('USERID') USERID: string;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: any[];\n @Input('LOGGEDINUSEREMAIL') LOGGEDINUSEREMAIL:string;\n\n constructor(private refundService: RefundsService) {\n }\n\n tableApprovalHeader: string;\n tableRejectedHeader: string;\n submittedRefundList: IRefundList[] = [];\n rejectedRefundList: IRefundList[] = [];\n // approvalStatus = 'Sent for approval';\n // rejectStatus = 'Update required';\n approvalStatus = 'Sent for approval';\n rejectStatus = 'Update required';\n errorMessage = null;\n isApproveTableVisible:boolean;\n isRejectTableVisible:boolean;\n dropdownvalue: string;\n isAuthorized: boolean = true;\n userLst\n ngOnInit() {\n \n this.userLst = this.LOGGEDINUSERROLES;\n\n \n if(this.LOGGEDINUSERROLES.some(i =>i.includes('payments-refund-approver'))){\n this.isAuthorized = true;\n } else {\n this.isApproveTableVisible = false;\n this.isAuthorized = false;\n }\n\n \n this.tableApprovalHeader = 'Refunds to be approved';\n this.tableRejectedHeader = 'Refunds returned to caseworker';\n\n if(this.isAuthorized) {\n this.refundService.getRefundList(this.approvalStatus,true).subscribe(\n refundList => {\n this.submittedRefundList = refundList['refund_list'];\n this.isApproveTableVisible = true;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n }\n\n this.refundService.getRefundList(this.rejectStatus,false).subscribe(\n refundList => {\n this.rejectedRefundList = refundList['refund_list'];\n this.isRejectTableVisible = true;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n\n }\n \n}","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {Observable} from 'rxjs/internal/Observable';\n\nimport {ICardDetails} from '../../interfaces/ICardDetails';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { catchError } from 'rxjs/operators';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class CardDetailsService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getCardDetails(paymentReference: string): Observable<ICardDetails> {\n this.logger.info('Card-detail-service getCardDetails for: ', paymentReference);\n\n return this.http.get<ICardDetails>(`${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}/details`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit } from '@angular/core';\nimport { CardDetailsService } from '../../services/card-details/card-details.service';\nimport {ICardDetails} from '../../interfaces/ICardDetails';\nimport { PaymentLibComponent } from '../../payment-lib.component';\n\n@Component({\n selector: 'ccpay-card-details',\n templateUrl: './card-details.component.html',\n styleUrls: ['./card-details.component.css']\n})\nexport class CardDetailsComponent implements OnInit {\n pageTitle: string = 'Card details';\n cardDetails: ICardDetails;\n paymentReference: string;\n errorMessage: string;\n\n constructor(private cardDetailsService: CardDetailsService,\n private paymentLibComponent: PaymentLibComponent) { }\n\n ngOnInit() {\n this.cardDetailsService.getCardDetails(this.paymentLibComponent.paymentReference).subscribe(\n cardDetails => this.cardDetails = cardDetails,\n (error: any) => this.errorMessage = <any>error\n );\n }\n\n get getPaymentReference(): string {\n return this.paymentReference;\n }\n\n}\n","import { Component } from '@angular/core';\n\n@Component({\n template: `\n <h1>This is not the page you were looking for!</h1>\n `\n})\nexport class PageNotFoundComponent { }\n","import { Injectable } from '@angular/core';\nimport { PaymentLibService } from '../../payment-lib.service';\nimport { HttpClient } from '@angular/common/http';\nimport { IStatusHistories } from '../../interfaces/IStatusHistories';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { catchError } from 'rxjs/operators';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class StatusHistoryService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getPaymentStatusesByReference(paymentReference: string, paymentMethod: string): Observable<IStatusHistories> {\n this.logger.info('Status-history-service getPaymentStatusesByReference for: ', paymentReference);\n\n return this.http.get<IStatusHistories>(paymentMethod === 'card' || paymentMethod === 'cash' || paymentMethod === 'cheque' || paymentMethod === 'postal order' ?\n `${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}/statuses` :\n `${this.paymentLibService.API_ROOT}/credit-account-payments/${paymentReference}/statuses`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { IStatusHistories } from '../../interfaces/IStatusHistories';\nimport { StatusHistoryService } from '../../services/status-history/status-history.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\n\n@Component({\n selector: 'ccpay-payment-statuses',\n templateUrl: './status-history.component.html',\n styleUrls: ['./status-history.component.css']\n})\nexport class StatusHistoryComponent implements OnInit {\n @Input() isTakePayment: boolean;\n pageTitle: string = 'Payment status history';\n statuses: IStatusHistories;\n errorMessage: string;\n\n constructor(private statusHistoryService: StatusHistoryService,\n private paymentLibComponent: PaymentLibComponent) { }\n\n ngOnInit() {\n this.statusHistoryService.getPaymentStatusesByReference(this.paymentLibComponent.paymentReference, this.paymentLibComponent.paymentMethod).subscribe(\n statuses => this.statuses = statuses,\n (error: any) => this.errorMessage = <any>error.replace(/\"/g,\"\")\n );\n \n }\n\n}\n","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {catchError} from 'rxjs/operators';\nimport { IRefundsNotifications } from '../../interfaces/IRefundsNotifications';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class NotificationService {\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService\n ) { }\n\n getRefundNotification(reference: string): Observable<IRefundsNotifications> {\n return this.http.get<IRefundsNotifications>(`${this.paymentLibService.NOTIFICATION_API_ROOT}/notifications/${reference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getAddressByPostcode(postcode: string): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.NOTIFICATION_API_ROOT}/search/places/v1/postcode?postcode=${postcode}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit, Output, EventEmitter, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { NotificationService } from '../../services/notification/notification.service';\n\n@Component({\n selector: 'ccpay-contact-details',\n templateUrl: './contact-details.component.html',\n styleUrls: ['./contact-details.component.css']\n})\nexport class ContactDetailsComponent implements OnInit {\n @Input('isEditOperation') isEditOperation: boolean;\n @Input('isEditOperationInRefundList') isEditOperationInRefundList: boolean;\n @Input('addressObj') addressObj: any;\n @Output() assignContactDetails: EventEmitter<any> = new EventEmitter();\n @Output() assignContactDetailsInFefundsList: EventEmitter<any> = new EventEmitter();\n @Output() redirectToIssueRefund: EventEmitter<any> = new EventEmitter();\n pageTitle: string = 'Payment status history';\n errorMessage: string;\n isEmailSAddressClicked: boolean = true;\n isShowPickAddress: boolean = false;\n isPostcodeClicked: boolean = false;\n isManualAddressClicked: boolean = false;\n emailAddressForm: FormGroup;\n postCodeForm: FormGroup;\n manualAddressForm: FormGroup;\n addressPostcodeList:any[] = [];\n postcodeAddress:any;\n isAddressBoxEmpty: boolean = false;\n\n isEmailEmpty: boolean = false;\n emailHasError: boolean = false;\n isPostcodeEmpty: boolean = false;\n postcodeHasError: boolean = false;\n isaddressLine1Empty: boolean = false;\n addressLine1HasError: boolean = false;\n addressLine2HasError: boolean = false;\n isTownOrCityEmpty: boolean = false;\n townOrCityHasError: boolean = false;\n isCountyEmpty: boolean = false;\n countyHasError: boolean = false;\n isMPostcodeEmpty: boolean = false;\n mpostcodeHasError: boolean = false;\n isCountryEmpty: boolean = false;\n\n constructor(private formBuilder: FormBuilder,\n private notificationService: NotificationService,\n private paymentLibComponent: PaymentLibComponent) { }\n\n ngOnInit() {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,false,false,false], 'all');\n\n this.emailAddressForm = this.formBuilder.group({\n email: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[a-z0-9._%+-]+@[a-z0-9-]+\\\\.[a-z]{2,4}$')\n ]))\n });\n this.postCodeForm = this.formBuilder.group({\n postcode: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([A-Za-z]{1,2}[0-9]{1,2}[A-Za-z]{0,1} ?[0-9][A-Za-z]{2})')\n ]))\n });\n this.manualAddressForm = this.formBuilder.group({\n addressl1: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[a-zA-Z0-9\\\\s,\\'-]*$')\n ])),\n addressl2: new FormControl('', Validators.compose([\n Validators.pattern('^[a-zA-Z0-9\\\\s,\\'-]*$')\n ])),\n townorcity: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[a-zA-Z0-9\\\\s,\\'-]*$')\n ])),\n county: new FormControl('', Validators.compose([\n Validators.pattern('^[a-zA-Z0-9\\\\s,\\'-]*$')\n ])),\n mpostcode: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([A-Za-z]{1,2}[0-9]{1,2}[A-Za-z]{0,1} ?[0-9][A-Za-z]{2})')\n ])),\n country: new FormControl('', Validators.compose([\n Validators.required\n ]))\n });\n if(this.addressObj !== undefined && this.addressObj !== '') {\n this.setEditDetails();\n }\n if(this.isEditOperationInRefundList === undefined) {\n this.isEditOperationInRefundList = false;\n }\n }\n setEditDetails() {\n if(this.addressObj.notification_type === 'EMAIL') {\n this.isEmailSAddressClicked = true;\n this.isPostcodeClicked = false;\n this.isManualAddressClicked = false;\n this.emailAddressForm.setValue({ email: this.addressObj.contact_details.email });\n } else if(this.addressObj.notification_type === 'LETTER') {\n this.isEmailSAddressClicked = false;\n this.isPostcodeClicked = true;\n this.isManualAddressClicked = true;\n this.manualAddressForm.patchValue({ \n addressl1: this.addressObj.contact_details.address_line,\n townorcity: this.addressObj.contact_details.city,\n county: this.addressObj.contact_details.county,\n country: this.addressObj.contact_details.country,\n mpostcode: this.addressObj.contact_details.postal_code\n });\n }\n }\n\n selectContactOption(type, isLinkedClied) {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,false,false,false,false], 'all');\n if( type === 'Email' && isLinkedClied === 'false'){\n this.isEmailSAddressClicked = true;\n this.isPostcodeClicked = false;\n this.isManualAddressClicked = false;\n } else if(type === 'Postcode' && isLinkedClied === 'false') {\n this.isEmailSAddressClicked = false;\n this.isPostcodeClicked = true;\n this.isManualAddressClicked = false;\n } else if(type === 'Postcode' && isLinkedClied === 'true') {\n this.isEmailSAddressClicked = false;\n this.isPostcodeClicked = true;\n this.isManualAddressClicked = true;\n\n }\n }\n\n finalFormSubmit() {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,false,false,false,false], 'all');\n if( this.isEmailSAddressClicked ){\n const emailField = this.emailAddressForm.controls.email;\n if (this.emailAddressForm.valid) {\n if(!this.isEditOperationInRefundList) {\n this.assignContactDetails.emit( {\n email: emailField.value,\n notification_type: 'EMAIL'\n } );\n } else {\n this.assignContactDetailsInFefundsList.emit({\n email: emailField.value,\n notification_type: 'EMAIL'\n } );\n }\n } else {\n if( emailField.value == '' ) {\n this.resetForm([true,false,false,false,false,false,false,false,false,false,false,false,false,false], 'email');\n }\n if(emailField.value != '' && emailField.invalid ) {\n this.resetForm([false,true,false,false,false,false,false,false,false,false,false,false,false,false], 'email');\n }\n }\n } else if( this.isPostcodeClicked && !this.isManualAddressClicked ) {\n this.postcodeValidation('FS');\n } else if(this.isPostcodeClicked && this.isManualAddressClicked) {\n const fieldCtrls = this.manualAddressForm.controls;\n if (this.manualAddressForm.valid) {\n if(!this.isEditOperationInRefundList) {\n this.assignContactDetails.emit({\n address_line: fieldCtrls.addressl1.value+' '+fieldCtrls.addressl2.value,\n city: fieldCtrls.townorcity.value,\n county: fieldCtrls.county.value,\n postal_code: fieldCtrls.mpostcode.value,\n country: fieldCtrls.country.value,\n notification_type: 'LETTER'\n });\n } else {\n this.assignContactDetailsInFefundsList.emit({\n address_line: fieldCtrls.addressl1.value+' '+fieldCtrls.addressl2.value,\n city: fieldCtrls.townorcity.value,\n county: fieldCtrls.county.value,\n postal_code: fieldCtrls.mpostcode.value,\n country: fieldCtrls.country.value,\n notification_type: 'LETTER'\n });\n }\n } else {\n if( fieldCtrls.addressl1.value == '' ) {\n this.resetForm([false,false,false,false,true,false,false,false,false,false,false,false,false,false], 'address1');\n }\n if(fieldCtrls.addressl1.value != '' && fieldCtrls.addressl1.invalid ) {\n this.resetForm([false,false,false,false,false,true,false,false,false,false,false,false,false,false], 'address1');\n }\n if(fieldCtrls.addressl2.value != '' && fieldCtrls.addressl2.invalid ) {\n this.resetForm([false,false,false,false,false,false,true,false,false,false,false,false,false,false], 'address2');\n }\n if( fieldCtrls.townorcity.value == '' ) {\n this.resetForm([false,false,false,false,false,false,false,true,false,false,false,false,false,false], 'town');\n }\n if(fieldCtrls.townorcity.value != '' && fieldCtrls.townorcity.invalid ) {\n this.resetForm([false,false,false,false,false,false,false,false,true,false,false,false,false,false], 'town');\n }\n if( fieldCtrls.county.value == '' ) {\n this.resetForm([false,false,false,false,false,false,false,false,false,true,false,false,false,false], 'county');\n }\n if(fieldCtrls.county.value != '' && fieldCtrls.county.invalid ) {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,true,false,false,false], 'county');\n }\n if( fieldCtrls.mpostcode.value == '' ) {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,true,false,false], 'mpostcode');\n }\n if(fieldCtrls.mpostcode.value != '' && fieldCtrls.mpostcode.invalid ) {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,false,true,false], 'mpostcode');\n }\n if( fieldCtrls.country.value == '' ) {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,false,false,true], 'country');\n }\n }\n\n }\n\n }\n\n postcodeValidation(str) {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,false,false,false,false], 'all');\n const postcodeField = this.postCodeForm.controls.postcode;\n if (this.postCodeForm.valid) {\n if(str === 'FA') {\n this.notificationService.getAddressByPostcode(postcodeField.value).subscribe(\n refundsNotification => {\n this.addressPostcodeList = refundsNotification['data']['results'];\n this.isShowPickAddress = refundsNotification['data']['header'].totalresults > 0;\n if(!this.isShowPickAddress) {\n this.resetForm([false,false,false,true,false,false,false,false,false,false,false,false,false], 'postcode');\n }\n }\n ),\n (error: any) => {\n this.isShowPickAddress = false;\n this.errorMessage = error.replace(/\"/g,\"\");\n }; \n } else if (str === 'FS') {\n if(this.postcodeAddress !== undefined && this.postcodeAddress) {\n this.isAddressBoxEmpty = false;\n let addressLine=\"\";\n let addressArray = this.postcodeAddress.ADDRESS.split(\",\");\n for( let i=0; i<addressArray.length-2; i++ ) {\n addressLine +=addressArray[i]; \n }\n const addressObject = {\n address_line: addressLine,\n city: this.postcodeAddress.POST_TOWN,\n county: this.postcodeAddress.LOCAL_CUSTODIAN_CODE_DESCRIPTION,\n postal_code: this.postcodeAddress.POSTCODE,\n country: 'United Kingdom',\n notification_type: 'LETTER'\n };\n if(!this.isEditOperationInRefundList) {\n this.assignContactDetails.emit(addressObject);\n } else {\n this.assignContactDetailsInFefundsList.emit(addressObject);\n }\n } else {\n this.isAddressBoxEmpty = true;\n }\n }\n } else {\n if( postcodeField.value == '' ) {\n this.resetForm([false,false,true,false,false,false,false,false,false,false,false,false,false], 'postcode');\n }\n if(postcodeField.value != '' && postcodeField.invalid ) {\n this.resetForm([false,false,false,true,false,false,false,false,false,false,false,false,false], 'postcode');\n }\n }\n }\n redirection(event:any) {\n this.redirectToIssueRefund.emit(event);\n }\n resetForm(val, field) {\n if(field==='email' || field==='all') {\n this.isEmailEmpty = val[0];\n this.emailHasError = val[1];\n }\n if(field==='postcode' || field==='all') {\n this.isPostcodeEmpty = val[2];\n this.postcodeHasError = val[3];\n }\n if(field==='address1' || field==='all') {\n this.isaddressLine1Empty = val[4];\n this.addressLine1HasError = val[5];\n }\n if(field==='address2' || field==='all') {\n this.addressLine2HasError = val[6];\n }\n if(field==='town' || field==='all') {\n this.isTownOrCityEmpty = val[7];\n this.townOrCityHasError = val[8];\n }\n if(field==='county' || field==='all') {\n this.isCountyEmpty = val[9];\n this.countyHasError = val[10];\n }\n if(field==='mpostcode' || field==='all') {\n this.isMPostcodeEmpty = val[11];\n this.mpostcodeHasError = val[12];\n }\n if(field==='country' || field==='all') {\n this.isCountryEmpty = val[13];\n }\n \n }\n}\n","import { Component, Input, OnInit } from '@angular/core';\nimport { IPayment } from '../../interfaces/IPayment';\n\n@Component({\n selector: 'ccpay-pba-details',\n templateUrl: './pba-details.component.html',\n styleUrls: ['./pba-details.component.css']\n})\nexport class PbaDetailsComponent implements OnInit {\n @Input() payment: IPayment;\n\n constructor() { }\n\n ngOnInit() {\n }\n\n}\n","import { Injectable } from '@angular/core';\nimport { Logger } from './logger.service';\n\nexport let isDebugMode = false;\n\nconst noop = (): any => undefined;\n\n@Injectable({\n providedIn: 'root'\n})\nexport class ConsoleLoggerService implements Logger {\n\n get info() {\n if (isDebugMode) {\n return console.info.bind(console);\n } else {\n return noop;\n }\n }\n\n get warn() {\n if (isDebugMode) {\n return console.warn.bind(console);\n } else {\n return noop;\n }\n }\n\n get error() {\n if (isDebugMode) {\n return console.error.bind(console);\n } else {\n return noop;\n }\n }\n\n invokeConsoleMethod(type: string, args?: any): void {\n const logFn: Function = (console)[type] || console.log || noop;\n logFn.apply(console, [args]);\n }\n}\n","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {LoggerService} from '../shared/logger/logger.service';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport {catchError} from 'rxjs/operators';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class CaseTransactionsService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService\n ) { }\n\n getPaymentGroups(ccdCaseNumber: string): Observable<IPaymentGroup[]> {\n this.logger.info('Case-transactions-service getPaymentGroups for: ', ccdCaseNumber);\n\n return this.http.get<IPaymentGroup[]>(`${this.paymentLibService.API_ROOT}/cases/${ccdCaseNumber}/paymentgroups`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {catchError} from 'rxjs/operators';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class BulkScaningPaymentService {\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService\n ) { }\n\n getBSPaymentsByCCD(ccdCaseNumber: string): Observable<IBSPayments> {\n return this.http.get<IBSPayments>(`${this.paymentLibService.BULKSCAN_API_ROOT}/cases/${ccdCaseNumber}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getBSPaymentsByDCN(dcn: string): Observable<IBSPayments> {\n return this.http.get<IBSPayments>(`${this.paymentLibService.BULKSCAN_API_ROOT}/cases?document_control_number=${dcn}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSAllocatePayment(body: AllocatePaymentRequest, paymentRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentRef}/bulk-scan-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSPaymentStrategic(body: AllocatePaymentRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/bulk-scan-payments-strategic`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSWoPGStrategic(body: AllocatePaymentRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/bulk-scan-payments-strategic`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n patchBSChangeStatus(dcnNumber: string, status: string): Observable<any> {\n return this.https.patch(`${this.paymentLibService.API_ROOT}/bulk-scan-payments/${dcnNumber}/status/${status}`, status).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n calculateOutStandingAmount(paymentGroup: IPaymentGroup): number {\n let feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00;\n\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n });\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n } \n return (feesTotal - remissionsTotal) - paymentsTotal;\n }\n\n removeUnwantedString(input: string, replaceText: string) {\n const pattern = /[\\_]/gi;\n return input.replace(pattern, replaceText);\n }\n\n downloadSelectedReport(reportName: string, startDate: string, endDate:string): Observable<any> {\n return this.https.get(`${this.paymentLibService.BULKSCAN_API_ROOT}/report/data?date_from=${startDate}&date_to=${endDate}&report_type=${reportName}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { CaseTransactionsService } from '../../services/case-transactions/case-transactions.service';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IPaymentView } from '../../interfaces/IPaymentView';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { Router } from '@angular/router';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-case-transactions',\n templateUrl: './case-transactions.component.html',\n styleUrls: ['./case-transactions.component.css']\n})\nexport class CaseTransactionsComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input() isTakePayment: boolean;\n @Input() isFromServiceRequestPage: boolean;\n takePayment: boolean;\n ccdCaseNumber: string;\n excReference: string;\n paymentGroups: any[] = [];\n payments: IPayment[] = [];\n nonPayments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n fees: IFee[] = [];\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalNonOffPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n paymentRef: string;\n isTurnOff: boolean;\n isRefundRemission: boolean = true;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = true;\n isExceptionRecord: boolean = false;\n isUnprocessedRecordSelected: boolean = false;\n exceptionRecordReference: string;\n isAnyFeeGroupAvilable: boolean = true;\n isHistoricGroupAvailable: boolean = false;\n isBulkScanEnable;\n isRemissionsMatch: boolean;\n viewStatus = 'main';\n isRemoveBtnDisabled: boolean = false;\n feeId: IFee;\n clAmountDue: number = 0;\n overPaymentAmount: number = 0;\n unprocessedRecordCount: number;\n isFeeRecordsExist: boolean = false;\n isGrpOutstandingAmtPositive: boolean = false;\n totalRefundAmount: Number;\n caseType: String;\n // lsCcdNumber: any = ls.get<any>('ccdNumber');\n payment: IPayment;\n paymentGroup: IPaymentGroup;\n paymentView: IPaymentView;\n\n //Order changes\n orderDetail: any[] = [];\n\n isAddRemissionEnable: boolean = false;\n orderRemissionDetails: any[] = [];\n orderLevelFees: IOrderReferenceFee[] = [];\n ispaymentGroupApisuccess: boolean = false;\n cpoDetails: any = null;\n orderRef: string;\n orderStatus: string;\n orderParty: string;\n orderCreated: Date;\n orderCCDEvent: string;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n orderFeesTotal: number = 0.00;\n orderRemissionTotal: number = 0.00;\n orderTotalPayments: number = 0.00;\n orderPendingPayments: number = 0.00;\n isCPODown: boolean;\n test: boolean;\n isPBA: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n isAddRemissionBtnEnabled: boolean = false;\n isRefundRemissionBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n isEligible4PBAPayment = ['pui-finance-manager', 'pui-user-manager', 'pui-organisation-manager', 'pui-case-manager'];\n currentDate = new Date();\n //isFromServiceRequestPage: boolean;\n navigationpage: string;\n remissionFeeAmt: number;\n constructor(private router: Router,\n private paymentViewService: PaymentViewService,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private caseTransactionsService: CaseTransactionsService,\n private paymentLibComponent: PaymentLibComponent,\n private OrderslistService: OrderslistService\n ) { }\n\n ngOnInit() {\n this.navigationpage = '';\n if(this.OrderslistService.getpaymentPageView() !== null) {\n this.OrderslistService.getpaymentPageView().subscribe((data) => this.paymentView = data);\n }\n if((this.LOGGEDINUSERROLES === undefined || this.LOGGEDINUSERROLES.length === 0 )&&this.OrderslistService.getUserRolesList() !== null) {\n this.OrderslistService.getUserRolesList().subscribe((data) => this.LOGGEDINUSERROLES = data);\n }\n if(this.OrderslistService.getnavigationPageValue() !== null) {\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n }\n \n if (this.paymentView !== undefined && this.paymentView !== null && this.paymentView.payment_group_reference !== undefined && this.navigationpage === 'paymentdetailspage') {\n this.goToPayementView(this.paymentView.payment_group_reference, this.paymentView.reference, this.paymentView.method);\n }\n this.isGrpOutstandingAmtPositive = false;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.caseType = this.paymentLibComponent.CASETYPE;\n if (this.paymentLibComponent.CCD_CASE_NUMBER === '') {\n this.ccdCaseNumber = this.paymentLibComponent.EXC_REFERENCE;\n }\n this.excReference = this.paymentLibComponent.EXC_REFERENCE;\n this.takePayment = this.paymentLibComponent.TAKEPAYMENT;\n \n const serviceRequest = this.paymentLibComponent.SERVICEREQUEST;\n if ( serviceRequest !== undefined && serviceRequest.toString() === 'true' ) {\n this.serviceRequestValue = 'true';\n } else {\n this.serviceRequestValue = 'false';\n this.paymentLibComponent.isFromServiceRequestPage = false;\n }\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n if (!this.isTurnOff) {\n // if (this.lsCcdNumber !== this.ccdCaseNumber) {\n // this.router.navigateByUrl(`/ccd-search?takePayment=true`);\n // }\n\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.isAnyFeeGroupAvilable =true;\n this.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts();\n this.calculateOrderFeesAmounts();\n this.calculateRefundAmount();\n if (this.isFromServiceRequestPage) {\n this.OrderslistService.getSelectedOrderRefId().subscribe((data) => this.orderRef = data);\n this.goToOrderViewDetailSection(this.orderRef);\n } else {\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).content[0];\n\n },\n (error: any) => {\n this.errorMessage = <any>error ? error.replace(/\"/g,\"\") : \"\";\n this.isCPODown = true;\n }\n );\n\n }\n\n\n },\n (error: any) => {\n this.errorMessage = <any>error ? error.replace(/\"/g,\"\") : \"\";\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n } else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.isAnyFeeGroupAvilable =true;\n this.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts();\n this.calculateOrderFeesAmounts();\n this.totalRefundAmount = this.calculateRefundAmount();\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).content[0];\n\n },\n (error: any) => {\n this.errorMessage = <any>error ? error.replace(/\"/g,\"\") : \"\";\n this.setDefaults();\n this.isCPODown = true;\n }\n );\n\n },\n (error: any) => {\n this.errorMessage = <any>error ? error.replace(/\"/g,\"\") : \"\";\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n }\n\n if( this.paymentGroups !== undefined) {\n this.checkForExceptionRecord();\n }\n\n if(this.OrderslistService.getisFromServiceRequestPages() !== null) {\n this.OrderslistService.getisFromServiceRequestPages().subscribe((data) => this.isFromServiceRequestPage = data);\n }\n\n }\n\n setDefaults(): void {\n this.totalPayments = 0.00;\n this.totalRemissions = 0.00;\n this.totalNonOffPayments = 0.00;\n this.totalFees = 0.00;\n }\n\n getAllocationStatus(payments: any) {\n\n let paymentAllocation = payments.payment_allocation,\n isAllocationStatusExist = paymentAllocation.length > 0;\n return isAllocationStatusExist ? paymentAllocation[0].allocation_status : '-';\n //return \"-\";\n\n }\n\n checkForExceptionRecord(): void {\n\n if (this.paymentGroups.length === 0 && (this.selectedOption.toLocaleLowerCase() === 'ccdorexception' || this.selectedOption.toLocaleLowerCase() === 'rc')) {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n recordData => {\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length > 0 && recordData['data'].ccd_reference > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length > 0 && recordData['data'].ccd_reference === undefined) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n }\n\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length === undefined && recordData['data'].ccd_reference > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n });\n }\n\n if (this.paymentGroups.length === 0 && this.selectedOption.toLocaleLowerCase() === 'dcn') {\n if (this.paymentLibComponent.CCD_CASE_NUMBER.length > 0 && this.paymentLibComponent.EXC_REFERENCE.length > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n } else if (this.paymentLibComponent.CCD_CASE_NUMBER.length === 0 && this.paymentLibComponent.EXC_REFERENCE.length > 0) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n } else {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n }\n if (this.paymentGroups.length > 0)\n this.paymentGroups.forEach(paymentGroup => {\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.case_reference !== undefined && payment.ccd_case_number === undefined) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n } else {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n\n });\n }\n });\n }\n\n calculateOrderFeesAmounts(): void {\n let feesTotal = 0.00;\n this.paymentGroups.forEach(paymentGroup => {\n this.resetOrderVariables();\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.orderFeesTotal = this.orderFeesTotal + fee.calculated_amount\n this.overPaymentAmount = this.overPaymentAmount + fee.over_payment\n }\n )\n }\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n this.orderRemissionTotal = this.orderRemissionTotal + remission.hwf_amount;\n });\n }\n\n if (paymentGroup.payments) {\n const isFeeOverPaymentExist = this.overPaymentAmount === 0;\n paymentGroup.payments.forEach(payment => {\n if(isFeeOverPaymentExist) {\n this.overPaymentAmount = this.overPaymentAmount + payment.over_payment\n }\n if (payment.status.toUpperCase() === 'SUCCESS') {\n this.orderTotalPayments = this.orderTotalPayments + payment.amount;\n }\n });\n }\n\n // this.orderPendingPayments = (this.orderFeesTotal - this.orderRemissionTotal) - this.orderTotalPayments;\n if (paymentGroup.service_request_status === 'Paid') {\n this.orderStatus = paymentGroup.service_request_status;\n this.orderAddBtnEnable = false;\n } else if (paymentGroup.service_request_status === 'Partially paid' || paymentGroup.service_request_status === 'Not paid') {\n this.orderStatus = paymentGroup.service_request_status;\n this.orderAddBtnEnable = true;\n }\n\n //this.orderLevelFees.push({orderRefId:paymentGroup['payment_group_reference'],orderTotalFees: this.orderFeesTotal,orderStatus: this.orderStatus,orderParty:'Santosh', orderCCDEvent:'Case Creation',orderCreated: new Date(), orderAddBtnEnable: this.orderAddBtnEnable}); this.cpoDetails['createdTimestamp']\n if (this.cpoDetails !== null) {\n this.orderLevelFees.push({ orderRefId: paymentGroup['payment_group_reference'], orderTotalFees: this.orderFeesTotal, orderStatus: this.orderStatus, orderParty: this.cpoDetails['responsibleParty'], orderCCDEvent: this.cpoDetails['action'], orderCreated: paymentGroup['date_created'], orderAddBtnEnable: this.orderAddBtnEnable });\n\n } else {\n this.orderLevelFees.push({ orderRefId: paymentGroup['payment_group_reference'], orderTotalFees: this.orderFeesTotal, orderStatus: this.orderStatus, orderParty: '', orderCCDEvent: '', orderCreated: paymentGroup['date_created'], orderAddBtnEnable: this.orderAddBtnEnable });\n }\n\n if (this.orderStatus !== 'Paid') {\n this.OrderslistService.setOrdersList(this.orderLevelFees);\n }\n });\n };\n\n resetOrderVariables(): void {\n this.orderFeesTotal = 0.00;\n this.orderTotalPayments = 0.00;\n this.orderRemissionTotal = 0.00;\n this.orderPendingPayments = 0.00;\n this.isAddFeeBtnEnabled = true;\n\n };\n\n goToOrderViewDetailSection(orderReferenceObj: any) {\n if (this.isFromServiceRequestPage) {\n this.OrderslistService.setOrderRefId(orderReferenceObj);\n this.orderRef = orderReferenceObj;\n } else {\n this.OrderslistService.setOrderRefId(orderReferenceObj.orderRefId);\n this.orderRef = orderReferenceObj.orderRefId;\n }\n\n this.orderFeesTotal = 0.00;\n this.orderRemissionTotal = 0.00;\n this.orderTotalPayments = 0.00;\n this.orderPendingPayments = 0.00;\n\n this.orderDetail = this.paymentGroups.filter(x => x.payment_group_reference === this.orderRef);\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.fees) {\n orderDetail.fees.forEach(fee => {\n this.orderFeesTotal = this.orderFeesTotal + fee.calculated_amount;\n });\n }\n if (orderDetail.remissions) {\n orderDetail.remissions.forEach(remission => {\n this.orderRemissionTotal = this.orderRemissionTotal + remission.hwf_amount;\n });\n if (orderDetail.payments) {\n this.payment = orderDetail.payments[0];\n orderDetail.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n this.orderTotalPayments = this.orderTotalPayments + payment.amount;\n }\n });\n }\n }\n this.orderStatus = orderDetail.service_request_status;\n });\n //this.orderPendingPayments = (this.orderFeesTotal - this.orderRemissionTotal) - this.orderTotalPayments;\n // this.orderRef = orderReferenceObj.orderRefId;\n // if (this.orderPendingPayments <= 0.00) {\n // this.orderStatus = 'Paid';\n // } else if (this.orderFeesTotal > 0 && (this.orderTotalPayments > 0 || this.orderRemissionTotal > 0) && (this.orderTotalPayments < this.orderPendingPayments)) {\n // this.orderStatus = 'Partially paid'\n // } else {\n // this.orderStatus = 'Not paid'\n // }\n\n\n if (this.cpoDetails !== null) {\n this.orderParty = this.cpoDetails['responsibleParty'];\n this.orderCreated = this.cpoDetails['createdTimestamp'];\n this.orderCCDEvent = this.cpoDetails['action'];\n } else {\n this.orderParty = '';\n this.orderCCDEvent = '';\n this.orderCreated = orderReferenceObj.orderCreated;\n }\n this.viewStatus = 'order-full-view';\n }\n\n redirectToOrderFeeSearchPage(event: any, orderef: any) {\n if(orderef.orderAddBtnEnable) {\n event.preventDefault();\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = orderef.orderRefId;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n }\n\n\n\n\n calculateAmounts(): void {\n let feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00,\n nonOffLinePayment = 0.00;\n\n this.paymentGroups.forEach(paymentGroup => {\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n if (fee.date_created) {\n let a = fee.amount_due === undefined;\n let b = fee.amount_due <= 0;\n this.clAmountDue = a ? this.clAmountDue + fee.net_amount : b ? this.clAmountDue + 0 : this.clAmountDue + fee.amount_due;\n }\n fee['payment_group_reference'] = paymentGroup['payment_group_reference'];\n this.fees.push(fee);\n } else {\n feesTotal = feesTotal + fee.calculated_amount;\n this.fees.push(fee);\n }\n\n });\n }\n if (this.isTurnOff) {\n this.totalFees = feesTotal;\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n let allocationLen = payment.payment_allocation;\n\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n if (allocationLen.length === 0 || allocationLen.length > 0 && allocationLen[0].allocation_status === 'Allocated') {\n nonOffLinePayment = nonOffLinePayment + payment.amount;\n }\n if (allocationLen.length > 0) {\n this.nonPayments.push(payment);\n }\n }\n if (allocationLen.length === 0) {\n this.payments.push(payment);\n }\n payment.paymentGroupReference = paymentGroup.payment_group_reference\n this.allPayments.push(payment);\n } else {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n this.payments.push(payment);\n }\n payment.paymentGroupReference = paymentGroup.payment_group_reference\n this.allPayments.push(payment);\n }\n });\n }\n this.totalPayments = paymentsTotal;\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n this.totalNonOffPayments = nonOffLinePayment;\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remisison => {\n remissionsTotal = remissionsTotal + remisison.hwf_amount;\n this.remissions.push(remisison);\n });\n }\n this.totalRemissions = remissionsTotal;\n });\n\n }\n\n calculateRefundAmount() {\n if (!this.isTurnOff) {\n let isNewPaymentGroup = false;\n\n this.paymentGroups.forEach((paymentGroup, index) => {\n let grpOutstandingAmount = 0.00,\n feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00,\n fees = [];\n\n if (paymentGroup.fees) {\n // this.isFeeRecordsExist = true;\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n\n this.isRemissionsMatch = false;\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(rem => {\n if (rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n // if(!fees.find(k => k.code=fee.code))\n // {\n fees.push(fee);\n //}\n }\n });\n }\n if (!this.isRemissionsMatch) {\n fees.push(fee);\n }\n\n if (fee.date_created) {\n isNewPaymentGroup = true;\n } else {\n this.isHistoricGroupAvailable = true;\n this.paymentGroups[index]['old'] = true;\n }\n });\n this.paymentGroups[index].fees = fees;\n }\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n }\n grpOutstandingAmount = (feesTotal - remissionsTotal) - paymentsTotal;\n if (grpOutstandingAmount > 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = true;\n this.isFeeRecordsExist = true;\n this.paymentRef = paymentGroup.payment_group_reference;\n }\n if (paymentGroup.fees && paymentGroup.fees.length > 0 && grpOutstandingAmount <= 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = false;\n }\n });\n if ((!isNewPaymentGroup && this.isHistoricGroupAvailable) || (!isNewPaymentGroup && !this.isHistoricGroupAvailable)) {\n this.isAnyFeeGroupAvilable = false;\n }\n } else {\n let totalRefundAmount = 0,\n isFeeAmountZero = false;\n this.paymentGroups.forEach(paymentGroup => {\n let grpOutstandingAmount = 0.00,\n feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00;\n if (paymentGroup.fees) {\n this.isFeeRecordsExist = true;\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n if (fee.calculated_amount === 0) {\n isFeeAmountZero = true\n }\n });\n\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n }\n grpOutstandingAmount = (feesTotal - remissionsTotal) - paymentsTotal;\n if (grpOutstandingAmount < 0) {\n if (totalRefundAmount === 0) {\n totalRefundAmount = grpOutstandingAmount;\n } else {\n totalRefundAmount = (totalRefundAmount + grpOutstandingAmount);\n }\n }\n else if (grpOutstandingAmount > 0 || (grpOutstandingAmount === 0 && isFeeAmountZero)) {\n this.isGrpOutstandingAmtPositive = true;\n }\n });\n return totalRefundAmount * -1;\n }\n }\n\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n }\n\n redirectToFeeSearchPage(event: any) {\n event.preventDefault();\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url += `&caseType=${this.caseType}`\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}${url}`);\n }\n\n addRemission(fee: IFee) {\n if(this.chkForAddRemission(fee.code)) {\n this.feeId = fee;\n this.viewStatus = 'addremission';\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error? error.replace(/\"/g,\"\") : \"\"\n );\n }\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n this.paymentViewService.getApportionPaymentDetails(payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n this.paymentGroup.payments = paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj.reference === payment.reference);\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n this.viewStatus = 'addrefundforremission';\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n\n redirectToremissionPage(event: any) {\n event.preventDefault();\n this.paymentLibComponent.viewName = 'remission'\n }\n goToServiceRequestPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = false;\n this.paymentLibComponent.SERVICEREQUEST = 'true';\n this.paymentLibComponent.isFromServiceRequestPage = true;\n window.location.reload();\n }\n redirectToReportsPage(event: any) {\n event.preventDefault();\n this.router.navigateByUrl(`/reports?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}`);\n }\n\n loadFeeSummaryPage(paymentGroup: IPaymentGroup) {\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.payment_group_reference;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n\n goToPaymentViewComponent(paymentGroup: any) {\n this.paymentLibComponent.paymentMethod = paymentGroup.paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentGroup.paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n\n goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent({ paymentGroupReference, paymentReference, paymentMethod });\n }\n\n selectedUnprocessedFeeEvent(unprocessedRecordId: string) {\n if (unprocessedRecordId) {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = false;\n }\n this.isUnprocessedRecordSelected = true;\n } else {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = true;\n }\n this.isUnprocessedRecordSelected = false;\n }\n }\n\n getUnprocessedFeeCount(unProcessedRecordCount: number) {\n this.unprocessedRecordCount = unProcessedRecordCount;\n }\n\n calculateAmountDue(fee: IFee) {\n\n if (fee.date_created) {\n return fee.amount_due !== undefined ? fee.amount_due : fee.net_amount;\n } else {\n return \"0.00\";\n }\n }\n\n confirmRemoveFee(fee: IFee) {\n this.isRemoveBtnDisabled = false;\n this.feeId = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n cancelRemoval() {\n this.viewStatus = 'main';\n }\n\n removeFee(fee: any) {\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n window.location.reload();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n\n issueRefund(payment: IPayment) {\n if (payment !== null && payment !== undefined) {\n if(this.chkIssueRefundBtnEnable(payment)) {\n this.viewStatus = 'issuerefund';\n this.payment = payment;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.isRefundRemission = true;\n }\n }\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund()) {\n if (this.orderDetail[0]['remissions'].length > 0) {\n for (const remission of this.orderDetail[0]['remissions']) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n }\n return true;\n } else {\n return false;\n }\n }\n\n chkForPBAPayment(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isPBA = true;\n }\n });\n }\n });\n if (this.isPBA) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (payment !== null && payment !== undefined) {\n return payment.issue_refund && payment.refund_enable\n } else {\n return false;\n }\n // if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n // payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n // this.isIssueRefunfBtnEnable = true;\n // }\n // if (this.isIssueRefunfBtnEnable) {\n // return true;\n // } else {\n // return false;\n // };\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n check4AllowedRoles2AccessPBApayment = (): boolean => {\n return this.isEligible4PBAPayment.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n if (payment !== null && payment !== undefined) {\n let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\n }\n }\n\n loadPBAAccountPage(orderRef: IPayment) {\n this.paymentLibComponent.pbaPayOrderRef = orderRef;\n this.paymentLibComponent.viewName = 'pba-payment';\n }\n}\n","export class PaymentToPayhubRequest {\n currency = 'GBP';\n description = 'PayBubble payment';\n channel = 'telephony';\n provider = 'pci pal';\n case_type: string;\n\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.case_type= caseType;\n }\n}\n","export class PayhubAntennaRequest {\n currency = 'GBP';\n case_type: string;\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.case_type= caseType;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IFee } from '../../interfaces/IFee';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { PayhubAntennaRequest } from '../../interfaces/PayhubAntennaRequest';\nimport { SafeHtml } from '@angular/platform-browser';\nimport {Router} from '@angular/router';\nimport {Location} from '@angular/common';\nimport { OrderslistService } from '../../services/orderslist.service';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-fee-summary',\n templateUrl: './fee-summary.component.html',\n styleUrls: ['./fee-summary.component.scss']\n})\n\nexport class FeeSummaryComponent implements OnInit {\n @Input() paymentGroupRef: string;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: string;\n @Input() caseType: string;\n\n\n bsPaymentDcnNumber: string;\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n viewStatus = 'main';\n currentFee: IFee;\n totalFee: number;\n payhubHtml: SafeHtml;\n service: string = \"\";\n platForm: string = \"\";\n upPaymentErrorMessage: string;\n selectedOption:string;\n isBackButtonEnable: boolean = true;\n outStandingAmount: number;\n isFeeAmountZero: boolean = false;\n totalAfterRemission: number = 0;\n isConfirmationBtnDisabled: boolean = false;\n isRemoveBtnDisabled: boolean = false;\n isPaymentExist: boolean = false;\n isRemissionsExist: Boolean = false;\n isRemissionsMatch = false;\n isStrategicFixEnable: boolean;\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private location: Location,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private OrderslistService: OrderslistService\n ) {}\n\n ngOnInit() {\n this.viewStatus = 'main';\n this.caseType = this.paymentLibComponent.CASETYPE;\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.setCaseType(this.paymentLibComponent.CASETYPE);\n\n this.platForm = 'Antenna';\n\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n if (this.bsPaymentDcnNumber) {\n this.getUnassignedPaymentlist();\n }\n this.getPaymentGroup();\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.paymentLibComponent.DCN_NUMBER).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error';\n }\n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error';\n }\n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n }\n\n }\n\n getRemissionByFeeCode(feeCode: string): IRemission {\n if (this.paymentGroup && this.paymentGroup.remissions && this.paymentGroup.remissions.length > 0) {\n for (const remission of this.paymentGroup.remissions) {\n if (remission.fee_code === feeCode) {\n return remission;\n }\n }\n }\n return null;\n }\n\n addRemission(fee: IFee) {\n this.currentFee = fee;\n this.viewStatus = 'add_remission';\n }\n\n getPaymentGroup() {\n let fees = [];\n this.paymentViewService.getPaymentGroupDetails(this.paymentGroupRef).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n this.isPaymentExist = paymentGroup.payments ? paymentGroup.payments.length > 0 : false;\n this.isRemissionsExist = paymentGroup.remissions ? paymentGroup.remissions.length > 0 : false;\n\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.totalAfterRemission = this.totalAfterRemission + fee.net_amount;\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true;\n }\n if(paymentGroup.remissions) {\n this.isRemissionsMatch = false;\n paymentGroup.remissions.forEach(rem => {\n if(rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n\n if(!this.isRemissionsMatch) {\n fees.push(fee);\n }\n } else {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees;\n }\n\n this.outStandingAmount = this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n\n confirmRemoveFee(fee: IFee){\n this.isRemoveBtnDisabled = false;\n this.currentFee = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n removeFee(fee: any){\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n if (this.paymentGroup.fees && this.paymentGroup.fees.length > 1){\n this.totalAfterRemission = 0;\n this.getPaymentGroup();\n this.viewStatus = 'main';\n return;\n }\n this.loadCaseTransactionPage();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n loadCaseTransactionPage() {\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n\n let partUrl = `selectedOption=${this.paymentLibComponent.SELECTED_OPTION}`;\n partUrl +=this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n\n let url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=true&${partUrl}`;\n this.router.navigateByUrl(url);\n }\n cancelRemission() {\n this.viewStatus = 'main';\n }\n redirectToFeeSearchPage(event: any, page?: string) {\n event.preventDefault();\n let partUrl =this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n\n if(this.viewStatus === 'feeRemovalConfirmation' || this.viewStatus === 'add_remission') {\n this.viewStatus = 'main';\n return;\n }\n let url = `/fee-search?ccdCaseNumber=${this.ccdCaseNumber}&selectedOption=${this.paymentLibComponent.SELECTED_OPTION}&paymentGroupRef=${this.paymentGroupRef}${partUrl}`;\n this.router.navigateByUrl(url);\n }\n takePayment() {\n this.isConfirmationBtnDisabled = true;\n const requestBody = new PaymentToPayhubRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType),\n antennaReqBody = new PayhubAntennaRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType);\n\n if(this.platForm === 'Antenna') {\n\n this.paymentViewService.postPaymentAntennaToPayHub(antennaReqBody, this.paymentGroupRef).subscribe(\n response => {\n this.isBackButtonEnable=false;\n window.location.href = '/makePaymentByTelephoneyProvider';\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.router.navigateByUrl('/pci-pal-failure');\n }\n );\n }\n\n }\n\n goToAllocatePage(outStandingAmount: number, isFeeAmountZero: Boolean) {\n if (outStandingAmount > 0 || (outStandingAmount === 0 && isFeeAmountZero)) {\n this.paymentLibComponent.paymentGroupReference = this.paymentGroupRef;\n this.paymentLibComponent.viewName = 'allocate-payments';\n } else {\n this.loadCaseTransactionPage();\n }\n }\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\n\n\n\n@Component({\n selector: 'ccpay-error-banner',\n templateUrl: './error-banner.component.html',\n styleUrls: ['./error-banner.component.scss']\n})\n\nexport class ErrorBannerComponent implements OnInit {\n @Input('errorMessage') errorMessage;\n\n constructor(\n ) {}\n\n ngOnInit() {\n\n }\n}\n","\nexport class UnidentifiedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n unidentified_reason: string;\n\n constructor(payment_group_reference: string, payment_reference : string, unidentified_reason: any) {\n this.payment_allocation_status = {\n description: '',\n name: \"Unidentified\"\n };\n this.payment_group_reference = payment_group_reference ;\n this.payment_reference= payment_reference;\n this.unidentified_reason= unidentified_reason;\n\n }\n\n\n\n}\n","import { IBSPayments } from \"./IBSPayments\";\n\nexport class AllocatePaymentRequest {\n amount: Number;\n banked_date: String;\n ccd_case_number: String;\n exception_record: string;\n currency: String;\n document_control_number: String;\n external_provider: String;\n giro_slip_no: String;\n payer_name: String;\n payment_channel: Object;\n payment_status: Object;\n payment_method: String;\n case_type: String;\n payment_allocation_dto?: {\n allocation_reason: String,\n allocation_status: String,\n explanation: String,\n payment_allocation_status: Object,\n payment_group_reference: String,\n payment_reference: String,\n reason: String,\n receiving_office: String,\n unidentified_reason: String,\n user_id: String,\n user_name: String,\n case_type: String\n }\n\n constructor(ccd_case_number : string, unAllocatedPayment: IBSPayments, caseType: string, exceptionRecord: string, allocatedRequest?: any) {\n this.amount = unAllocatedPayment.amount;\n this.banked_date = unAllocatedPayment.date_banked;\n this.ccd_case_number = ccd_case_number;\n this.exception_record = exceptionRecord;\n this.currency= unAllocatedPayment.currency;\n this.document_control_number = unAllocatedPayment.dcn_reference;\n this.external_provider = 'exela';\n this.giro_slip_no = unAllocatedPayment.bgc_reference;\n this.payer_name = unAllocatedPayment.payer_name;\n this.payment_channel = {\n description: '',\n name: 'bulk scan'\n };\n this.payment_status ={\n description: 'bulk scan payment completed',\n name: 'success'\n }\n this.payment_method = unAllocatedPayment.payment_method;\n this.case_type= caseType;\n if(allocatedRequest) {\n this.payment_allocation_dto = allocatedRequest;\n }\n\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\n\n@Component({\n selector: 'app-mark-unidentified-payment',\n templateUrl: './mark-unidentified-payment.component.html',\n styleUrls: ['./mark-unidentified-payment.component.scss']\n})\nexport class MarkUnidentifiedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnidentifiedForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n isInvesticationDetailEmpty: boolean = false;\n investicationDetailHasError: boolean = false;\n investicationDetailMinHasError: boolean = false;\n investicationDetailMaxHasError: boolean = false;\n errorMessage = this.getErrorMessage(false);\n unassignedRecord:IBSPayments;\n siteID: string = null;\n investigationComment: string;\n isConfirmButtondisabled:Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n isStrategicFixEnable: boolean = true;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.markPaymentUnidentifiedForm = this.formBuilder.group({\n investicationDetail: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ]))\n });\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.getErrorMessage(false);\n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n saveAndContinue() {\n this.resetForm([false, false, false, false]);\n const investicationField = this.markPaymentUnidentifiedForm.controls.investicationDetail;\n const formerror = investicationField.errors;\n if (this.markPaymentUnidentifiedForm.dirty && this.markPaymentUnidentifiedForm.valid) {\n this.investigationComment = this.markPaymentUnidentifiedForm.controls.investicationDetail.value;\n this.viewStatus = 'unidentifiedContinueConfirm';\n }else {\n if(investicationField.value == '' ) {\n this.resetForm([true, false, false, false]);\n }\n if(investicationField.value != '' && investicationField.invalid ) {\n this.resetForm([false, true, false, false]);\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false, false, true, false]);\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, true]);\n }\n }\n }\n resetForm(val) {\n this.isInvesticationDetailEmpty = val[0];\n this.investicationDetailHasError = val[1];\n this.investicationDetailMinHasError = val[2];\n this.investicationDetailMaxHasError = val[3];\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const reason = this.markPaymentUnidentifiedForm.get('investicationDetail').value;\n\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Unidentified',\n payment_allocation_status: {\n description: '',\n name: 'Unidentified'\n },\n unidentified_reason: reason,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnidentifiedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, reason);\n if (response2.success) {\n this.paymentViewService.postBSUnidentifiedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n cancelMarkUnidentifiedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.markPaymentUnidentifiedForm.get('investicationDetail').value!==\"\"){\n this.viewStatus = 'unidentifiedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.viewStatus = 'mainForm';\n }\n }\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","\nexport class UnsolicitedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n receiving_office: string;\n receiving_email_address: string;\n sending_email_address: string;\n unidentified_reason: string;\n constructor(payment_group_reference: string, payment_reference : string, reason: string,responsible_office: string, responsible_person:string,email_id: string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Transferred\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.unidentified_reason= reason;\n this.receiving_office= responsible_office;\n this.receiving_email_address= email_id;\n this.sending_email_address= responsible_person;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\n\n\n@Component({\n selector: 'app-mark-unsolicited-payment',\n templateUrl: './mark-unsolicited-payment.component.html',\n styleUrls: ['./mark-unsolicited-payment.component.scss']\n})\nexport class MarkUnsolicitedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnsolicitedForm: FormGroup;\n viewStatus: string;\n reasonHasError: boolean = false;\n isReasonEmpty: boolean = false;\n reasonMinHasError: boolean = false;\n reasonMaxHasError: boolean = false;\n responsibleOfficeHasError: boolean = false;\n isResponsibleOfficeEmpty: boolean = false;\n errorMessage = this.getErrorMessage(false);\n ccdCaseNumber: string;\n bspaymentdcn: string;\n unassignedRecord: IBSPayments;\n siteID: string = null;\n reason: string;\n responsiblePerson: string;\n responsibleOffice: string;\n emailId: string;\n isConfirmButtondisabled: Boolean = false;\n isContinueButtondisabled: Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n selectedSiteId: string;\n selectedSiteName: string;\n isStrategicFixEnable: boolean = true;\n siteIDList;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.resetForm([false,false,false,false,false,false], 'all');\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.paymentViewService.getSiteID().subscribe(\n siteids => {\n this.isContinueButtondisabled = false;\n this.errorMessage = this.getErrorMessage(false);\n this.siteIDList = JSON.parse(siteids);\n },\n err => {\n window.scrollTo(0, 0);\n this.isContinueButtondisabled = true;\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n \n this.markPaymentUnsolicitedForm = this.formBuilder.group({\n reason: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n responsibleOffice: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s\\\\n,\\\\.-:]*)$')\n ])),\n responsiblePerson: new FormControl(''),\n emailId: new FormControl('')\n });\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const controls = this.markPaymentUnsolicitedForm.controls;\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Transferred',\n payment_allocation_status: {\n description: '',\n name: 'Transferred'\n },\n unidentified_reason: controls.reason.value,\n receiving_office: this.selectedSiteId,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n // controls.responsibleOffice.setValue('P219');\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const response1 = JSON.parse(res1),\n requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnsolicitedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, controls.reason.value, this.selectedSiteId, controls.responsiblePerson.value, controls.emailId.value);\n if (response2.success) {\n this.paymentViewService.postBSUnsolicitedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n saveAndContinue() {\n this.resetForm([false,false,false,false,false,false], 'all');\n const formerror = this.markPaymentUnsolicitedForm.controls.reason.errors;\n const reasonField = this.markPaymentUnsolicitedForm.controls.reason;\n //const officeIdField = this.selectedSiteId;\n const officeIdField = this.markPaymentUnsolicitedForm.controls.responsibleOffice;\n if (this.markPaymentUnsolicitedForm.dirty && this.markPaymentUnsolicitedForm.valid) {\n const controls = this.markPaymentUnsolicitedForm.controls;\n this.emailId = controls.emailId.value;\n this.responsibleOffice = officeIdField.value;\n this.responsiblePerson = controls.responsiblePerson.value;\n this.reason = controls.reason.value;\n this.viewStatus = 'unsolicitedContinueConfirm';\n }else {\n if( reasonField.value == '' ) {\n this.resetForm([true,false,false,false,false,false], 'reason');\n }\n if(reasonField.value != '' && this.markPaymentUnsolicitedForm.controls.reason.invalid ) {\n this.resetForm([false,true,false,false,false,false], 'reason');\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false,false,true,false,false,false], 'reason');\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false,false,false,true,false,false], 'reason');\n }\n if(officeIdField.value == '') {\n this.resetForm([false,false,false,false,true,false], 'responsibleOffice');\n }\n if(officeIdField.value != '' && officeIdField.invalid) {\n this.resetForm([false,false,false,false,false,true],'responsibleOffice');\n }\n }\n }\n resetForm(val, field) {\n if(field==='reason' || field==='all') {\n this.isReasonEmpty = val[0];\n this.reasonHasError = val[1];\n this.reasonMinHasError = val[2];\n this.reasonMaxHasError = val[3];\n }\n if(field==='responsibleOffice' || field==='all') {\n this.isResponsibleOfficeEmpty = val[4];\n this.responsibleOfficeHasError = val[5];\n }\n }\n\ncancelMarkUnsolicitedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.checkingFormValue()){\n this.viewStatus = 'unsolicitedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.markPaymentUnsolicitedForm.controls.responsibleOffice.setValue('');\n this.viewStatus = 'mainForm';\n }\n }\n checkingFormValue(){\n const formFields = this.markPaymentUnsolicitedForm.value;\n let valueExists = false;\n\n for (var field in formFields) {\n if (formFields.hasOwnProperty(field) && formFields[field] !==\"\") {\n valueExists = true;\n break;\n }\n }\n return valueExists;\n }\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n \n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n\n getErrorMessage(isErrorExist) {\n return {\n title: \"Something went wrong.\",\n body: \"Please try again later.\",\n showError: isErrorExist\n };\n }\n\n selectchange(args){ \n this.selectedSiteId = args.target.value; \n this.selectedSiteName = args.target.options[args.target.selectedIndex].text; \n } \n\n}\n","import { Component, OnInit, Output,Input, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport {Router} from '@angular/router';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-app-unprocessed-payments',\n templateUrl: './unprocessed-payments.component.html',\n styleUrls: ['./unprocessed-payments.component.scss']\n})\nexport class UnprocessedPaymentsComponent implements OnInit {\n\n @Input('FEE_RECORDS_EXISTS') FEE_RECORDS_EXISTS: boolean;\n @Input('PAYMENTREF') PAYMENTREF: string;\n @Input('ISTURNOFF') ISTURNOFF: boolean;\n @Input('IS_BUTTON_ENABLE') IS_BUTTON_ENABLE: boolean;\n @Input('IS_OS_AMT_AVAILABLE') IS_OS_AMT_AVAILABLE: boolean;\n @Input('ISSFENABLE') ISSFENABLE: boolean;\n @Input('PAYMENTSLENGTH') PAYMENTSLENGTH:Number;\n @Input('LEVEL')LEVEL:Number;\n\n @Output() selectedUnprocessedFeeEvent: EventEmitter<string> = new EventEmitter();\n @Output() getUnprocessedFeeCount: EventEmitter<string> = new EventEmitter();\n\n viewStatus = 'main';\n unassignedRecordList: IBSPayments;\n upPaymentErrorMessage: string = null;\n ccdCaseNumber: string;\n recordId: string = null;\n isRecordExist: boolean = false;\n dcnNumber: string = null;\n selectedOption: string;\n isUnprocessedRecordSelected: boolean = true;\n isAllocateToExistingFeebtnEnabled: boolean = false;\n isMarkAsUnidentifiedbtnEnabled: boolean = false;\n isAllocatedToNewFeebtnEnabled: boolean = false;\n isExceptionCase: boolean = false;\n serviceId: string = null;\n isBulkScanEnable;\n isTurnOff: boolean = true;\n isStFixEnable;\n unassignedRecordSelectedList: IBSPayments;\n unassignedRecordListLength: number = 0;\n showContent: boolean;\n\n constructor(private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private OrderslistService: OrderslistService\n ) { }\n\n ngOnInit() {\n // Todo ...\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isStFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.getFeeExists().subscribe( (data) => this.FEE_RECORDS_EXISTS = data);\n this.getUnassignedPaymentlist();\n\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.dcnNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n }\n\n }\n\n setValuesForUnassignedRecord(unassignedPayments) {\n\n this.unassignedRecordList = unassignedPayments.payments;\n if(this.unassignedRecordList){\n this.unassignedRecordListLength = unassignedPayments.payments.length\n }\n this.serviceId = unassignedPayments.responsible_service_id;\n if (unassignedPayments['ccd_reference'] === undefined) {\n this.isExceptionCase = true;\n }\n // this.isRecordExist = this.unassignedRecordList.length === 0;\n this.getUnprocessedFeeCount.emit(<any>this.unassignedRecordList.length);\n this.unprocessedPaymentSelectEvent(this.unassignedRecordList);\n }\n\n formatUnassignedRecordId(ID: Number) {\n return `unassignrecord-${ID}`;\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n\n redirectToFeeSearchPage(event: any, dcn_reference:any) {\n event.preventDefault();\n this.recordId = dcn_reference;\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}&dcn=${this.recordId}${url}`);\n }\n\n loadUnsolicitedPage(viewName: string, dcn_reference:any) {\n this.recordId = dcn_reference;\n this.paymentLibComponent.bspaymentdcn = this.recordId;\n this.paymentLibComponent.viewName = viewName;\n }\n\n unprocessedPaymentSelectEvent(selectedRecordReference: any) {\n this.isUnprocessedRecordSelected = true;\n this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit(selectedRecordReference);\n }\n\n resetButtons() {\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n }\n\n goToAllocatePage(dcn_reference:any) {\n this.paymentLibComponent.bspaymentdcn = dcn_reference;\n this.paymentLibComponent.unProcessedPaymentServiceId = this.serviceId\n this.paymentLibComponent.isTurnOff = this.ISTURNOFF;\n this.paymentLibComponent.ISSFENABLE = this.isStFixEnable;\n\n if(this.ISTURNOFF) {\n this.paymentLibComponent.paymentGroupReference = this.PAYMENTREF;\n this.paymentLibComponent.viewName = 'fee-summary';\n }else {\n this.paymentLibComponent.paymentGroupReference = null;\n this.paymentLibComponent.viewName = 'allocate-payments';\n }\n\n }\n\n validateButtons() {\n if ( this.isUnprocessedRecordSelected && this.isExceptionCase) {\n this.isMarkAsUnidentifiedbtnEnabled = true;\n } else if ( this.isUnprocessedRecordSelected && !this.isExceptionCase && !this.FEE_RECORDS_EXISTS) {\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = true;\n } else if( this.isUnprocessedRecordSelected && !this.isExceptionCase && this.FEE_RECORDS_EXISTS ) {\n if(!this.ISTURNOFF) {\n this.isAllocateToExistingFeebtnEnabled = true;\n this.isAllocatedToNewFeebtnEnabled = false;\n } else {\n this.isAllocateToExistingFeebtnEnabled = this.IS_OS_AMT_AVAILABLE;\n this.isAllocatedToNewFeebtnEnabled = true;\n }\n }\n }\n\n unprocessedPaymentUnSelectEvent(event: any) {\n event.preventDefault();\n this.recordId = null;\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n //this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit('');\n }\n\n showDetailRow(event: any,obj: any, i: any) {\n event.preventDefault();\n\n this.unassignedRecordSelectedList = obj;\n\n }\n}\n","import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport {IPayment} from '../../interfaces/IPayment';\nimport {Router} from '@angular/router';\n\n@Component({\n selector: 'ccpay-app-processed-payments',\n templateUrl: './processed-payments.component.html',\n styleUrls: ['./processed-payments.component.scss']\n})\nexport class ProcessedPaymentsComponent implements OnInit {\n\n @Input('NONPAYMENTS') NONPAYMENTS: IPayment[];\n @Output() goToPaymentViewComponent: EventEmitter<any> = new EventEmitter();\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService\n ) { }\n ngOnInit() {\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n redirectToPaymentViewPage(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent.emit({paymentGroupReference, paymentReference, paymentMethod});\n }\n}\n","\nexport class IAllocationPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n reason: string;\n explanation: string;\n user_name: string;\n constructor(payment_group_reference: string, payment_reference : string, reason? : string, explanation? : string, userName? : string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Allocated\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.reason = reason ? reason : null;\n this.explanation = explanation ? explanation : null;\n this.user_name = userName ? userName : null;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {CaseTransactionsService} from '../../services/case-transactions/case-transactions.service'; \nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport {IBSPayments} from '../../interfaces/IBSPayments';\nimport {AllocatePaymentRequest} from '../../interfaces/AllocatePaymentRequest';\nimport {IAllocationPaymentsRequest} from '../../interfaces/IAllocationPaymentsRequest';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n\n\n@Component({\n selector: 'app-allocate-payments',\n templateUrl: './allocate-payments.component.html',\n styleUrls: ['./allocate-payments.component.scss']\n})\nexport class AllocatePaymentsComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() caseType: string;\n\n overUnderPaymentForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n recordId:string;\n feedbackUrlLabel:string;\n unAllocatedPayment: IBSPayments = {\n amount: 0\n };\n siteID: string = null;\n errorMessage = this.errorHandlerService.getServerErrorMessage(false, false, '');\n paymentGroup: IPaymentGroup;\n paymentGroups: IPaymentGroup[] = [];\t\n remainingAmount: number;\n isRemainingAmountGtZero: boolean;\n isMoreDetailsBoxHide: boolean = true;\n isRemainingAmountLtZero: boolean;\n afterFeeAllocateOutstanding: number;\n amountForAllocation: number;\n isConfirmButtondisabled: boolean = false;\n isContinueButtondisabled: boolean = true;\n otherPaymentExplanation: string = null;\n selectedOption: string = null;\n isFeeAmountZero: boolean = false;\t\n\n paymentReasonHasError: boolean = false;\n paymentExplanationHasError: boolean = false;\n isPaymentDetailsEmpty: boolean = false;\n isPaymentDetailsInvalid: boolean = false;\n paymentDetailsMinHasError: boolean = false;\n paymentDetailsMaxHasError: boolean = false;\n isUserNameEmpty: boolean = false;\n isUserNameInvalid: boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n paymentReason: string = null;\n paymentExplanation: string = null;\n userName: string = null;\n paymentSectionLabel: any;\n paymentRef: string = null;\n isStrategicFixEnable: boolean = true;\n orderLevelFees: IOrderReferenceFee[] = [];\n cookieUserName: string[] = [];\n enCookieUserName: any;\n userNameField: string = null;\n\n reasonList: { [key: string]: { [key: string]: string } }= {\n overPayment: {\n hwfReward: 'Help with Fees (HWF) awarded. Please include the HWF reference number in the explanatory note',\n wrongFee: 'Incorrect payment received',\n notIssueCase: 'Unable to issue case',\n otherDeduction: 'Other'\n },\n shortFall: {\n helpWithFee: 'Help with Fees (HWF) application declined',\n wrongFee: 'Incorrect payment received',\n other: 'Other'\n }\n }\n explanationList = {\n overPayment: {\n referRefund: 'Details in case notes. Refund due',\n noRefund: 'Details in case notes. No refund due',\n noCase: 'No case created. Refund due',\n other: 'Other'\n },\n shortFall: {\n holdCase: 'I have put a stop on the case and contacted the applicant requesting the balance of payment',\n heldCase: 'I have put a stop on the case. The applicant needs to be contacted to request the balance of payment',\n other: 'Other'\n }\n }\n\n refund = {\n reason: {\n duplicate: 'Duplicate payment',\n humanerror: 'Human error',\n caseWithdrawn: 'Case withdrawn',\n other: 'Other'\n }\n }\n\n\n constructor(\n private errorHandlerService: ErrorHandlerService,\n private caseTransactionsService: CaseTransactionsService,\n private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n if (this.paymentLibComponent.paymentGroupReference !== null) {\n this.viewStatus = 'allocatePaymentConfirmation';\n }\n \n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.paymentRef = this.paymentLibComponent.paymentGroupReference;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.isTurnOff = this.paymentLibComponent.isTurnOff;\n this.overUnderPaymentForm = this.formBuilder.group({\n moreDetails: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n userName: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s]*)$')\n ])),\n });\n this.OrderslistService.getOrdersList().subscribe( (data) =>\n this.orderLevelFees = data.filter(data => data.orderStatus !== 'Paid'));\n this.OrderslistService.getCaseType().subscribe( (data) => this.caseType = data);\n this.getUnassignedPayment();\n }\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n }\n\n getPaymentGroupDetails(){\n\n if(!this.isTurnOff){\n this.paymentViewService.getPaymentGroupDetails(this.paymentRef).subscribe(\n paymentGroup => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false, false, '');\n this.paymentGroup = paymentGroup;\n this.saveAndContinue();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\n }\n );\n }else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false, false, '');\n this.paymentGroups = paymentGroups['payment_groups'].filter(paymentGroup => {\n paymentGroup.fees.forEach(fee => {\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true\n }\n });\n let fstCon = this.getGroupOutstandingAmount(<IPaymentGroup>paymentGroup),\n scndCn = fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero) && paymentGroup.payment_group_reference === this.paymentRef;\n return this.paymentRef ? scndCn : fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero);\n });\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\n }\n );\n }\n\n }\n\n selectedPaymentGroup(paymentGroup: IPaymentGroup) {\t\n this.isContinueButtondisabled = false;\t\n this.paymentGroup = paymentGroup;\t\n }\t\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n\n gotoSummaryPage(event: any) { \n event.preventDefault();\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n\n cancelAllocatePayment(event: any){\n event.preventDefault();\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n if(!this.isTurnOff){\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n } else {\n this.viewStatus = 'mainForm';\t\n }\n }\n confirmAllocatePayement(){\n this.enCookieUserName = document.cookie.split(\";\").find(row => row.includes(\"user-info\")).split(\"=\")[1].split(\";\");\n this.cookieUserName = JSON.parse(decodeURIComponent(this.enCookieUserName));\n \n const fullName = this.cookieUserName['forename'] + ' ' + this.cookieUserName['surname'];\n\n const paymentDetailsField = this.overUnderPaymentForm.controls.moreDetails,\n paymentFormError = this.overUnderPaymentForm.controls.moreDetails.errors,\n userNameField = fullName,\n isEmptyCondtion = this.paymentReason && this.paymentExplanation,\n isOtherOptionSelected = this.paymentExplanation === 'Other';\n\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n if ( (!this.isRemainingAmountGtZero && !this.isRemainingAmountLtZero) || isEmptyCondtion && (!isOtherOptionSelected && userNameField.length > 0 || isOtherOptionSelected && userNameField.length > 0 && paymentDetailsField.valid)) {\n this.isConfirmButtondisabled = true;\n this.otherPaymentExplanation = this.paymentExplanation === 'Other' ? paymentDetailsField.value : this.paymentExplanation;\n this.userName = userNameField;\n this.finalServiceCall();\n }else {\n if(!this.paymentReason) {\n this.resetForm([true, false, false, false, false, false, false, false], 'reason');\n }\n if(!this.paymentExplanation) {\n this.resetForm([false, true, false, false, false, false, false, false], 'explanation');\n }\n if(this.paymentExplanation && isOtherOptionSelected) {\n if(paymentDetailsField.value == '' ) {\n this.resetForm([false, false, true, false, false, false, false, false], 'other');\n }\n if(paymentDetailsField.value != '' && paymentDetailsField.invalid ) {\n this.resetForm([false, false, false, true, false, false, false, false], 'other');\n }\n if(paymentFormError && paymentFormError.minlength && paymentFormError.minlength.actualLength < 3 ) {\n this.resetForm([false, false, false, false, true, false, false, false], 'other');\n }\n if(paymentFormError && paymentFormError.maxlength && paymentFormError.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, false, false, true, false, false], 'other');\n }\n }\n if(userNameField.length === 0) {\n this.resetForm([false, false, false, false, false, false, true, false], 'username');\n }\n }\n }\n resetForm(vals, field) {\n if(field==='reason' || field==='all') {\n this.paymentReasonHasError = vals[0];\n }\n if(field==='explanation' || field==='all') {\n this.paymentExplanationHasError = vals[1];\n }\n if(field==='other' || field==='all') {\n this.isPaymentDetailsEmpty = vals[2];\n this.isPaymentDetailsInvalid = vals[3];\n this.paymentDetailsMinHasError = vals[4];\n this.paymentDetailsMaxHasError = vals[5];\n }\n if(field==='username' || field==='all') {\n this.isUserNameEmpty = vals[6];\n this.isUserNameInvalid = vals[7];\n }\n }\n finalServiceCall() {\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n reason: this.paymentReason,\n allocation_status:'Allocated',\n explanation: this.otherPaymentExplanation,\n payment_allocation_status: {\n description: '',\n name: 'Allocated'\n },\n payment_group_reference: this.paymentGroup.payment_group_reference,\n case_type: this.caseType,\n user_name: this.userName\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unAllocatedPayment, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSPaymentStrategic(postStrategicBody , this.paymentGroup.payment_group_reference).subscribe(\n res => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false, false, '');\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n });\n\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false, false, '');\n let response1 = JSON.parse(res1);\n if (response1.success) {\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unAllocatedPayment, this.siteID, this.exceptionReference);\n this.bulkScaningPaymentService.postBSAllocatePayment(requestBody, this.paymentGroup.payment_group_reference).subscribe(\n res2 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false, false, '');\n let response2 = JSON.parse(res2);\n const reqBody = new IAllocationPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, this.paymentReason, this.otherPaymentExplanation, this.userName);\n if (response2.success) {\n this.paymentViewService.postBSAllocationPayments(reqBody).subscribe(\n \n res3 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false, false, '');\n let response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n ); \n }\n }\n\n saveAndContinue(){\n if(this.paymentGroup) {\n this.isMoreDetailsBoxHide = true;\n this.overUnderPaymentForm.get('moreDetails').reset();\n this.overUnderPaymentForm.get('moreDetails').setValue('');\n this.overUnderPaymentForm.get('userName').reset();\n this.overUnderPaymentForm.get('userName').setValue('');\n this.paymentReason = '';\n this.paymentExplanation = '';\n let GroupOutstandingAmount = this.getGroupOutstandingAmount(this.paymentGroup);\n const remainingToBeAssigned = this.unAllocatedPayment.amount - GroupOutstandingAmount;\n this.isRemainingAmountGtZero = remainingToBeAssigned > 0;\n this.isRemainingAmountLtZero = remainingToBeAssigned < 0;\n this.paymentSectionLabel = this.isRemainingAmountGtZero ? { \n title: 'There is an Over payment of',\n reason: 'Provide a reason. This will be used in the Refund process.',\n }: this.isRemainingAmountLtZero ? { \n title: 'There is an Under payment of',\n reason: 'Provide a reason',\n }: { \n title:'Amount left to be allocated',\n reason:'',\n };\n this.feedbackUrlLabel = this.isRemainingAmountGtZero ? 'CONFIRMALLOCATION_SURPLUS' : this.isRemainingAmountLtZero ? 'CONFIRMALLOCATION_SHORTFALL' : 'CONFIRMALLOCATION';\n this.remainingAmount = this.isRemainingAmountGtZero ? remainingToBeAssigned : this.isRemainingAmountLtZero ? remainingToBeAssigned * -1 : 0;\n this.afterFeeAllocateOutstanding = remainingToBeAssigned >= 0 ? 0 : (remainingToBeAssigned * -1);\n this.amountForAllocation = GroupOutstandingAmount >= this.unAllocatedPayment.amount ? this.unAllocatedPayment.amount : GroupOutstandingAmount;\n if(this.isTurnOff){\n this.viewStatus = 'allocatePaymentConfirmation';\t\n }\n }\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false, false, '');\n this.unAllocatedPayment = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n this.getPaymentGroupDetails();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\n }\n );\n }\n selectRadioButton(key, type) {\n this.isMoreDetailsBoxHide = true;\n if( type === 'explanation' && key === 'other' ){\n this.isPaymentDetailsEmpty = false;\n this.isPaymentDetailsInvalid = false;\n this.paymentDetailsMinHasError = false;\n this.paymentDetailsMaxHasError = false;\n this.isMoreDetailsBoxHide = false;\n }\n }\n OrderListSelectEvent(orderef: any){\n this.isContinueButtondisabled = false;\n this.recordId= orderef;\n }\n\n redirectToOrderFeeSearchPage() {\n // this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = this.recordId;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n}\n}\n","import { IFee } from './IFee';\n\nexport class AddRemissionRequest {\n beneficiary_name: string;\n ccd_case_number: string;\n fee: IFee;\n hwf_amount: number;\n hwf_reference: string;\n payment_group_reference: string;\n case_type: string;\n\n constructor(ccd_case_number: string, fee: IFee, hwf_amount: number, hwf_reference: string, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.fee = fee;\n this.hwf_amount = hwf_amount;\n this.hwf_reference = hwf_reference;\n this.case_type = caseType;\n }\n}\n","export class AddRetroRemissionRequest {\n hwf_amount: number;\n hwf_reference: string;\n\n constructor(hwf_amount: number, hwf_reference: string) {\n this.hwf_amount = hwf_amount;\n this.hwf_reference = hwf_reference;\n }\n}\n","import { IRefundContactDetails } from './IRefundContactDetails';\n\nexport class PostIssueRefundRetroRemission {\n remissionReference: string;\n contact_details: IRefundContactDetails;\n\n constructor(remissionReference : string, contactDeatils: any) {\n this.remissionReference= remissionReference;\n this.contact_details = contactDeatils;\n } \n}","import { Component, OnInit, Input, Output, EventEmitter} from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl, RequiredValidator, FormArray } from '@angular/forms';\nimport { IFee } from '../../interfaces/IFee';\nimport {Router} from '@angular/router';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\n\nimport { IPayment } from '../../interfaces/IPayment';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';\nimport { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\nimport { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';\nimport {ChangeDetectorRef} from '@angular/core';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\nconst resolvedPromise = Promise.resolve(null);\n\n@Component({\n selector: 'ccpay-add-remission',\n templateUrl: './add-remission.component.html',\n styleUrls: ['./add-remission.component.scss']\n})\nexport class AddRemissionComponent implements OnInit {\n @Input() fee: IFee;\n @Input() fees: any [];\n @Input() payment: IPayment;\n @Input() remission: IRemission;\n @Input() ccdCaseNumber: string;\n @Input() caseType: string;\n @Input() viewCompStatus: string;\n @Input() paymentGroupRef: string;\n @Input() isTurnOff: boolean;\n @Input() isRefundRemission: boolean;\n @Input() isStrategicFixEnable: boolean;\n @Input() paidAmount: any;\n @Input() isFromRefundListPage: boolean;\n @Input() isFromPaymentDetailPage: boolean;\n @Input() isFromServiceRequestPage: boolean;\n @Input('isFullyRefund') isFullyRefund: boolean;\n @Input() feeamount: number;\n @Input() refundPaymentReference: string;\n @Input() isFromRefundStatusPage: boolean;\n @Input() changeRefundReason: string;\n @Input(\"isServiceRequest\") isServiceRequest: string;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input('orderDetail') orderDetail: any[];\n @Input('orderRef') orderRef: string;\n @Input('orderStatus') orderStatus: string;\n @Input('orderParty') orderParty: string;\n @Input('orderCreated') orderCreated: Date;\n @Input('orderCCDEvent') orderCCDEvent: string;\n @Input('takepayment') takePayment: boolean;\n @Input('orderFeesTotal') orderFeesTotal: number;\n @Input('orderTotalPayments') orderTotalPayments: number;\n @Input('orderRemissionTotal') orderRemissionTotal: number;\n @Output() cancelRemission: EventEmitter<void> = new EventEmitter();\n //@Output() refundListReason: EventEmitter<any> = new EventEmitter({reason:string, code:string});\n @Output() refundListReason = new EventEmitter<{reason: string, code: string}>();\n @Output() refundListAmount: EventEmitter<string> = new EventEmitter();\n @Output() refundFees: EventEmitter<IFee[]> = new EventEmitter<IFee[]>();\n refund = {\n reason: {\n duplicate: 'Duplicate payment',\n humanerror: 'Human error',\n caseWithdrawn: 'Case withdrawn',\n other: 'Other'\n }\n }\n contactDetailsObj: IRefundContactDetails;\n notification: any;\n remissionForm: FormGroup;\n hasErrors = false;\n viewStatus = 'main';\n errorMessage = null;\n option: string = null;\n isConfirmationBtnDisabled: boolean = false;\n bsPaymentDcnNumber: string;\n selectedValue = 'yes';\n amount: any;\n retroRemission: boolean = false;\n remissionReference: string = '';\n refundReference: string;\n refundAmount: string;\n paymentExplanationHasError: boolean = false;\n refundReason:string;\n selectedRefundReason: string;\n displayRefundReason: string;\n refundCode:string;\n remessionPayment:IPayment;\n isRemissionCodeEmpty: boolean = false;\n remissionCodeHasError: boolean = false;\n isAmountEmpty: boolean = false;\n isReasonEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n refundHasError:boolean = false;\n isPaymentSuccess: boolean = false;\n isRemissionApplied: boolean = false;\n remissionamt:number;\n elementId:any;\n // refundReasons: any[] = [];\n commonRefundReasons: any[] = [];\n showReasonText: boolean;\n isRefundReasonsSelected: boolean;\n default: string;\n reasonLength: number;\n refundReasons:IRefundReasons[];\n pattern1: string;\n pattern2: string;\n sendOrderDetail: any[];\n sendOrderRef: string;\n paymentReference : string;\n class='';\n errorMsg = new Array();\n totalRefundAmount: number;\n quantityUpdated: number;\n fullRefund: boolean;\n allowedRefundAmount: number;\n isRemissionsMatch: boolean;\n paymentFees: IFee[];\n paymentGroup: IPaymentGroup;\n isStatusAllocated: boolean;\n isFromCheckAnsPage: boolean;\n refundAmtForFeeVolumes: number;\n \n component: { account_number: string; amount: number; case_reference: string; ccd_case_number: string; channel: string; currency: string; customer_reference: string; date_created: string; date_updated: string; description: string; method: string; organisation_name: string; payment_allocation: any[]; reference: string; service_name: string; site_id: string; status: string; };\n\n constructor(private formBuilder: FormBuilder,\n private router: Router,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private refundService: RefundsService,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.errorMessage = '';\n this.errorMsg = [];\n this.default = 'Select a different reason';\n this.pattern1 = '^([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})$';\n this.pattern2 = '^([A-Za-z]{2}[0-9]{2})-([0-9]{6})$';\n if(this.viewCompStatus !== '' && this.viewCompStatus !== undefined){\n this.viewStatus = '';\n }\n if(this.remission) {\n }\n if(this.fee) {\n this.amount = (this.fee.volume * this.fee.calculated_amount);\n }\n \n if (this.payment){\n this.paymentReference = this.payment.reference;\n this.remessionPayment = this.payment;\n if(this.payment.status === 'Success') {\n this.isPaymentSuccess = true;\n }\n }\n this.option = this.paymentLibComponent.SELECTED_OPTION;\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.remissionForm = this.formBuilder.group({\n remissionCode: new FormControl('',\n Validators.compose([\n Validators.required,\n Validators.pattern(`(${this.pattern1})|(${this.pattern2})`)\n ])\n ),\n amount: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[0-9]+(\\.[0-9]{1,2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n refundDDReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl(),\n feeAmount: new FormControl(),\n feesList: this.formBuilder.array([])\n });\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundDDReason'].setValue('Select a different reason', {onlySelf: true});\n if(this.refundPaymentReference !== undefined && this.refundPaymentReference.length >0) {\n this.paymentReference = this.refundPaymentReference\n } else {\n this.paymentReference = this.payment.reference;\n }\n \n\n if(this.isFromServiceRequestPage) {\n this.paymentViewService.getApportionPaymentDetails(this.paymentReference).subscribe(\n paymentGroup => {\n let fees = [];\n paymentGroup.fees.forEach(fee => {\n this.isRemissionsMatch = false;\n \n paymentGroup.remissions.forEach(rem => {\n if (rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n if (!this.isRemissionsMatch) {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees\n this.paymentFees =fees;\n this.fees = fees;\n this.paymentGroup = paymentGroup;\n \n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n this.refundFeesList();\n },\n (error: any) => this.errorMessage = error\n );\n }\n\n \n if (this.fees && this.viewCompStatus === 'issuerefund') {\n this.refundFeesList();\n }\n\n if(this.viewCompStatus === ''){\n this.viewStatus = 'main';\n }\n \n if(this.viewCompStatus === 'issuerefundpage1'){\n this.refundService.getRefundReasons().subscribe(\n refundReasons => {\n this.refundReasons = refundReasons.filter((data) => data.recently_used === false);\n this.refundReasons = this.refundReasons.filter((data) => data.name !== 'Retrospective remission' && data.name !== 'Overpayment');\n this.cd.detectChanges();\n this.commonRefundReasons = refundReasons.filter((data) => data.recently_used === true);\n this.commonRefundReasons.sort((a, b) => a.toString().localeCompare(b));\n this.cd.detectChanges();\n } );\n this.refundReason = this.changeRefundReason;\n }\n\n if(this.viewCompStatus === 'processretroremissonpage' && this.isFromRefundListPage){\n this.viewStatus = 'processretroremissonpage';\n }\n if(this.orderDetail !== undefined){\n this.paymentViewService.getApportionPaymentDetails(this.orderDetail[0].payments[0].reference).subscribe(\n paymentGroup => {\n this.fees = paymentGroup.fees;\n this.paymentReference = paymentGroup.payments[0].reference;\n },\n (error: any) => this.errorMessage = error\n );\n }\n\n }\n goToPaymentViewComponent() {\n this.paymentLibComponent.paymentMethod = this.payment.method;\n this.paymentLibComponent.paymentGroupReference = this.paymentGroupRef;\n this.paymentLibComponent.paymentReference = this.paymentReference;\n //this.PaymentViewComponent.viewCompStatus = 'overpayment';\n this.paymentLibComponent.viewName = 'payment-view';\n }\n refundFeesList() {\n const creds = this.remissionForm.controls.feesList as FormArray;\n // if(creds.controls.length > 0) {\n for(var i=0;i<this.fees.length;i++) {\n creds.push(this.formBuilder.group({\n id: this.fees[i].id,\n code: this.fees[i].code,\n volume: this.fees[i].volume,\n calculated_amount: this.fees[i].calculated_amount,\n apportion_amount: this.fees[i].apportion_amount,\n ccd_case_number: this.fees[i].ccd_case_number,\n description: this.fees[i].description,\n net_amount: this.fees[i].net_amount,\n version: this.fees[i].version,\n refund_amount : [''],\n selected:[''] ,\n updated_volume: this.fees[i].volume\n }));\n }\n this.cd.detectChanges();\n //}\n }\n\n get feesList()\n {\n const dd =this.remissionForm.get('feesList') as FormArray ;\n return this.remissionForm.get('feesList') as FormArray;\n }\n\n noneSelected(){\n if(this.isFullyRefund) {\n return false;\n } else {\n if(!this.feesList.controls.some(item => item.get('selected').value === true)) {\n this.errorMsg = [];\n [].forEach.call(document.querySelectorAll('input'), function (el) {\n el.classList.remove('inline-error-class');\n });\n }\n return !this.feesList.controls.some(item => item.get('selected').value === true);\n }\n }\n \n check_en (i,v1: any, AppAmt,Volume) {\n const ele = document.getElementById(v1) as HTMLInputElement;\n const formArray = this.remissionForm.controls.feesList as FormArray;\n \n if(ele.checked){\n formArray.at(i).get('refund_amount').setValue(AppAmt);\n formArray.at(i).get('volume').setValue(Volume);\n formArray.at(i).get('selected').setValue(true);\n formArray.at(i).get('updated_volume').setValue(Volume);\n (<HTMLInputElement>document.getElementById('feeAmount_'+v1)).value = AppAmt;\n document.getElementById('feeAmount_'+v1).removeAttribute(\"disabled\"); \n if(Volume === 1) {\n (<HTMLInputElement>document.getElementById('VolumeUpdated_'+v1)).value = Volume;\n } else {\n (<HTMLInputElement>document.getElementById('feeVolumeUpdated_'+v1)).value = Volume;\n }\n \n if (document.getElementById('feeVolumeUpdated_'+v1) !== null) {\n document.getElementById('feeAmount_'+v1).removeAttribute(\"disabled\"); \n document.getElementById('feeVolumeUpdated_'+v1).removeAttribute(\"disabled\"); \n } \n this.cd.detectChanges(); \n } else {\n this.errorMsg = []; \n document.getElementById('feeAmount_'+v1).setAttribute(\"disabled\", \"true\"); \n this.remissionForm.value.feesList[i][\"refund_amount\"] = ''; \n this.remissionForm.value.feesList[i][\"volume\"] = ''; \n this.remissionForm.value.feesList[i][\"selected\"] = false; \n (<HTMLInputElement>document.getElementById('feeAmount_'+v1)).value = '';\n if(Volume>1) {\n this.remissionForm.value.feesList[i][\"volume\"] = ''; \n (<HTMLInputElement>document.getElementById('feeVolumeUpdated_'+v1)).value = '';\n }\n \n if (document.getElementById('feeVolumeUpdated_'+v1) !== null) {\n document.getElementById('feeVolumeUpdated_'+v1).removeAttribute(\"disabled\"); \n }\n this.cd.detectChanges();\n } \n }\n\n\n addRemission() {\n this.resetRemissionForm([false, false, false, false, false, false], 'All');\n const remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount > remissionctrls.amount.value;\n this.remissionForm.controls['refundReason'].setErrors(null);\n this.remissionForm.controls['refundDDReason'].setErrors(null);\n if (this.remissionForm.dirty && this.remissionForm.valid && isRemissionLessThanFee) {\n this.viewStatus = 'confirmation';\n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false, false], 'amount');\n }\n if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true, false], 'amount');\n }\n }\n }\n\n confirmRemission() {\n this.isConfirmationBtnDisabled = true;\n const newNetAmount = this.remissionForm.controls.amount.value,\n remissionAmount = this.fee.net_amount - newNetAmount,\n requestBody = new AddRemissionRequest\n (this.ccdCaseNumber, this.fee, remissionAmount, this.remissionForm.controls.remissionCode.value, this.caseType);\n this.paymentViewService.postPaymentGroupWithRemissions(decodeURIComponent(this.paymentGroupRef).trim(), this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response).success) {\n let LDUrl = this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable'\n LDUrl += `&caseType=${this.caseType}`\n if (this.paymentLibComponent.bspaymentdcn) {\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(`/payment-history/${this.ccdCaseNumber}?view=fee-summary&selectedOption=${this.option}&paymentGroupRef=${this.paymentGroupRef}&dcn=${this.paymentLibComponent.bspaymentdcn}${LDUrl}`);\n }else {\n this.gotoCasetransationPage();\n }\n\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n }\n );\n }\n\n resetRemissionForm(val, field){\n if (field==='All'){\n this.isRemissionCodeEmpty = val[0];\n this.remissionCodeHasError = val[1];\n this.isAmountEmpty = val[2];\n this.amountHasError = val[3];\n this.isRemissionLessThanFeeError = val[4];\n this.isReasonEmpty = val[5];\n } else if(field==='remissionCode' || field==='All') {\n this.isRemissionCodeEmpty = val[0];\n this.remissionCodeHasError = val[1];\n } else if (field==='amount' || field==='All'){\n this.isAmountEmpty = val[2];\n this.amountHasError = val[3];\n this.isRemissionLessThanFeeError = val[4];\n } else if (field==='reason' || field==='All'){\n this.isReasonEmpty = val[5];\n }\n }\n\n // Add retro remission changes\n addRemissionCode() {\n this.errorMessage = false;\n // this.isFromCheckAnsPage = true;\n this.errorMsg = [];\n this.viewStatus = '';\n this.isRefundRemission = false;\n this.resetRemissionForm([false, false, false, false, false, false], 'All');\n const remissionctrls=this.remissionForm.controls\n // isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value;\n this.remissionForm.controls['refundReason'].setErrors(null);\n this.remissionForm.controls['refundDDReason'].setErrors(null);\n this.remissionForm.controls['amount'].setErrors(null);\n if (this.remissionForm.dirty && this.remissionForm.valid ) {\n if (!this.isFromCheckAnsPage) {\n this.viewCompStatus = '';\n this.viewStatus = \"processretroremissonpage\";\n } else {\n this.viewCompStatus = '';\n this.viewStatus = 'checkretroremissionpage';\n }\n \n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false], 'amount');\n }\n if(remissionctrls['reason'].value == '') {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n }\n if(remissionctrls.amount.valid){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n }\n\n }\n }\n\n\n gotoAddRetroRemissionCodePage() {\n this.errorMessage = false;\n this.isFromCheckAnsPage = false;\n this.errorMsg = [];\n if(this.isRefundRemission) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListAmount.emit();\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n }\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n }\n this.viewStatus = '';\n this.selectedValue = 'yes';\n this.viewCompStatus = \"addremission\";\n this.isRefundRemission = true;\n this.errorMessage = '';\n this.errorMsg = [];\n if(this.isFromPaymentDetailPage) {\n this.paymentLibComponent.viewName = 'payment-view';\n }\n }\n\n gotoCheckRetroRemissionPage(payment: IPayment) {\n this.paymentLibComponent.iscancelClicked = false;\n this.errorMessage = '';\n this.resetRemissionForm([false, false, false, false, false], 'All');\n if( !this.isRefundRemission) {\n var remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value;\n if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' || remissionctrls['amount'].value < 0) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, false, false, true, false], 'amount');\n } else if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n }\n }\n } else {\n var remissionctrls=this.remissionForm.controls;\n //if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' || remissionctrls['amount'].value < 0 ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n this.refundListAmount.emit(remissionctrls['amount'].value);\n }\n //}\n\n }\n }\n gotoAmountRetroRemission() {\n this.isFromCheckAnsPage = false;\n this.viewStatus = 'processretroremissonpage';\n this.viewCompStatus = '';\n // this.isRefundRemission = true;\n this.errorMessage = '';\n }\n gotoProcessRetroRemissionPage() {\n this.isFromCheckAnsPage = true;\n this.viewStatus = '';\n this.viewCompStatus = 'addremission';\n this.isRefundRemission = true;\n this.errorMessage = '';\n this.errorMsg = [];\n }\n\n gotoProcessRetroRemission(note?: IRefundContactDetails) {\n if(note) {\n this.notification = { contact_details: note, notification_type: note.notification_type };\n }\n this.isFromCheckAnsPage = true;\n this.viewStatus = 'remissionAddressPage';\n this.viewCompStatus = '';\n this.isRefundRemission = true;\n this.errorMessage = '';\n }\n\n confirmRetroRemission() {\n if(!this.isConfirmationBtnDisabled) {\n this.retroRemission = true;\n this.remissionamt = this.remissionForm.controls.amount.value;\n const requestBody = new AddRetroRemissionRequest(this.remissionamt,this.remissionForm.controls.remissionCode.value )\n this.paymentViewService.postPaymentGroupWithRetroRemissions(decodeURIComponent(this.paymentGroupRef).trim(), this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.isRemissionApplied = true;\n this.viewCompStatus = '';\n this.viewStatus = 'retroremissionconfirmationpage';\n this.remissionReference =JSON.parse(response).remission_reference;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n }\n );\n }\n }\n\n processRefund() {\n this.errorMessage = '';\n this.errorMsg = [];\n this.isConfirmationBtnDisabled = true;\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n if (this.remissionReference === undefined || this.remissionReference === '') {\n this.remissionReference = this.remission.remission_reference;\n }\n const requestBody = new PostIssueRefundRetroRemission(this.remissionReference, this.contactDetailsObj);\n this.paymentViewService.postRefundRetroRemission(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n })\n }\n\n // Issue Refund changes\n\n gotoIssueRefundConfirmation(payment: IPayment) {\n \n this.paymentLibComponent.iscancelClicked = false;\n if(this.paymentLibComponent.REFUNDLIST === \"true\") {\n this.isFromRefundListPage = true;\n }\n\n this.totalRefundAmount = this.remissionForm.value.feesList.reduce((a, c) => a + c.refund_amount * c.selected, 0);\n\n\n this.errorMessage = '';\n this.errorMsg = [];\n this.refundReason = this.remissionForm.controls['refundReason'].value === null ? this.remissionForm.controls['refundDDReason'].value : this.remissionForm.controls['refundReason'].value;\n if(!this.refundReason || this.refundReason === 'Select a different reason') {\n this.refundHasError = true;\n } else if(this.selectedRefundReason.includes('Other') && (this.remissionForm.controls['reason'].value == '' || this.remissionForm.controls['reason'].value == null)) {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n } else if (this.selectedRefundReason.includes('Other') && this.remissionForm.controls['reason'].value !== '') {\n this.refundHasError = false;\n this.refundReason += '-' + this.remissionForm.controls['reason'].value;\n this.displayRefundReason = this.selectedRefundReason + '-' + this.remissionForm.controls['reason'].value;\n if ( this.isFromRefundListPage ) {\n this.refundListReason.emit({reason: this.displayRefundReason, code: this.refundReason});\n } else {\n if(this.isFromCheckAnsPage) {\n this.totalRefundAmount = this.remissionForm.value.feesList.reduce((a, c) => a + c.refund_amount * c.selected, 0);\n this.isFromCheckAnsPage = false;\n this.viewStatus = 'checkissuerefundpage';\n this.viewCompStatus = '';\n return;\n }\n this.viewCompStatus = '';\n this.viewStatus = 'contactDetailsPage';\n }\n\n } else {\n this.displayRefundReason = this.selectedRefundReason;\n if(this.isFromCheckAnsPage) {\n this.totalRefundAmount = this.remissionForm.value.feesList.reduce((a, c) => a + c.refund_amount * c.selected, 0);\n this.isFromCheckAnsPage = false;\n this.viewStatus = 'checkissuerefundpage';\n this.viewCompStatus = '';\n return;\n }\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n } else {\n this.viewCompStatus = '';\n this.viewStatus = 'contactDetailsPage';\n }\n\n }\n }\n\n gotoIssueRefundPage() {\n this.errorMessage = '';\n this.viewCompStatus = 'issuerefund';\n this.viewStatus = '';\n this.isRefundRemission = true;\n this.errorMessage = false;\n this.errorMsg = [];\n this.refundHasError = false;\n this.isReasonEmpty = false;\n }\n\n gotoIssuePage(isFullyRefund: any){\nif(isFullyRefund) {\n this.viewCompStatus = 'issuerefundpage1';\n this.getRefundReasons();\n} else {\n [].forEach.call(document.querySelectorAll('input'), function (el) {\n el.classList.remove('inline-error-class');\n });\n\n\t var checkboxs = document.getElementsByTagName('input');\n\t this.errorMessage = '';\n this.totalRefundAmount = 0;\n this.errorMsg = []; \n\t\t\tfor (var j=0;j<checkboxs.length;j++)\n\t\t\t{\n\t\t\t\tif(checkboxs[j].checked)\n\t\t\t\t{\n\t\t\t\t\tthis.fullRefund = false;\n\t\t\t\t\tlet quantity: number = +(<HTMLInputElement>document.getElementById('feeVolume_'+checkboxs[j].value)).value;\n let amountToRefund: number = +(<HTMLInputElement>document.getElementById('feeAmount_'+checkboxs[j].value)).value;\n\t\t\t\t\tlet apportionAmount: number = +(<HTMLInputElement>document.getElementById('feeApportionAmount_'+checkboxs[j].value)).value;\n\t\t\t\t\tlet calculatedAmount: number = +(<HTMLInputElement>document.getElementById('calculatedAmount_'+checkboxs[j].value)).value; \n \n if( amountToRefund === apportionAmount) {\n this.fullRefund = true;\n }\n\n if(amountToRefund === 0){\n this.elementId = 'feeAmount_'+checkboxs[j].value;\n this.errorMsg.push('You need to enter a refund amount');\n this.getErrorClass(this.elementId);\n\t\t\t\t\t}\n\n \n\n if (quantity === 1)\n {\n if(amountToRefund > 0 && amountToRefund > apportionAmount){\n this.elementId = 'feeAmount_'+checkboxs[j].value;\n this.errorMsg.push('The amount you want to refund is more than the amount paid');\n this.getErrorClass(this.elementId);\n }\n } \n\n\t\t\t\t\tif(quantity > 1) {\n\n\t\t\t\t\t\tthis.quantityUpdated = +(<HTMLInputElement>document.getElementById('feeVolumeUpdated_'+checkboxs[j].value)).value;\n\n if(this.quantityUpdated === 0){\n this.elementId = 'feeVolumeUpdated_'+checkboxs[j].value;\n this.errorMsg.push('You need to enter quantity')\n this.getErrorClass(this.elementId);\n }\n\n if (this.fullRefund && quantity !== this.quantityUpdated) {\n this.elementId = 'feeVolumeUpdated_'+checkboxs[j].value;\n this.errorMsg.push('The quantity you want to refund should be maximun available quantity');\n this.getErrorClass(this.elementId);\n }\n\n if (!this.fullRefund && this.quantityUpdated > 0 && amountToRefund > 0) {\n this.refundAmtForFeeVolumes = +(<HTMLInputElement>document.getElementById('feeVOl_'+checkboxs[j].value)).innerText;\n this.allowedRefundAmount = this.quantityUpdated * this.refundAmtForFeeVolumes;\n if( this.allowedRefundAmount !== amountToRefund) \n {\n this.elementId = 'feeAmount_'+checkboxs[j].value;\n this.errorMsg.push('The Amount to Refund should be equal to the product of Fee Amount and quantity');\n this.getErrorClass(this.elementId);\n }\n }\n\n if(!this.fullRefund && amountToRefund > apportionAmount)\n {\n this.elementId = 'feeAmount_'+checkboxs[j].value;\n this.errorMsg.push('The amount you want to refund is more than the amount paid');\n this.getErrorClass(this.elementId);\n }\n\t\n if( !this.fullRefund && this.quantityUpdated >0 && this.quantityUpdated > quantity){\n this.elementId = 'feeVolumeUpdated_'+checkboxs[j].value;\n this.errorMsg.push('The quantity you want to refund is more than the available quantity');\n this.getErrorClass(this.elementId);\n }\n }\n //this.remissionForm.value.feesList.find(id=>id=checkboxs[j].value)['refund_amount'] = apportionAmount;\n\t\t\t\t}\n\t\t\t}\n\n if(this.errorMsg.length === 0) {\n if (this.isFromCheckAnsPage) {\n this.isFromCheckAnsPage = false;\n this.totalRefundAmount = this.remissionForm.value.feesList.reduce((a, c) => a + c.refund_amount * c.selected, 0);\n this.fees = this.remissionForm.value.feesList.filter(value => value.selected===true);\n this.viewStatus = 'checkissuerefundpage'\n this.viewCompStatus = '';\n return;\n } else if (this.isFromRefundStatusPage){\n var remissionctrls=this.remissionForm.controls;\n this.totalRefundAmount = this.remissionForm.value.feesList.reduce((a, c) => a + c.refund_amount * c.selected, 0);\n this.refundListAmount.emit(this.totalRefundAmount.toString());\n this.fees = this.remissionForm.value.feesList.filter(value => value.selected===true);\n this.refundFees.emit(this.fees);\n return;\n }\n this.viewCompStatus = 'issuerefundpage1';\n this.getRefundReasons();\n }\n }\n }\n\n calAmtToRefund(value,amount,volume, i: any) {\n const volumeFee = amount/volume;\n const amtToRefund = value * volumeFee;\n const formArray = this.remissionForm.controls.feesList as FormArray;\n formArray.at(i).get('refund_amount').setValue(amtToRefund);\n // formArray.at(i).get('volume').setValue(value);\n // (<HTMLInputElement>document.getElementById('feeAmount_'+i)).value = +amtToRefund;\n // const formControl = this.remissionForm.controls.feesList['volume'].at(i);\n // formControl.setValue(value);\n\n }\n gotoContactDetailsPage(note?: IRefundContactDetails) {\n if (note) {\n this.notification = { contact_details: note, notification_type: note.notification_type };\n }\n this.errorMessage = '';\n this.viewCompStatus = '';\n this.viewStatus = 'contactDetailsPage';\n this.isRefundRemission = true;\n this.errorMessage = false;\n }\n \n getRefundReasons(){\n if(this.viewCompStatus === 'issuerefundpage1'){\n this.refundService.getRefundReasons().subscribe(\n refundReasons => { \n this.refundReasons = refundReasons.filter((data) => data.recently_used === false);\n this.refundReasons = this.refundReasons.filter((data) => data.name !== 'Retrospective remission');\n this.cd.detectChanges();\n this.commonRefundReasons = refundReasons.filter((data) => data.recently_used === true);\n this.commonRefundReasons.sort((a, b) => a.toString().localeCompare(b));\n this.cd.detectChanges();\n } );\n }\n}\n getErrorClass(elementId) {\n if(this.errorMsg.length > 0) {\n const ele = document.getElementById(elementId);\n ele.classList.add('inline-error-class');\n }\n \n }\n\n changeIssueRefundReason() {\n this.isFromCheckAnsPage = true;\n this.errorMessage = '';\n this.errorMsg = [];\n this.refundHasError = false;\n this.isReasonEmpty = false;\n this.viewCompStatus = 'issuerefundpage1';\n this.viewStatus = '';\n this.isRefundRemission = true;\n }\n\n confirmIssueRefund(isFullyRefund: any) {\n this.isConfirmationBtnDisabled = true;\n this.errorMessage = '';\n this.errorMsg = [];\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n if(isFullyRefund) {\n this.totalRefundAmount = this.payment.amount;\n }\n if(!isFullyRefund) {\n this.fees = this.remissionForm.value.feesList.filter(value => value.selected===true);\n }\n this.fees = this.fees.map(obj => ({ id: obj.id, \n code: obj.code,\n version:obj.version, \n apportion_amount: obj.apportion_amount,\n calculated_amount: obj.calculated_amount,\n updated_volume: obj.updated_volume ? obj.updated_volume : obj.volume,\n refund_amount:obj.refund_amount ? obj.refund_amount : this.totalRefundAmount }));\n \n \n const requestBody = new PostRefundRetroRemission(this.contactDetailsObj, this.fees,this.payment.reference, this.refundReason, \n this.totalRefundAmount, 'op');\n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference =JSON.parse(response).refund_reference;\n if(JSON.parse(response).refund_amount) {\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n })\n }\n\n gotoRefundReasonPage () {\n this.viewStatus = '';\n this.viewCompStatus = 'issuerefundpage1';\n \n }\n\n// Retro Refund\n\n // confirmRetroRefund() {\n // this.isConfirmationBtnDisabled = true;\n // this.errorMessage = '';\n // this.errorMsg = [];\n // if( this.isRefundRemission) {\n // this.retroRemission = true;\n // }\n\n // const requestBody = new PostRefundRetroRemission(this.payment.reference,'RR004-Retrospective remission', this.contactDetailsObj);\n // this.paymentViewService.postRefundsReason(requestBody).subscribe(\n // response => {\n // if (JSON.parse(response)) {\n // this.viewCompStatus = '';\n // this.viewStatus = 'retrorefundconfirmationpage';\n // this.refundReference =JSON.parse(response).refund_reference;\n // if(JSON.parse(response).refund_amount) {\n // this.refundAmount = JSON.parse(response).refund_amount;\n // }\n // }\n // },\n // (error: any) => {\n // this.errorMessage = error;\n // this.isConfirmationBtnDisabled = false;\n // });\n // }\n\n selectRadioButton(key, value) {\n localStorage.setItem(\"myradio\", key);\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundDDReason'].setValue('Select a different reason', {onlySelf: true});\n remissionctrls['reason'].reset();\n this.isRefundReasonsSelected = true;\n this.errorMessage = false;\n this.errorMsg = [];\n this.isReasonEmpty = false;\n this.showReasonText = false;\n this.refundHasError = false;\n this.selectedRefundReason = key;\n if(this.selectedRefundReason.includes('Other')) {\n this.showReasonText = true;\n this.refundHasError = false;\n this.refundReason = key;\n }\n }\n\n selectchange(args) {\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundReason'].reset();\n remissionctrls['reason'].reset();\n this.isRefundReasonsSelected = false;\n this.showReasonText = false;\n this.refundHasError = false;\n this.selectedRefundReason = args.target.options[args.target.options.selectedIndex].id;\n this.reasonLength = (29-this.selectedRefundReason.split('- ')[1].length);\n\n if(this.selectedRefundReason.includes('Other')) {\n this.showReasonText = true;\n this.refundHasError = false;\n this.refundReason = args.target.options[args.target.options.selectedIndex].id;\n }\n\n\n }\n getContactDetails(obj:IRefundContactDetails, type) {\n this.contactDetailsObj = obj;\n this.viewCompStatus = '';\n this.viewStatus = type;\n }\n\n gotoPartialFeeRefundScreen() {\n\n if (this.isFromRefundStatusPage){\n var remissionctrls=this.remissionForm.controls;\n this.refundListReason.emit({reason: this.displayRefundReason, code: this.refundReason});\n return;\n }\n this.refundHasError = false;\n this.viewCompStatus = 'issuerefund';\n this.viewStatus = '';\n }\n\n \n\n gotoServiceRequestPage(event: any) {\n this.errorMessage ='';\n this.errorMsg = [];\n this.isFromCheckAnsPage = false;\n event.preventDefault();\n\n if (this.isFromRefundStatusPage){\n var remissionctrls=this.remissionForm.controls;\n this.totalRefundAmount = this.remissionForm.value.feesList.reduce((a, c) => a + c.refund_amount * c.selected, 0);\n this.refundListAmount.emit(this.totalRefundAmount.toString());\n return;\n }\n if (this.isFromServiceRequestPage && !this.isFromPaymentDetailPage) {\n this.viewStatus = 'order-full-view';\n this.viewCompStatus = '';\n } else if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n } else {\n this.paymentLibComponent.paymentMethod = this.payment.method;\n this.paymentLibComponent.paymentGroupReference = this.paymentLibComponent.paymentGroupReference\n this.paymentLibComponent.paymentReference = this.payment.reference;\n this.paymentLibComponent.viewName = 'payment-view';\n this.OrderslistService.setOrderRef(this.orderRef);\n this.OrderslistService.setorderCCDEvent(this.orderCCDEvent);\n this.OrderslistService.setorderCreated(this.orderCreated);\n this.OrderslistService.setorderDetail(this.orderDetail);\n this.OrderslistService.setorderParty(this.orderParty);\n this.OrderslistService.setorderTotalPayments(this.orderTotalPayments);\n this.OrderslistService.setorderRemissionTotal(this.orderRemissionTotal);\n this.OrderslistService.setorderFeesTotal(this.orderFeesTotal);\n this.viewStatus = 'payment-view';\n this.sendOrderDetail = this.orderDetail;\n this.sendOrderRef = this.orderRef;\n if(this.LOGGEDINUSERROLES === undefined) {\n this.OrderslistService.getUserRolesList().subscribe((data) => this.LOGGEDINUSERROLES = data);\n }\n this.viewCompStatus = '';\n }\n\n }\n gotoAddressPage(note?: IRefundContactDetails) {\n if (note) {\n this.notification = { contact_details: note, notification_type: note.notification_type };\n }\n this.errorMessage = '';\n this.viewCompStatus = 'addrefundforremission';\n this.viewStatus = '';\n this.isRefundRemission = true;\n this.errorMessage = false;\n }\n gotoRemissionSuccess(event: Event) {\n event.preventDefault();\n this.errorMessage = '';\n this.viewCompStatus = '';\n this.viewStatus = 'retroremissionconfirmationpage';\n this.isRefundRemission = true;\n this.errorMessage = false;\n }\n\n gotoCasetransationPage() {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.errorMessage = '';\n this.errorMsg = [];\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.VIEW = 'case-transactions';\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.resetOrderData();\n let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n\n gotoCasetransationPageCancelBtnClicked(event: Event) {\n event.preventDefault();\n this.errorMsg = [];\n if( this.paymentLibComponent.isFromServiceRequestPage !== undefined && !this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.VIEW ='case-transactions';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.VIEW ='case-transactions';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n this.resetOrderData(); let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n } else { \n\n if (this.paymentLibComponent.REFUNDLIST) {\n this.paymentLibComponent.viewName = 'refund-list';\n return;\n }\n if (this.paymentLibComponent.TAKEPAYMENT === undefined && this.paymentLibComponent.SERVICEREQUEST === undefined) {\n this.paymentLibComponent.SERVICEREQUEST = 'false';\n }\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.OrderslistService.setpaymentPageView({method: '',payment_group_reference: '', reference:''});\n this.OrderslistService.setnavigationPage('casetransactions');\n this.errorMessage = '';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.paymentLibComponent.ISBSENABLE = true;\n let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n if(this.isFromPaymentDetailPage) {\n partUrl += this.paymentLibComponent.isFromPaymentDetailPage\n }\n\n if(!this.paymentLibComponent.SERVICEREQUEST) {\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n } else {\n const url =`/payment-history/${this.ccdCaseNumber}?selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n }\n\n }\n\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n\n changeRefundAmount() { \n this.isFromCheckAnsPage = true;\n this.viewCompStatus = 'issuerefund';\n this.viewStatus = '';\n }\n\n getFormattedCurrency(currency:number){\n if(currency.toString().includes(\".\")){\n return currency\n }\n return currency.toString().concat(\".00\");\n }\n\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'ccdHyphens'\n})\nexport class CcdHyphensPipe implements PipeTransform {\n constructor() {}\n transform(value: any, args?: any): any {\n const pattern = /^([0-9]{4})+([0-9]{4})+([0-9]{4})+([0-9]{4})$/;\n if ( value.match(pattern)) {\n return value.replace(pattern,'$1-$2-$3-$4') \n }\n return value;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'capitalize'\n})\nexport class CapitalizePipe implements PipeTransform {\n constructor() { }\n transform(s: any, args?: any): any {\n return s && s[0].toUpperCase() + s.slice(1) || \"\";\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'keyValue'\n})\nexport class keyValuePipe implements PipeTransform {\n constructor() {}\n transform(input: any): any {\n let keys = [];\n for (let key in input) {\n if (input.hasOwnProperty(key)) {\n keys.push({ key: key, value: input[key]});\n }\n }\n return keys;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\nimport { DomSanitizer, SafeHtml } from '@angular/platform-browser';\n\n@Pipe({ name: 'sanitizeHtml' })\nexport class SanitizeHtmlPipe implements PipeTransform {\n constructor(private sanitizer: DomSanitizer) {}\n transform(value: any): SafeHtml {\n return this.sanitizer.bypassSecurityTrustHtml(value);\n }\n}\n","import { Injectable } from '@angular/core';\nimport * as FileSaver from 'file-saver';\nimport * as XLSX from 'xlsx';\nimport * as XLSXStyle from 'xlsx-style';\n\n\nconst EXCEL_TYPE = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8';\nconst EXCEL_EXTENSION = '.xlsx';\n\n@Injectable()\nexport class XlFileService {\n\n constructor() { }\n\n public exportAsExcelFile(json: any[], excelFileName: string): void {\n let worksheet: XLSX.WorkSheet; \n let workbook: XLSX.WorkBook; \n if(excelFileName.match('Data_Loss')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['loss_resp','payment_asset_dcn','env_ref','env_item','resp_service_id','resp_service_name','date_banked','bgc_batch','payment_method','amount']});\n worksheet = this.setDataLossReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Unprocessed')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','exception_ref','ccd_ref','date_banked','bgc_batch','payment_asset_dcn','env_ref','env_item','payment_method','amount']});\n worksheet = this.setUnprocessedReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Processed_Unallocated')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','allocation_status','receiving_office','allocation_reason','ccd_exception_reference','ccd_case_reference','payment_asset_dcn','env_ref','env_item','date_banked','bgc_batch','payment_method','amount']});\n worksheet = this.setProcessedUnallocatedReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Payment failure')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['payment_reference','ccd_reference','org_id','service_name','failure_reference','failure_reason','disputed_amount','event_name','event_date','representment_status','representment_date','refund_references','refund_amount','refund_date']});\n worksheet = this.setPaymentFailureReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else {\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','surplus_shortfall','balance','payment_amount','ccd_case_reference', 'ccd_exception_reference', 'processed_date', 'reason', 'explanation', 'user_name']});\n worksheet = this.setShortFallReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n }\n workbook = { Sheets: { 'data': worksheet }, SheetNames: ['data'] };\n const excelBuffer: any = XLSX.write(workbook, { bookType: 'xlsx', type: 'array' });\n this.saveAsExcelFile(excelBuffer, excelFileName);\n }\n\n\nprivate autoFitColumns (worksheet: XLSX.WorkSheet,json:any) : XLSX.WorkSheet {\n let objectMaxLength = []; \n let ColWidth = [];\n let obj = <any>Object;\n for (let i = 0; i < json.length; i++) {\n let value = obj.values(json[i]);\n let key = obj.keys(json[i]);\n for (let j = 0; j < value.length; j++) {\n if(value[j] === null){\n value[j] = '';\n }\n objectMaxLength[j] =\n key[j].length >= value[j].length\n ? key[j].length+2\n : value[j].length+1;\n if( value[j].length === undefined){\n objectMaxLength[j] = key[j].length+2;\n }\n ColWidth.push({'width': +objectMaxLength[j]});\n }\n }\n worksheet['!cols'] = ColWidth;\n return worksheet;\n}\n\n\nprivate setDataLossReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Loss_Resp\";\n worksheet.B1.v = \"Payment_Asset_DCN\";\n worksheet.C1.v = \"Envelope_Ref\";\n worksheet.D1.v = \"Envelope_Item\";\n worksheet.E1.v = \"Resp_Service ID\";\n worksheet.F1.v = \"Resp_Service Name\";\n worksheet.G1.v = \"Date_Banked\";\n worksheet.H1.v = \"BGC_Batch\";\n worksheet.I1.v = \"Payment_Method\";\n worksheet.J1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setUnprocessedReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Exception_Ref\";\n worksheet.D1.v = \"CCD_Ref\";\n worksheet.E1.v = \"Date_Banked\";\n worksheet.F1.v = \"BGC_Batch\";\n worksheet.G1.v = \"Payment_Asset_DCN\";\n worksheet.H1.v = \"Envelope_Ref\";\n worksheet.I1.v = \"Envelope_Item\";\n worksheet.J1.v = \"Payment_Method\";\n worksheet.K1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setProcessedUnallocatedReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Allocation_Status\";\n worksheet.D1.v = \"Receiving_Office\";\n worksheet.E1.v = \"Allocation_Reason\";\n worksheet.F1.v = \"CCD_Exception_Ref\";\n worksheet.G1.v = \"CCD_Case_Ref\";\n worksheet.H1.v = \"Payment_Asset_DCN\";\n worksheet.I1.v = \"Envelope_Ref\";\n worksheet.J1.v = \"Envelope_Item\";\n worksheet.K1.v = \"Date_Banked\";\n worksheet.L1.v = \"BGC_Batch\";\n worksheet.M1.v = \"Payment_Method\";\n worksheet.N1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setPaymentFailureReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Payment reference\";\n worksheet.B1.v = \"CCD reference\";\n worksheet.C1.v = \"OrgID\";\n worksheet.D1.v = \"Service name\";\n worksheet.E1.v = \"Failure reference\";\n worksheet.F1.v = \"Failure reason\";\n worksheet.G1.v = \"Disputed amount\";\n worksheet.H1.v = \"Event name\";\n worksheet.I1.v = \"Event date\";\n worksheet.J1.v = \"Representment status\";\n worksheet.K1.v = \"Representment date\";\n worksheet.L1.v = \"Refund reference\";\n worksheet.M1.v = \"Refund amount\";\n worksheet.N1.v = \"Refund date\";\n return worksheet;\n}\nprivate setShortFallReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Over Payment_Under Payment\";\n worksheet.D1.v = \"Balance\";\n worksheet.E1.v = \"Payment_Amount\";\n worksheet.F1.v = \"CCD_Case_Ref\";\n worksheet.G1.v = \"Exception_Ref\";\n worksheet.H1.v = \"Processed_Date\";\n worksheet.I1.v = \"Reason\";\n worksheet.J1.v = \"Explanation\";\n worksheet.K1.v = \"Updated Name\";\n return worksheet;\n}\n\nprivate saveAsExcelFile(buffer: any, fileName: string): void {\n const data: Blob = new Blob([buffer], {\n type: EXCEL_TYPE\n });\n FileSaver.saveAs(data, fileName + EXCEL_EXTENSION);\n }\n}\n","import { Component, Input, OnInit } from '@angular/core';\nimport { FormBuilder, FormGroup, FormControl } from '@angular/forms';\nimport { formatDate } from \"@angular/common\";\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {XlFileService} from '../../services/xl-file/xl-file.service';\nimport { FindValueSubscriber } from 'rxjs/internal/operators/find';\n\n@Component({\n selector: 'ccpay-reports',\n templateUrl: './reports.component.html',\n styleUrls: ['./reports.component.scss']\n})\nexport class ReportsComponent implements OnInit {\n @Input() ISPAYMENTSTATUSENABLED: string;\n fmt = 'dd/MM/yyyy';\n loc = 'en-US';\n reportsForm: FormGroup;\n startDate: string;\n endDate: string;\n errorMeaagse: string;\n ccdCaseNumber: string;\n isDownLoadButtondisabled:Boolean = false;\n isStartDateLesthanEndDate: Boolean = false;\n isDateBetwnMonth: Boolean = false;\n isDateRangeBetnWeek: Boolean = false;\n errorMessage = this.errorHandlerService.getServerErrorMessage(false, false, '');\n paymentGroups: IPaymentGroup[] = [];\n\n constructor(\n private xlFileService: XlFileService,\n private errorHandlerService: ErrorHandlerService,\n private formBuilder: FormBuilder,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private paymentViewService: PaymentViewService) { }\n \n\n ngOnInit() {\n this.fromValidation();\n\n }\n\n getToday(): string {\n return new Date().toISOString().split('T')[0];\n }\n\n getSelectedFromDate(): void {\n this.validateDates(this.reportsForm.get('selectedreport').value);\n }\n\n validateDates(reportName){\n const selectedStartDate = this.tranformDate(this.reportsForm.get('startDate').value),\n selectedEndDate = this.tranformDate(this.reportsForm.get('endDate').value);\n const isDateRangeMoreThanWeek = (<any>new Date(selectedStartDate) - <any>new Date(selectedEndDate))/(1000 * 3600 * -24) > 7;\n const isDateRangeMoreThanMonth = (<any>new Date(selectedStartDate) - <any>new Date(selectedEndDate))/(1000 * 3600 * -24) > 30;\n if(new Date(selectedStartDate) > new Date(selectedEndDate) && selectedEndDate !== ''){\n this.reportsForm.get('startDate').setValue('');\n this.isDateRangeBetnWeek = false;\n this.isDateBetwnMonth = false;\n this.isStartDateLesthanEndDate = true;\n } else if(reportName && reportName ==='SURPLUS_AND_SHORTFALL' && isDateRangeMoreThanWeek ) {\n this.isDateRangeBetnWeek = true;\n this.isDateBetwnMonth = false;\n this.isStartDateLesthanEndDate = false;\n } else if(reportName && reportName ==='PAYMENT_FAILURE_EVENT' && isDateRangeMoreThanMonth ) {\n this.isDateRangeBetnWeek = false;\n this.isDateBetwnMonth = true;\n this.isStartDateLesthanEndDate = false;\n } else {\n this.isDateBetwnMonth = false;\n this.isDateRangeBetnWeek = false;\n this.isStartDateLesthanEndDate = false;\n }\n\n }\n\n fromValidation() {\n this.reportsForm = this.formBuilder.group({\n selectedreport: new FormControl('') ,\n startDate: new FormControl(''),\n endDate: new FormControl('') \n });\n}\n\ndownloadReport(){\n this.isDownLoadButtondisabled = true;\n const dataLossRptDefault = [{loss_resp:'',payment_asset_dcn:'',env_ref:'',env_item:'',resp_service_id:'',resp_service_name:'',date_banked:'',bgc_batch:'',payment_method:'',amount:''}],\n unProcessedRptDefault = [{resp_service_id:'',resp_service_name:'',exception_ref:'',ccd_ref:'',date_banked:'',bgc_batch:'',payment_asset_dcn:'',env_ref:'',env_item:'',payment_method:'',amount:''}],\n processedUnallocated =[{resp_service_id:'',resp_service_name:'',allocation_status:'',receiving_office:'',allocation_reason:'',ccd_exception_ref:'',ccd_case_ref:'',payment_asset_dcn:'',env_ref:'',env_item:'',date_banked:'',bgc_batch:'',payment_method:'',amount:'',updated_by:''}],\n shortFallsRptDefault = [{resp_service_id:'',resp_service_name:'',surplus_shortfall:'',balance:'',payment_amount:'',ccd_case_reference:'',ccd_exception_reference:'',processed_date:'', reason:'', explanation:'', user_name:''}],\n selectedReportName = this.reportsForm.get('selectedreport').value,\n selectedStartDate = this.tranformDate(this.reportsForm.get('startDate').value),\n selectedEndDate = this.tranformDate(this.reportsForm.get('endDate').value);\n\n if(selectedReportName === 'PROCESSED_UNALLOCATED' || selectedReportName === 'SURPLUS_AND_SHORTFALL' ){\n this.paymentViewService.downloadSelectedReport(selectedReportName,selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false, false, '');\n const result = JSON.parse(response);\n let res= {data: this.applyDateFormat(result)};\n if(res['data'].length === 0 && selectedReportName === 'PROCESSED_UNALLOCATED' ){\n res.data= processedUnallocated;\n } else if(res['data'].length === 0 && selectedReportName === 'SURPLUS_AND_SHORTFALL' ) {\n res.data= shortFallsRptDefault;\n } \n if(result['data'].length > 0) {\n for( var i=0; i< res['data'].length; i++) {\n if(res['data'][i][\"payment_asset_dcn\"] !== undefined) {\n res['data'][i]['env_ref'] = res['data'][i][\"payment_asset_dcn\"].substr(0,13);\n res['data'][i]['env_item'] = res['data'][i][\"payment_asset_dcn\"].substr(13,21);\n }\n if(res['data'][i][\"amount\"] !== undefined) {\n res['data'][i]['amount'] = this.convertToFloatValue(res['data'][i]['amount']);\n }\n if(res['data'][i][\"balance\"] !== undefined) {\n res['data'][i]['balance'] = this.convertToFloatValue(res['data'][i][\"balance\"]);\n }\n let Op = res['data'][i][\"surplus_shortfall\"];\n if(Op !== undefined) {\n res['data'][i]['surplus_shortfall'] = Op ==\"Surplus\" ? \"Over payment\":\"Under payment\";\n }\n if(res['data'][i][\"payment_amount\"] !== undefined) {\n res['data'][i]['payment_amount'] = this.convertToFloatValue(res['data'][i]['payment_amount']);\n }\n }\n } \n this.isDownLoadButtondisabled = false;\n this.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate));\n },\n (error: any) => {\n this.isDownLoadButtondisabled = false;\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\n })\n\n } else if(selectedReportName === 'PAYMENT_FAILURE_EVENT') {\n\n this.paymentViewService.downloadFailureReport(selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false, false, '');\n const result = {data: JSON.parse(response)['payment_failure_report_list']};\n let res = {data: this.applyDateFormat(result)};\n if (result['data'].length > 0) {\n for ( var i=0; i< res['data'].length; i++) {\n if (res['data'][i][\"disputed_amount\"] !== undefined) {\n res['data'][i]['disputed_amount'] = this.convertToFloatValue(res['data'][i][\"disputed_amount\"]);\n }\n if (res['data'][i][\"representment_status\"] !== undefined) {\n res['data'][i]['representment_status'] = res['data'][i][\"representment_status\"].toLowerCase() === 'yes' ? 'Success' : 'Failure';\n }\n }\n }\n this.isDownLoadButtondisabled = false;\n this.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate ));\n\n },\n (error: any) => {\n this.isDownLoadButtondisabled = false;\n const errorContent = error.replace(/[^a-zA-Z ]/g, '').trim();\n const statusCode = error.replace(/[^a-zA-Z0-9 ]/g, '').trim().split(' ')[0];\n if(statusCode === '404') {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, true, errorContent);\n }else {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\n }\n })\n\n } else {\n this.bulkScaningPaymentService.downloadSelectedReport(selectedReportName,selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false, false, '');\n const result = JSON.parse(response);\n let res = {data: this.applyDateFormat(result)};\n if(res['data'].length === 0 && selectedReportName === 'DATA_LOSS' ){\n res.data= dataLossRptDefault;\n } else if(res['data'].length === 0 && selectedReportName === 'UNPROCESSED'){\n res.data = unProcessedRptDefault;\n }\n if(result['data'].length > 0) {\n for( var i=0; i< res['data'].length; i++) {\n if(res['data'][i][\"amount\"] !== undefined) {\n res['data'][i]['amount'] = this.convertToFloatValue(res['data'][i]['amount']);\n }\n if(res['data'][i][\"payment_asset_dcn\"] !== undefined) {\n res['data'][i]['env_ref'] = res['data'][i][\"payment_asset_dcn\"].substr(0,13);\n res['data'][i]['env_item'] = res['data'][i][\"payment_asset_dcn\"].substr(13,21);\n }\n }\n }\n this.isDownLoadButtondisabled = false;\n this.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate ));\n },\n (error: any) => {\n this.isDownLoadButtondisabled = false;\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true, false, '');\n })\n }\n }\n\n getFileName(selectedOption: string, startDate: string, endDate: string ) {\n const loc = 'en-US',\n stDt = formatDate(startDate, 'ddMMyy', loc),\n enDt = formatDate(endDate, 'ddMMyy', loc),\n now = new Date(),\n currentDate = formatDate(now, 'ddMMyy', loc),\n timestamp = `${currentDate}_${this.getTwodigit(now.getHours())}${this.getTwodigit(now.getMinutes())}${this.getTwodigit(now.getSeconds())}`,\n selectedOptionTxt = this.getCamelCaseString(selectedOption);\n \n return selectedOptionTxt+'_'+stDt+'_To_'+enDt+'_Run_'+ timestamp;\n } \n tranformDate(strDate: string) {\n let result = '';\n if (strDate) {\n let parts = strDate.split('-');\n result = `${parts[1]}/${parts[2]}/${parts[0]}`;\n }\n return result;\n }\n getTwodigit(input: number){\n return (\"0\" + input).slice(-2);\n }\n getCamelCaseString(selectedOption) {\n let result;\n switch(selectedOption) { \n case 'UNPROCESSED': { \n result = 'Unprocessed';\n break; \n } \n case 'DATA_LOSS': { \n result = 'Data_Loss';\n break; \n } \n case 'PROCESSED_UNALLOCATED': { \n result = 'Processed_Unallocated';\n break; \n } \n case 'SURPLUS_AND_SHORTFALL': { \n result = 'Over Payment_Under Payment';\n break; \n } \n case 'PAYMENT_FAILURE_EVENT': { \n result = 'Payment failure event';\n break; \n }\n default: { \n result = selectedOption;\n break; \n } \n } \n return result;\n }\n applyDateFormat(res) {\n return res['data'].map(value => {\n if (value['date_banked']) {\n value['date_banked'] = formatDate(value['date_banked'], this.fmt, this.loc);\n }\n if (value['event_date'] && value['event_date'].indexOf(',') === -1) {\n value['event_date'] = formatDate(value['event_date'], this.fmt, this.loc);\n } else if (value['event_date'] && value['event_date'].indexOf(',') !== -1) {\n value['event_date'] = this.multiDateFormater(value['event_date'])\n }\n\n if (value['representment_date'] && value['representment_date'].indexOf(',') === -1) {\n value['representment_date'] = formatDate(value['representment_date'], this.fmt, this.loc);\n } else if (value['representment_date'] && value['representment_date'].indexOf(',') !== -1) {\n value['representment_date'] = this.multiDateFormater(value['representment_date'])\n }\n\n if (value['refund_date'] && value['refund_date'].indexOf(',') === -1) {\n value['refund_date'] = formatDate(value['refund_date'], this.fmt, this.loc);\n } else if (value['refund_date'] && value['refund_date'].indexOf(',') !== -1) {\n value['refund_date'] = this.multiDateFormater(value['refund_date'])\n }\n return value;\n });\n }\n multiDateFormater(dateStr) {\n return dateStr.split(',').map((date) => formatDate(date, this.fmt, this.loc)).join(',');\n }\n \n convertToFloatValue(amt) {\n return amt ? Number.parseFloat(amt).toFixed(2): '0.00';\n }\n}\n","import {Component, ViewChild, Input, ChangeDetectorRef} from '@angular/core';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport { MatTableDataSource} from '@angular/material/table';\nimport {MatSort } from '@angular/material/sort';\nimport {Sort } from '@angular/material/sort';\nimport {MatPaginator } from '@angular/material/paginator';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { THIS_EXPR } from '@angular/compiler/src/output/output_ast';\nimport { ActivatedRoute,Router } from '@angular/router';\n@Component({\n selector: 'ccpay-table',\n templateUrl: './table.component.html',\n styleUrls: ['./table.component.css']\n})\nexport class TableComponent {\n @Input('DATASOURCE') DATASOURCE: any[];\n @Input('STATUS') STATUS: string;\n @Input('errorMessage') errorMessage: string;\n isApprovalFlow: boolean;\n // displayedColumns = ['ccdCaseNumber', 'refundReference', 'reason', 'createBy', 'updateDate', 'Action'];\n displayedColumns = ['ccd_case_number', 'refund_reference', 'user_full_name','date_created', 'date_updated', 'Action'];\n \n dataSource: MatTableDataSource<any>;\n userLst;\n serviceLst;\n actualcount: number;\n count: number;\n refundList: IRefundList[];\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n constructor(\n private paymentLibComponent: PaymentLibComponent,\n private cdRef: ChangeDetectorRef,\n private OrderslistService: OrderslistService,\n private router: Router,\n private activeRoute: ActivatedRoute\n ) {}\n ngOnInit() {\n this.errorMessage = this.errorMessage;\n if(this.STATUS.toLowerCase() === 'sent for approval') {\n this.isApprovalFlow = true;\n } else {\n this.isApprovalFlow = false;\n }\n this.refundList = this.DATASOURCE;\n this.dataSource = new MatTableDataSource(this.refundList);\n this.actualcount = this.dataSource.data.length;\n if( this.refundList !== undefined) {\n this.userLst = this.refundList.reduce((r,{user_full_name}) => (r[user_full_name]='', r) , {});\n this.userLst = Object.keys(this.userLst);\n this.userLst.sort((a, b) => a.toString().localeCompare(b));\n this.serviceLst = this.refundList.reduce((r,{service_type}) => (r[service_type]='', r) , {});\n this.serviceLst = Object.keys(this.serviceLst);\n this.serviceLst.sort((a, b) => a.toString().localeCompare(b));\n }\n \n }\n \n /**\n * Set the paginator and sort after the view init since this component will\n * be able to query its view for the initialized paginator and sort.\n */\n ngAfterViewInit() {\n \n this.dataSource.sort = this.sort;\n\n //const sortState: Sort = {active: 'date_updated', direction: 'desc'};\n // this.sort.active = sortState.active;\n // this.sort.direction = sortState.direction;\n // this.sort.sortChange.emit(sortState);\n this.dataSource.paginator = this.paginator;\n this.dataSource.sort = this.sort;\n this.cdRef.detectChanges();\n }\n applyFilter(filterValue: string) {\n filterValue = filterValue.trim(); // Remove whitespace\n filterValue = filterValue.toLowerCase(); // Datasource defaults to lowercase matches\n this.dataSource.filter = filterValue;\n }\n selectchange(args){\n this.dataSource.filter = args.target.value;\n this.actualcount = this.dataSource.data.length;\n this.dataSource.paginator = this.paginator;\n }\n goToRefundProcessComponent(refundReference: string, refundData: IRefundList ) {\n this.paymentLibComponent.refundlistsource = refundData;\n this.paymentLibComponent.refundReference = refundReference;\n this.paymentLibComponent.viewName = 'process-refund';\n }\n goToRefundViewComponent(refundReference: string, refundData: IRefundList ) {\n this.OrderslistService.setRefundView(refundData);\n this.paymentLibComponent.viewName='refundstatuslist';\n this.paymentLibComponent.CCD_CASE_NUMBER = refundData.ccd_case_number;\n this.paymentLibComponent.isRefundStatusView = true;\n this.paymentLibComponent.isCallFromRefundList = true;\n }\n goToCaseReview(ccdCaseNumber: string, refundData: IRefundList ) {\n this.router.navigate([`/cases/case-details/${ccdCaseNumber}`], {relativeTo: this.activeRoute});\n }\n}","import { IRefundContactDetails } from './IRefundContactDetails';\n\nexport class IPutNotificationRequest {\n recipient_email_address?: string;\n recipient_postal_address?: IRefundContactDetails\n \n constructor(contactDetails: any, notificationType: string) {\n if(notificationType === 'EMAIL') {\n this.recipient_email_address = contactDetails;\n } else if(notificationType === 'LETTER') {\n this.recipient_postal_address = contactDetails;\n }\n } \n}","import { IFee } from \"./IFee\";\nimport { IRefundContactDetails } from \"./IRefundContactDetails\";\nexport class IResubmitRefundRequest {\n refund_reason: string;\n amount: number;\n contact_details: IRefundContactDetails;\n refund_fees: IFee[];\n \n constructor(refund_reason : string, amount: number,contact_details:any,refund_fees: any[]) {\n this.refund_reason= refund_reason;\n this.amount = amount;\n this.contact_details = contact_details;\n this.refund_fees = refund_fees;\n } \n }\n ","import { Component, OnInit, Input } from '@angular/core';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { NotificationService } from '../../services/notification/notification.service';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { IRefundsNotifications } from '../../interfaces/IRefundsNotifications';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IPutNotificationRequest } from '../../interfaces/IPutNotificationRequest';\nimport { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';\nimport { IRefundStatus } from '../../interfaces/IRefundStatus';\nimport { IResubmitRefundRequest } from '../../interfaces/IResubmitRefundRequest';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IFee } from '../../interfaces/IFee';\nimport { IRefundFee } from '../../interfaces/IRefundFee';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-refund-status',\n templateUrl: './refund-status.component.html',\n styleUrls: ['./refund-status.component.css']\n})\nexport class RefundStatusComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[] = [];\n @Input('API_ROOT') API_ROOT: string;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: boolean;\n @Input() orderParty: string;\n @Input() isEliginbleToAccess: boolean;\n refundStatusForm: FormGroup;\n selectedRefundReason: string;\n rejectedRefundList: IRefundList[] = [];\n notificationList: any;\n notification:any;\n approvalStatus = 'Sent for approval';\n rejectStatus = 'Update required';\n errorMessage = null;\n viewName: string;\n refundReason: string;\n refundlist: IRefundList;\n bsPaymentDcnNumber: string;\n isCallFromRefundList: boolean;\n refundButtonState: string = '';\n isAmountEmpty: boolean = false;\n isReasonEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n refundHasError: boolean = false;\n refundReasons: any[] = [];\n refundStatusHistories: IRefundStatus[];\n refundNotifications: IRefundStatus[];\n isResendOperationSuccess: boolean = false;\n isEditDetailsClicked: boolean = false;\n isEditAddressDeatilsClicked: boolean = false;\n addressDetails: IRefundContactDetails;\n refundReference: string;\n refundAmount: string;\n refundCode: string;\n isRefundBtnDisabled: boolean = true;\n oldRefundReason: string;\n refundreason: string;\n navigationpage: string;\n isLastUpdatedByCurrentUser: boolean = true;\n isProcessRefund: boolean = false;\n changedAmount: number;\n isRemissionsMatch: boolean;\n payment: IPayment;\n changeRefundReason: string;\n fees: IFee [];\n refundFees: IRefundFee[];\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n\n constructor(private formBuilder: FormBuilder,\n private refundService: RefundsService,\n private notificationService: NotificationService,\n private paymentLibComponent: PaymentLibComponent,\n private OrderslistService: OrderslistService,\n private paymentViewService: PaymentViewService) { }\n\n ngOnInit() {\n\n this.resetRemissionForm([false, false, false, false], 'All');\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.isCallFromRefundList = this.paymentLibComponent.isCallFromRefundList;\n if (this.paymentLibComponent.isRefundStatusView) {\n this.viewName = 'refundview';\n this.OrderslistService.getRefundView().subscribe((data) => this.refundlist = data);\n this.OrderslistService.getCCDCaseNumberforRefund.subscribe((data) => this.ccdCaseNumber = data);\n } else {\n this.viewName = 'refundstatuslist';\n if(this.isEliginbleToAccess) {\n this.refundService.getRefundStatusList(this.ccdCaseNumber).subscribe(\n refundList => {\n this.rejectedRefundList = refundList['refund_list'];\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n } else {\n this.rejectedRefundList = [];\n }\n\n }\n\n\n this.refundStatusForm = this.formBuilder.group({\n amount: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[0-9]+(\\.[0-9]{1,2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl()\n });\n\n if(this.refundlist !== undefined) {\n this.getRefundsNotification();\n this.getRefundsStatusHistoryList();\n\n if (this.LOGGEDINUSERROLES.some(i => i.includes('payments-refund-approver'))) {\n this.isProcessRefund = true;\n this.refundButtonState = this.refundlist.refund_status.name;\n return;\n }\n\n if (this.LOGGEDINUSERROLES.some(i => i.includes('payments-refund'))) {\n this.isProcessRefund = false;\n this.refundButtonState = this.refundlist.refund_status.name;\n }\n }\n\n }\n\n isFromPayBubble = (): boolean => { \n return this.API_ROOT === 'api/payment-history';\n }\n\n getRefundsStatusHistoryList() {\n if(this.refundlist !== undefined) {\n this.refundService.getRefundStatusHistory(this.refundlist.refund_reference).subscribe(\n statusHistoryList => {\n this.refundStatusHistories = statusHistoryList.status_history_dto_list;\n this.isLastUpdatedByCurrentUser = statusHistoryList.last_updated_by_current_user;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n }\n }\n\n getRefundsNotification() {\n this.notificationService.getRefundNotification(this.refundlist.refund_reference).subscribe(\n refundsNotification => {\n this.notificationList = refundsNotification['notifications'];\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n }; \n }\n\n goToRefundView(refundlist: IRefundList, navigationpage: string) {\n this.OrderslistService.setRefundView(refundlist);\n this.OrderslistService.setCCDCaseNumber(this.ccdCaseNumber);\n this.paymentLibComponent.viewName = 'refundstatuslist';\n this.paymentLibComponent.isRefundStatusView = true;\n this.refundlist = refundlist;\n this.OrderslistService.setnavigationPage(navigationpage);\n }\n\n loadCaseTransactionPage() {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n }\n\n loadRefundListPage() {\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n if (this.navigationpage === 'casetransactions') {\n this.loadCaseTransactionPage();\n } else {\n this.paymentLibComponent.viewName = 'refund-list';\n }\n }\n\n gotoReviewDetailsPage(event:any) {\n // event.preventDefault();\n this.errorMessage = false;\n this.paymentLibComponent.isRefundStatusView = true;\n this.ngOnInit();\n }\n\n gotoReviewAndReSubmitPage() {\n this.viewName = 'reviewandsubmitview';\n this.oldRefundReason = this.refundlist.reason;\n this.changedAmount = this.refundlist.amount;\n this.refundreason = this.refundStatusHistories.filter(data => data.status.toLowerCase() === 'update required')[0].notes;\n this.refundService.getRefundReasons().subscribe(\n refundReasons => {\n this.refundReasons = refundReasons;\n });\n }\n gotoRefundReasonPage(refundReason:string) {\n this.isRefundBtnDisabled = false;\n this.paymentLibComponent.REFUNDLIST = \"true\";\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.errorMessage = false;\n this.changeRefundReason = refundReason;\n this.viewName = 'issuerefundpage1';\n }\n\n gotoAmountPage() {\n this.errorMessage = false;\n this.paymentLibComponent.REFUNDLIST = \"true\";\n this.isRefundBtnDisabled = false;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.paymentLibComponent.isFromRefundStatusPage = true;\n if(this.refundlist.reason == 'Retrospective remission') {\n this.viewName = 'processretroremissonpage';\n } else {\n this.viewName = 'issuerefund';\n }\n }\n\n goToReviewAndSubmitView() {\n const remissionctrls = this.refundStatusForm.controls\n if (this.refundStatusForm.dirty) {\n if (remissionctrls['amount'].value == '') {\n this.resetRemissionForm([true, false, false, false], 'amount');\n }\n else if (remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid) {\n this.resetRemissionForm([false, true, false, false], 'amount');\n }\n else if (remissionctrls['reason'].value == '') {\n this.resetRemissionForm([false, false, false, true], 'reason');\n } else {\n this.refundlist.reason = remissionctrls['reason'].value;\n this.viewName = 'reviewandsubmitview';\n }\n }\n\n }\n\n resetRemissionForm(val, field) {\n if (field === 'All') {\n this.isAmountEmpty = val[0];\n this.amountHasError = val[1];\n this.isRemissionLessThanFeeError = val[2];\n this.isReasonEmpty = val[3];\n } else if (field === 'amount' || field === 'All') {\n this.isAmountEmpty = val[0];\n this.amountHasError = val[1];\n this.isRemissionLessThanFeeError = val[2];\n } else if (field === 'reason' || field === 'All') {\n this.isReasonEmpty = val[3];\n }\n }\n\n selectRadioButton(key, value) {\n this.refundHasError = false;\n this.selectedRefundReason = key;\n if (key === 'Other') {\n this.refundHasError = false;\n this.refundReason = key;\n }\n }\n\n getRefundListReason(refundListReason: any) {\n if (this.paymentLibComponent.isFromRefundStatusPage && !this.paymentLibComponent.iscancelClicked) {\n this.refundlist.reason = refundListReason.reason;\n this.refundlist.code = refundListReason.code;\n this.refundCode = refundListReason.code;\n } else {\n this.isRefundBtnDisabled = true;\n }\n this.viewName = 'reviewandsubmitview';\n this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;\n }\n\n getRefundAmount(amount: number) {\n if (this.paymentLibComponent.isFromRefundStatusPage && !this.paymentLibComponent.iscancelClicked) {\n if (amount > 0) {\n this.changedAmount = amount;\n // this.refundlist.amount = amount;\n }\n } else {\n this.isRefundBtnDisabled = true;\n }\n this.viewName = 'reviewandsubmitview';\n this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;\n }\n\n getRefundFees(fees: IFee[])\n {\n this.fees = fees;\n this.refundFees = this.fees.map(obj => ({ fee_id: obj.id, code: obj.code, version:obj.version, volume: obj.volume,refund_amount:obj.refund_amount }));\n }\n\n gotoReviewRefundConfirmationPage() {\n // if (this.oldRefundReason === this.refundlist.reason) {\n // this.refundCode = '';\n // }\n if (this.refundFees === undefined) {\n this.refundFees = this.refundlist['refund_fees'];\n }\n this.refundCode = this.refundlist.code;\n const resubmitRequest = new IResubmitRefundRequest(this.refundCode, this.changedAmount, this.refundlist.contact_details, this.refundFees);\n this.refundService.patchResubmitRefund(resubmitRequest, this.refundlist.refund_reference).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n this.viewName = 'reviewrefundconfirmationpage';\n }\n },\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n }\n );\n }\n\n gotoEditAddressDetails(note: IRefundsNotifications) {\n this.notification = note;\n this.isEditDetailsClicked = true;\n this.viewName = 'refundEditView'\n }\n getContactDetails(obj:IRefundContactDetails) {\n this.addressDetails = obj;\n this.viewName = 'revieweditdetailsconfirmationpage';\n }\n getContactDetailsForRefundList(obj:IRefundContactDetails) {\n this.refundlist.contact_details = obj;\n this.isEditDetailsClicked = false;\n this.isRefundBtnDisabled = false;\n this.viewName = 'reviewandsubmitview';\n }\n gotoEditDetailsPage(note?: any) {\n if(note) {\n this.notification = { contact_details: note, notification_type: note.notification_type };\n }\n this.isEditDetailsClicked = true;\n this.viewName = 'refundEditView'\n }\n submitEditDetail() {\n this.isResendOperationSuccess = false;\n const contactDetails = this.addressDetails.notification_type === 'EMAIL' ? this.addressDetails.email :\n {\n address_line: this.addressDetails.address_line,\n city: this.addressDetails.city,\n county: this.addressDetails.county,\n country: this.addressDetails.country,\n postal_code: this.addressDetails.postal_code,\n };\n const resendRequest = new IPutNotificationRequest(contactDetails, this.addressDetails.notification_type);\n\n this.refundService.putResendOrEdit(resendRequest, this.refundlist.refund_reference, this.addressDetails.notification_type).subscribe(\n (response) => {\n this.isResendOperationSuccess = response;\n },\n (error: any) => {\n this.isResendOperationSuccess = false;\n this.errorMessage = error.replace(/\"/g,\"\");\n }\n );\n }\n putResend(notification: IRefundsNotifications) {\n this.isResendOperationSuccess = false;\n const contactDetails = notification.notification_type === 'EMAIL' ? notification.contact_details.email :\n {\n address_line :notification.contact_details.address_line,\n city: notification.contact_details.city,\n county: notification.contact_details.county,\n country: notification.contact_details.country,\n postal_code: notification.contact_details.postal_code,\n };\n const resendRequest = new IPutNotificationRequest(contactDetails, notification.notification_type);\n\n this.refundService.putResendOrEdit(resendRequest, this.refundlist.refund_reference, notification.notification_type).subscribe(\n (response) => {\n this.isResendOperationSuccess = response;\n },\n (error: any) => {\n this.isResendOperationSuccess = false;\n this.errorMessage = error.replace(/\"/g,\"\");\n }\n );\n\n }\n gotoCasetransationPageCancelBtnClicked(Event: Event) {\n event.preventDefault();\n this.viewName = 'refundstatuslist';\n }\n\n goToRefundProcessComponent(refundReference: string, refundList: IRefundList) {\n this.paymentLibComponent.refundlistsource = refundList;\n this.paymentLibComponent.refundReference = refundReference;\n this.paymentLibComponent.isFromPayBubble = true;\n this.paymentLibComponent.viewName = 'process-refund';\n }\n\n}\n","import { THIS_EXPR } from '@angular/compiler/src/output/output_ast';\nimport { Component, Input, OnInit, Output, EventEmitter, ChangeDetectorRef } from '@angular/core';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IPaymentView } from '../../interfaces/IPaymentView';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { Router } from '@angular/router';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\n\n@Component({\n selector: 'ccpay-service-request',\n templateUrl: './service-request.component.html',\n styleUrls: ['./service-request.component.scss']\n})\nexport class ServiceRequestComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input('viewStatus') viewStatus: string;\n @Input('orderDetail') orderDetail: any[];\n @Input('orderRef') orderRef: string;\n @Input('orderStatus') orderStatus: string;\n @Input('orderParty') orderParty: string;\n @Input('orderCreated') orderCreated: Date;\n @Input('orderCCDEvent') orderCCDEvent: string;\n @Input('orderFeesTotal') orderFeesTotal: number;\n @Input('orderTotalPayments') orderTotalPayments: number;\n @Input('orderRemissionTotal') orderRemissionTotal: number;\n @Input('paymentGroupList') paymentGroupList: IPaymentGroup;\n @Input('takePayment') takePayment: boolean;\n @Input('ccdCaseNumber') ccdCaseNumber: boolean;\n @Input(\"isServiceRequest\") isServiceRequest: string;\n @Output() goToServiceRquestComponent: EventEmitter<any> = new EventEmitter();\n\n viewCompStatus;\n servicerequest: string;\n paymentType: string;\n excReference: string;\n paymentGroups: any[] = [];\n payments: IPayment[] = [];\n nonPayments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n paymentFees: IFee[];\n fees: any;\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalNonOffPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n paymentRef: string;\n isTurnOff: boolean;\n isRefundRemission: boolean = true;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = true;\n isExceptionRecord: boolean = false;\n isUnprocessedRecordSelected: boolean = false;\n exceptionRecordReference: string;\n isAnyFeeGroupAvilable: boolean = true;\n isHistoricGroupAvailable: boolean = false;\n isBulkScanEnable;\n isRemissionsMatch: boolean;\n isRemoveBtnDisabled: boolean = false;\n feeId: IFee;\n clAmountDue: number = 0;\n unprocessedRecordCount: number;\n isFeeRecordsExist: boolean = false;\n isGrpOutstandingAmtPositive: boolean = false;\n totalRefundAmount: Number;\n caseType: String;\n isConfirmationBtnDisabled: boolean;\n refundReference: string;\n refundAmount: string;\n payment: IPayment;\n paymentGroup: IPaymentGroup;\n paymentView: IPaymentView;\n\n isAddRemissionEnable: boolean = false;\n orderRemissionDetails: any[] = [];\n orderLevelFees: IOrderReferenceFee[] = [];\n cpoDetails: any = null;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n isFromPaymentDetailPage: boolean;\n contactDetailsObj: IRefundContactDetails\n notification: any;\n isCPODown: boolean;\n test: boolean;\n isPBA: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n isAddRemissionBtnEnabled: boolean = false;\n isRefundRemissionBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n isFromServiceRequestPage: boolean;\n navigationpage: string;\n remissionFeeAmt: number;\n isContinueBtnDisabled: boolean = true;\n isFullyRefund: boolean;\n\n constructor(\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private OrderslistService: OrderslistService,\n private cd: ChangeDetectorRef,\n private router: Router) { }\n\n ngOnInit() {\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isServiceRequest = 'false';\n if (this.viewStatus === undefined) {\n this.viewStatus = this.paymentLibComponent.viewName;\n }\n if(this.paymentLibComponent.isFromServiceRequestPage && this.paymentLibComponent.isFromPaymentDetailPage) {\n if(this.paymentLibComponent.isFromPaymentDetailPage && this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.getorderRefs().subscribe((data) => this.orderRef = data);\n this.OrderslistService.getorderCCDEvents().subscribe((data) => this.orderCCDEvent = data);\n this.OrderslistService.getorderCreateds().subscribe((data) => this.orderCreated = data);\n this.OrderslistService.getorderDetail().subscribe((data) => this.orderDetail = data);\n this.OrderslistService.getorderPartys().subscribe((data) => this.orderParty = data);\n this.OrderslistService.getorderRemissionTotals().subscribe((data) => this.orderRemissionTotal = data);\n this.OrderslistService.getorderFeesTotals().subscribe((data) => this.orderFeesTotal = data);\n this.OrderslistService.getoorderTotalPaymentss().subscribe((data) => this.orderTotalPayments = data);\n }\n \n \n }\n if(this.paymentLibComponent.isFromServiceRequestPage && this.paymentLibComponent.TAKEPAYMENT) {\n this.isServiceRequest = 'false';\n }\n\n\n }\n goToServiceRequestPage() {\n this.goToServiceRquestComponent.emit();\n }\n\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n this.OrderslistService.setnavigationPage('servicerequestpage');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isTakePayment = this.paymentLibComponent.TAKEPAYMENT;\n if (this.takePayment) {\n this.paymentLibComponent.isTakePayment = this.takePayment;\n }\n //this.paymentLibComponent.SERVICEREQUEST = \"true\";\n this.paymentLibComponent.isFromServiceRequestPage = false;\n if(this.isServiceRequest !== 'false') {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n }\n this.paymentLibComponent.isFromRefundStatusPage = false;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.resetOrderData();\n let partUrl = this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n if(this.isServiceRequest === 'false') {\n partUrl += this.paymentLibComponent.TAKEPAYMENT ? '&takePayment=true' : '&takePayment=false';\n }\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += this.isServiceRequest !== 'false' ? '&servicerequest=true' : '&servicerequest=false';\n partUrl += `&caseType=${this.paymentLibComponent.CASETYPE}`;\n const url = `/payment-history/${this.paymentLibComponent.CCD_CASE_NUMBER}?view=case-transactions&selectedOption=${this.paymentLibComponent.SELECTED_OPTION}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n\n addRemission(fee: IFee) {\n if(this.chkIsAddRemissionBtnEnable(fee)) {\n this.feeId = fee;\n this.viewStatus = 'addremission';\n this.payment = this.orderDetail[0].payments[0];\n this.paymentViewService.getApportionPaymentDetails(this.orderDetail[0].payments[0].reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n \n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n \n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.paymentViewService.getApportionPaymentDetails(payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj.reference === payment.reference);\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n this.viewStatus = 'addrefundforremission';\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n cancelRemoval() {\n this.viewStatus = 'main';\n }\n\n removeFee(fee: any) {\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n window.location.reload();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n issueRefund(payment: IPayment) {\n if (payment !== null && payment !== undefined) {\n if( this.chkIsIssueRefundBtnEnable(payment)) {\n this.paymentViewService.getApportionPaymentDetails(payment.reference).subscribe(\n paymentGroup => {\n paymentGroup.payments = paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(payment.reference));\n if(payment.over_payment > 0) {\n this.viewStatus = '';\n this.payment = payment;\n this.paymentGroupList = paymentGroup;\n this.viewCompStatus = 'overpayment';\n } else {\n this.viewStatus = 'issuerefund';\n this.viewCompStatus = '';\n this.paymentFees = paymentGroup.fees;\n this.payment = payment;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.isRefundRemission = true;\n }\n },\n (error: any) => this.errorMessage = error\n );\n }\n }\n }\n\n goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent({ paymentGroupReference, paymentReference, paymentMethod });\n }\n\n goToPaymentViewComponent(paymentGroup: any) {\n this.paymentLibComponent.paymentMethod = paymentGroup.paymentMethod;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentGroup.paymentReference;\n this.OrderslistService.setOrderRef(this.orderRef);\n this.OrderslistService.setorderCCDEvent(this.orderCCDEvent);\n this.OrderslistService.setorderCreated(this.orderCreated);\n this.OrderslistService.setorderDetail(this.orderDetail);\n this.OrderslistService.setorderParty(this.orderParty);\n this.OrderslistService.setorderTotalPayments(this.orderTotalPayments);\n this.OrderslistService.setorderRemissionTotal(this.orderRemissionTotal);\n this.OrderslistService.setorderFeesTotal(this.orderFeesTotal);\n this.viewStatus = 'payment-view';\n }\n\n chkIsIssueRefundBtnEnable(payment: IPayment): boolean {\n if (payment !== null && payment !== undefined) {\n return payment.issue_refund && payment.refund_enable\n } else {\n return false;\n }\n }\n\n chkIsAddRefundBtnEnable(remission: IRemission): boolean {\n if (remission !== null && remission !== undefined) {\n return remission.add_refund;\n } else {\n return false;\n }\n }\n\n chkIsAddRemissionBtnEnable(fee: IFee): boolean {\n if (fee !== null && fee !== undefined) {\n return fee.add_remission && fee.remission_enable;\n } else {\n return false\n }\n }\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n\n selectPymentOption(paymentType: string) {\n this.paymentType = paymentType;\n this.isContinueBtnDisabled = false;\n }\n goToPaymentViewComp() {\n this.viewCompStatus = '';\n this.viewStatus = 'paymentview';\n }\n continuePayment(paymentgrp: IPaymentGroup) {\n \n if (this.paymentType === 'op') {\n this.isFullyRefund = false\n this.viewStatus = '';\n this.viewCompStatus = 'overPaymentAddressCapture';\n } else if(this.paymentType === 'fp') {\n this.isFullyRefund = true\n this.paymentGroupList = paymentgrp;\n this.viewStatus = 'issuerefund';\n this.viewCompStatus = \"\";\n this.isRefundRemission = true;\n this.paymentLibComponent.isFromPaymentDetailPage = true;\n this.isFromPaymentDetailPage = true;\n this.isFromServiceRequestPage = this.paymentLibComponent.isFromServiceRequestPage;\n }\n }\n getContactDetails(obj:IRefundContactDetails) {\n this.contactDetailsObj = obj;\n this.viewStatus = '';\n this.viewCompStatus = 'overpaymentcheckandanswer';\n }\n gotoPaymentSelectPage(event: Event) {\n event.preventDefault();\n this.viewStatus = '';\n this.viewCompStatus = 'overpayment';\n }\n gotoAddressPage(note?: IRefundContactDetails) {\n if (note) {\n this.notification = { contact_details: note, notification_type: note.notification_type };\n }\n this.errorMessage = '';\n this.viewStatus = '';\n this.viewCompStatus = 'overPaymentAddressCapture';\n }\n processRefund() {\n this.isConfirmationBtnDisabled = true;\n this.errorMessage = '';\n const obj = this.paymentGroupList.fees[0];\n this.fees = [{ id: obj.id, \n code: obj.code,\n version:obj.version, \n apportion_amount: obj.apportion_amount,\n calculated_amount: obj.calculated_amount,\n updated_volume: obj.updated_volume ? obj.updated_volume : obj.volume,\n volume: obj.volume,\n refund_amount: this.getOverPaymentValue() }];\n const requestBody = new PostRefundRetroRemission(this.contactDetailsObj,this.fees, this.paymentGroupList.payments[0].reference, 'RR037', \n this.getOverPaymentValue(), 'op');\n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n })\n }\n\n getOverPaymentValue() {\n let feesOverPayment = 0;\n this.paymentGroupList.fees.forEach(fee => {\n feesOverPayment += fee.over_payment;\n });\n return feesOverPayment > 0 ? feesOverPayment : this.paymentGroupList.payments[0].over_payment;\n\n }\n}","export class IserviceRequestCardPayment {\n amount: string\n currency: string\n language: string\n \n constructor(amount : string) {\n this.amount = amount;\n this.currency = 'GBP';\n this.language = 'string';\n } \n}\n ","export class IserviceRequestPbaPayment {\n account_number: string;\n amount: string\n currency: string\n customer_reference: string\n organisation_name: string\n \n constructor(account_number : string, amount : string, customer_reference: string, orgName: string) {\n this.account_number = account_number;\n this.amount = amount;\n this.currency = 'GBP';\n this.customer_reference = customer_reference;\n this.organisation_name = orgName;\n } \n}\n ","import { Component, OnInit, Input} from '@angular/core';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IserviceRequestCardPayment } from '../../interfaces/IserviceRequestCardPayment';\nimport { IserviceRequestPbaPayment } from '../../interfaces/IserviceRequestPbaPayment';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-pba-payment',\n templateUrl: './pba-payment.component.html',\n styleUrls: ['./pba-payment.component.scss']\n})\nexport class PbaPaymentComponent implements OnInit {\n @Input() pbaPayOrderRef: any;\n viewStatus: string;\n pbaAccountList: string[];\n isPBAAccountHold: boolean = false;\n errorMsg: any;\n isCardPaymentSuccess: boolean = true;\n isInSufficiantFund: boolean = false;\n isPBAAccountNotExist: boolean = false;\n isPBAServerError: boolean = false;\n isGetPBAAccountSucceed: boolean = false;\n selectedPbaAccount: string = '';\n pbaAccountRef: string = '';\n isPbaAccountSelected: boolean = false;\n isCardPaymentSelected: boolean = false;\n isPBADropdownSelected: boolean = false;\n isContinueButtondisabled: boolean = true;\n isPBAAccountPaymentSuccess: boolean = false;\n pbaAccountrPaymentResult: any;\n orgName: string = '';\n\n constructor(private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService) {}\n\n ngOnInit() {\n this.pbaPayOrderRef = this.paymentLibComponent.pbaPayOrderRef;\n this.viewStatus = 'pba-payment';\n this.errorMsg = null;\n this.paymentViewService.getPBAaccountDetails()\n .subscribe(\n result => {\n this.isGetPBAAccountSucceed = true;\n this.orgName = result.organisationEntityResponse.name;\n this.pbaAccountList = result.organisationEntityResponse.paymentAccount;\n },\n error => {\n this.errorMsg = error;\n }\n );\n\n }\n selectpbaaccount(args) {\n if(args.currentTarget.id === 'pbaAccountNumber') {\n this.isPBADropdownSelected = true;\n this.selectedPbaAccount = args.target.value; \n }\n if(args.currentTarget.id === 'pbaAccountRef') {\n this.pbaAccountRef = args.target.value; \n }\n if(this.selectedPbaAccount !== '' && this.pbaAccountRef !== \"\") {\n this.isContinueButtondisabled = false;\n } else {\n this.isContinueButtondisabled = true;\n }\n }\n\n saveAndContinue() {\n\n if(this.isPbaAccountSelected) {\n this.isInSufficiantFund = false;\n this.isPBAAccountNotExist = false;\n this.isPBAServerError = false;\n this.isPBAAccountPaymentSuccess = false;\n if ( this.pbaAccountList.indexOf(this.selectedPbaAccount) !== -1 ) {\n const requestBody = new IserviceRequestPbaPayment(\n this.selectedPbaAccount, this.pbaPayOrderRef.orderTotalFees, this.pbaAccountRef, this.orgName);\n this.paymentViewService.postPBAaccountPayment(this.pbaPayOrderRef.orderRefId, requestBody)\n .subscribe(\n r => {\n try {\n this.pbaAccountrPaymentResult = JSON.parse(r);\n } catch(e) {\n this.pbaAccountrPaymentResult = r;\n }\n this.isPBAAccountPaymentSuccess = true;\n },\n e => {\n if(e.status == '402') {\n this.isInSufficiantFund = true; \n } else if(e.status == '410') {\n this.isPBAAccountNotExist = true;\n } else if(e.status == '412') {\n this.isPBAAccountHold = true;\n } else {\n this.isPBAServerError = true;\n }\n }\n );\n } else {\n this.isPBAServerError = true;\n }\n } else if (this.isCardPaymentSelected) {\n this.cardPayment();\n }\n\n }\n cardPayment() {\n this.isCardPaymentSuccess = true;\n const requestBody = new IserviceRequestCardPayment (\n this.pbaPayOrderRef.orderTotalFees);\n this.paymentViewService.postWays2PayCardPayment(this.pbaPayOrderRef.orderRefId, requestBody)\n .subscribe(\n result => {\n const paymentUrl = JSON.parse(result).next_url;\n window.location.href = paymentUrl;\n },\n error => {\n this.isCardPaymentSuccess = false;\n }\n );\n\n }\n selectPaymentMethod(type: string) {\n if(type === 'PBA') {\n this.isPbaAccountSelected = true;\n this.isCardPaymentSelected = false;\n this.isPBADropdownSelected = false\n this.isContinueButtondisabled = true;\n this.selectedPbaAccount = null;\n } else if (type === 'CARD') {\n this.isPbaAccountSelected = false;\n this.isCardPaymentSelected = true;\n this.isPBADropdownSelected = false\n this.isContinueButtondisabled = false;\n }\n }\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = false;\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n }\n}\n","import { NgModule } from '@angular/core';\nimport { HttpClientModule } from '@angular/common/http';\nimport { CommonModule } from '@angular/common';\n\nimport { PaymentListComponent } from './components/payment-list/payment-list.component';\nimport { PaymentViewComponent } from './components/payment-view/payment-view.component';\nimport { ProcessRefundComponent } from './components/process-refund/process-refund.component';\nimport { RefundListComponent } from './components/refund-list/refund-list.component';\n\nimport { CardDetailsComponent } from './components/card-details/card-details.component';\nimport { PageNotFoundComponent } from './components/page-not-found.component';\nimport { PaymentLibComponent } from './payment-lib.component';\nimport { StatusHistoryComponent } from './components/status-history/status-history.component';\nimport { ContactDetailsComponent } from './components/contact-details/contact-details.component';\nimport { PbaDetailsComponent } from './components/pba-details/pba-details.component';\nimport { LoggerService } from './services/shared/logger/logger.service';\nimport { ConsoleLoggerService } from './services/shared/logger/console-logger.service';\nimport { WebComponentHttpClient } from './services/shared/httpclient/webcomponent.http.client';\nimport { CaseTransactionsComponent } from './components/case-transactions/case-transactions.component';\nimport { FeeSummaryComponent } from './components/fee-summary/fee-summary.component';\nimport { ErrorBannerComponent } from './components/error-banner/error-banner.component';\nimport { MarkUnidentifiedPaymentComponent } from './components/mark-unidentified-payment/mark-unidentified-payment.component';\nimport { MarkUnsolicitedPaymentComponent } from './components/mark-unsolicited-payment/mark-unsolicited-payment.component';\nimport { UnprocessedPaymentsComponent } from './components/unprocessed-payments/unprocessed-payments.component';\nimport { ProcessedPaymentsComponent } from './components/processed-payments/processed-payments.component';\nimport { AllocatePaymentsComponent } from './components/allocate-payments/allocate-payments.component';\nimport { AddRemissionComponent } from './components/add-remission/add-remission.component';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { CcdHyphensPipe } from './pipes/ccd-hyphens.pipe';\nimport { CapitalizePipe } from './pipes/capitalize.pipe';\nimport { keyValuePipe } from './pipes/key-value.pipe';\nimport { SanitizeHtmlPipe } from './pipes/sanitize-html.pipe';\nimport { ReportsComponent } from './components/reports/reports.component';\nimport { XlFileService } from './services/xl-file/xl-file.service';\nimport { TableComponent } from './components/table/table.component';\nimport { MatTableModule } from '@angular/material/table';\nimport { MatPaginatorModule } from '@angular/material/paginator';\nimport { MatSortModule } from '@angular/material/sort';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\n// import { BrowserAnimationsModule } from '@angular/platform-browser/animations';\n// import { NoopAnimationsModule } from '@angular/platform-browser/animations';\nimport { RefundStatusComponent } from './components/refund-status/refund-status.component';\nimport { ServiceRequestComponent } from './components/service-request/service-request.component';\nimport { PbaPaymentComponent } from './components/pba-payment/pba-payment.component';\n\n@NgModule({\n imports: [\n CommonModule,\n HttpClientModule,\n FormsModule,\n ReactiveFormsModule,\n MatTableModule,\n MatPaginatorModule,\n MatSortModule,\n MatFormFieldModule,\n MatInputModule,\n // BrowserAnimationsModule,\n // NoopAnimationsModule\n ],\n declarations: [\n PaymentLibComponent,\n PaymentListComponent,\n PaymentViewComponent,\n PbaPaymentComponent,\n ContactDetailsComponent,\n ProcessRefundComponent,\n RefundListComponent,\n CardDetailsComponent,\n PageNotFoundComponent,\n StatusHistoryComponent,\n MarkUnidentifiedPaymentComponent,\n MarkUnsolicitedPaymentComponent,\n UnprocessedPaymentsComponent,\n ProcessedPaymentsComponent,\n AllocatePaymentsComponent,\n PbaDetailsComponent,\n CaseTransactionsComponent,\n FeeSummaryComponent,\n AddRemissionComponent,\n CcdHyphensPipe,\n CapitalizePipe,\n keyValuePipe,\n SanitizeHtmlPipe,\n ReportsComponent,\n ErrorBannerComponent,\n TableComponent,\n RefundStatusComponent,\n ServiceRequestComponent\n ],\n exports: [PaymentLibComponent],\n providers: [\n { provide: LoggerService, useClass: ConsoleLoggerService },\n XlFileService,\n WebComponentHttpClient\n ]\n})\n\nexport class PaymentLibModule { }\n"],"names":["PaymentLibService","prototype","setApiRootUrl","apiRoot","this","API_ROOT","getApiRootUrl","setBulkScanApiRootUrl","bulkscanapiRoot","BULKSCAN_API_ROOT","getBulkScanApiRootUrl","setRefundndsApiRootUrl","refundsapiRoot","REFUNDS_API_ROOT","getRefundsApiRootUrl","setNoticationApiRootUrl","notificationapiRoot","NOTIFICATION_API_ROOT","getNoticationApiRootUrl","setCardPaymentReturnUrl","cardPaymentReturnUrl","CARDPAYMENTRETURNURL","getCardPaymentReturnUrl","Injectable","args","providedIn","OrderslistService","setOrdersList","orderLevelFees","ordersList","next","Object","assign","getOrdersList","setRefundView","refundList","refundView","getRefundView","setCaseType","caseType","getCaseType","setCCDCaseNumber","ccdCaseNumber","getCCDCaseNumber","setFeeExists","feeExists","getFeeExists","setisFromServiceRequestPage","isFromServiceRequestPage","getisFromServiceRequestPages","setOrderRefId","OrderRefId","getSelectedOrderRefId","setnavigationPage","navigationPage","getnavigationPageValue","setpaymentPageView","paymentpageList","paymentPageView","getpaymentPageView","setUserRolesList","rolesList","getUserRolesList","setorderDetail","orderDetail","getorderDetail","setOrderRef","orderRef","getorderRefs","setorderCCDEvent","orderCCDEvent","getorderCCDEvents","setorderCreated","orderCreated","getorderCreateds","setorderParty","orderParty","getorderPartys","setorderRemissionTotal","orderRemissionTotal","getorderRemissionTotals","setorderFeesTotal","orderFeesTotal","getorderFeesTotals","setorderTotalPayments","orderTotalPayments","getoorderTotalPaymentss","BehaviorSubject","getcaseType","asObservable","getFeeExist","getCCDCaseNumberforRefund","getisFromServiceRequestPage","getOrderRefId","getnavigationPage","getorderRef","getorderCCDEvent","getorderCreated","getorderParty","getorderRemissionTotal","getorderFeesTotal","getorderTotalPayments","PaymentLibComponent","ngAfterContentChecked","cd","detectChanges","ngOnInit","paymentLibService","LOGGEDINUSERROLES","length","PAYMENT_GROUP_REF","paymentGroupReference","DCN_NUMBER","bspaymentdcn","REFUNDLIST","VIEW","viewName","isTakePayment","TAKEPAYMENT","Component","selector","template","ChangeDetectorRef","Input","unProcessedPaymentServiceId","isFromPayBubble","unProcessedPayment","orderPendingPayments","ErrorHandlerService","handleError","err","errorMessage","error","Error","message","status","undefined","JSON","parse","statusCode","messsage","stringify","_throw","getServerErrorMessage","isErrorExist","isDataNotExist","title","body","showError","LoggerService","invokeConsoleMethod","type","PaymentListService","getPaymentByCcdCaseNumber","paymentMethod","logger","info","http","get","withCredentials","pipe","catchError","errorHandlerService","HttpClient","PaymentListComponent","_this","paymentListService","paymentLibComponent","CCD_CASE_NUMBER","PAYMENT_METHOD","subscribe","payments","loadPaymentViewComponent","paymentReference","__values","o","s","Symbol","iterator","m","i","call","value","done","TypeError","WebComponentHttpClient","post","url","options","opts","addHeaders","put","delete","patch","csrfToken","meta","getTag","headers","forEach","element","document","cookie","split","find","row","startsWith","content","HttpHeaders","responseType","Meta","PaymentViewService","getPaymentDetails","getPaymentGroupDetails","getApportionPaymentDetails","getPBAaccountDetails","postWays2PayCardPayment","serviceRef","rurl","replace","https","postPBAaccountPayment","randomKey","Math","random","toString","join","postBSPayments","postBSUnidentifiedPayments","postBSUnsolicitedPayments","postBSAllocationPayments","postPaymentGroupWithRemissions","feeId","deleteFeeFromPaymentGroup","postPaymentToPayHub","paymentGroupRef","postPaymentAntennaToPayHub","downloadSelectedReport","reportName","startDate","endDate","downloadFailureReport","getBSfeature","getSiteID","getPartyDetails","caseNumber","postRefundsReason","postPaymentGroupWithRetroRemissions","postRefundRetroRemission","getPaymentFailure","PostRefundRetroRemission","contact_details","fees","payment_reference","refund_reason","total_refund_amount","is_over_payment","PaymentViewComponent","selectedOption","SELECTED_OPTION","dcnNumber","isTurnOff","ISTURNOFF","serviceReference","viewStatus","paymentViewService","paymentGroup","paymentAllocation","fee","isRemissionsMatch","remissions","rem","fee_code","code","push","paymentFees","filter","paymentGroupObj","includes","payment_allocation","isStatusAllocated","allocation_status","res","payment_failure_list","reverse","allPaymentsFailure","payment_failure_initiated","payment_failure_closed","e","errorMsg","defineProperty","method","channel","goToPaymentList","getOverPaymentValue","feesOverPayment","over_payment","goToServiceRequestPage","SERVICEREQUEST","window","location","reload","goToCaseTransationPage","event","preventDefault","data","ISBSENABLE","resetOrderData","addRemission","chkIsAddRemissionBtnEnable","reference","payment","isFromPaymentDetailPage","isRefundRemission","checkForFees","processRefund","obj","isConfirmationBtnDisabled","requestBody","id","version","apportion_amount","calculated_amount","updated_volume","volume","refund_amount","contactDetailsObj","response","viewCompStatus","refundReference","refund_reference","refundAmount","gotoAddressPage","note","notification","notification_type","addRefundForRemission","remission","remissionFeeAmt","net_amount","goToPaymentViewComponent","issueRefund","paymentgrp","chkIsIssueRefundBtnEnable","getRemissionByFeeCode","feeCode","remissions_1","tslib_1.__values","remissions_1_1","issue_refund","refund_enable","chkIsAddRefundBtnEnable","add_refund","add_remission","remission_enable","selectPymentOption","paymentType","isContinueBtnDisabled","continuePayment","isFullyRefund","gotoPaymentSelectPage","getContactDetails","goToPaymentFailuePage","selectedPaymentsStatus","goBackToPaymentView","isAddFeeBtnEnabled","isIssueRefunfBtnEnable","allowedRolesToAccessRefund","RefundsService","getRefundReasons","getRefundRejectReasons","getRefundActions","patchRefundActions","reviewerAction","getRefundList","refundstatus","selfexclusive","getRefundStatusHistory","getRefundStatusList","getUserDetails","postIssueRefund","putResendOrEdit","refundRef","notificationType","patchResubmitRefund","ProcessRefundComponent","refundActionList","getErrorMessage","processRefundForm","formBuilder","group","refundActionField","FormControl","Validators","compose","required","refundRejectReasonField","sendMeBackField","minLength","maxLength","pattern","enterReasonField","refundlistsource","ccd_case_number","isFromRefundListPage","cpoDetails","isCPODown","checkRefundActions","refundActionsHasError","isReasonFieldEmpty","isReasonEmpty","isReasonInvalid","refundRejectReasonHasError","isConfirmButtondisabled","isSendMeBackClicked","isRejectClicked","isOtherClicked","refundRejectReasonList","processRefundSubmit","processRefundRequest","controls","resetForm","processFormError","errors","dirty","valid","reason","isSuccesspageEnable","successMsg","invalid","minlength","actualLength","maxlength","bodyTxt","loadRefundListPage","navigationpage","isRefundStatusView","loadRefundsHomePage","redirecttoRefundListPage","loadCaseTransactionPage","vals","field","isReasonFieldInvalid","reasonFieldMinHasError","reasonFieldMaxHasError","goToCaseReview","router","navigate","relativeTo","activeRoute","FormBuilder","Router","ActivatedRoute","sendmeback","RefundListComponent","userLst","some","isAuthorized","isApproveTableVisible","tableApprovalHeader","tableRejectedHeader","refundService","approvalStatus","submittedRefundList","rejectStatus","rejectedRefundList","isRejectTableVisible","CardDetailsService","getCardDetails","CardDetailsComponent","cardDetailsService","cardDetails","pageTitle","PageNotFoundComponent","StatusHistoryService","getPaymentStatusesByReference","StatusHistoryComponent","statusHistoryService","statuses","NotificationService","getRefundNotification","getAddressByPostcode","postcode","ContactDetailsComponent","emailAddressForm","email","postCodeForm","manualAddressForm","addressl1","addressl2","townorcity","county","mpostcode","country","addressObj","setEditDetails","isEditOperationInRefundList","isEmailSAddressClicked","isPostcodeClicked","isManualAddressClicked","setValue","patchValue","address_line","city","postal_code","selectContactOption","isLinkedClied","finalFormSubmit","fieldCtrls","emailField","assignContactDetailsInFefundsList","assignContactDetails","emit","postcodeValidation","str","postcodeField","notificationService","refundsNotification","addressPostcodeList","isShowPickAddress","totalresults","postcodeAddress","isAddressBoxEmpty","addressLine","addressArray","ADDRESS","addressObject","POST_TOWN","LOCAL_CUSTODIAN_CODE_DESCRIPTION","POSTCODE","redirection","redirectToIssueRefund","val","isEmailEmpty","emailHasError","isPostcodeEmpty","postcodeHasError","isaddressLine1Empty","addressLine1HasError","addressLine2HasError","isTownOrCityEmpty","townOrCityHasError","isCountyEmpty","countyHasError","isMPostcodeEmpty","mpostcodeHasError","isCountryEmpty","Output","EventEmitter","PbaDetailsComponent","noop","ConsoleLoggerService","console","log","apply","CaseTransactionsService","getPaymentGroups","BulkScaningPaymentService","getBSPaymentsByCCD","getBSPaymentsByDCN","dcn","postBSAllocatePayment","paymentRef","postBSPaymentStrategic","postBSWoPGStrategic","patchBSChangeStatus","calculateOutStandingAmount","feesTotal","paymentsTotal","remissionsTotal","toUpperCase","amount","hwf_amount","removeUnwantedString","input","replaceText","CaseTransactionsComponent","serviceRequest","paymentView","payment_group_reference","goToPayementView","isGrpOutstandingAmtPositive","CASETYPE","EXC_REFERENCE","excReference","takePayment","serviceRequestValue","isBulkScanEnable","toLocaleLowerCase","isStrategicFixEnable","ISSFENABLE","caseTransactionsService","paymentGroups","isAnyFeeGroupAvilable","calculateAmounts","calculateOrderFeesAmounts","totalRefundAmount","calculateRefundAmount","setDefaults","goToOrderViewDetailSection","checkForExceptionRecord","totalPayments","totalRemissions","totalNonOffPayments","totalFees","getAllocationStatus","bulkScaningPaymentService","recordData","exception_record_reference","ccd_reference","isExceptionRecord","case_reference","isFeeOverPaymentExist_1","resetOrderVariables","overPaymentAmount","service_request_status","orderStatus","orderAddBtnEnable","orderRefId","orderTotalFees","orderReferenceObj","x","redirectToOrderFeeSearchPage","orderef","nonOffLinePayment","a","b","date_created","amount_due","clAmountDue","allocationLen","nonPayments","allPayments","remisison","totalRefundAmount_1","isFeeAmountZero_1","isNewPaymentGroup_1","isFeeRecordsExist","grpOutstandingAmount","index","isHistoricGroupAvailable","getGroupOutstandingAmount","redirectToFeeSearchPage","navigateByUrl","chkForAddRemission","redirectToremissionPage","redirectToReportsPage","loadFeeSummaryPage","selectedUnprocessedFeeEvent","unprocessedRecordId","isUnprocessedRecordSelected","getUnprocessedFeeCount","unProcessedRecordCount","unprocessedRecordCount","calculateAmountDue","confirmRemoveFee","isRemoveBtnDisabled","cancelRemoval","removeFee","success","isCheckAmountdueExist","amountDue","chkIssueRefundBtnEnable","chkForPBAPayment","check4AllowedRoles2AccessRefund","_b","_c","allowFurtherAccessAfter4Days","isPBA","chkIsRefundRemissionBtnEnable","isRefundRemissionBtnEnable","loadPBAAccountPage","pbaPayOrderRef","isAddRemissionEnable","orderRemissionDetails","ispaymentGroupApisuccess","isAddRemissionBtnEnabled","isEligible4PBAPayment","currentDate","Date","role","indexOf","check4AllowedRoles2AccessPBApayment","tmp4DayAgo","setDate","getDate","PaymentToPayhubRequest","currency","description","provider","toFixed","case_type","PayhubAntennaRequest","BS_ENABLE_FLAG","FeeSummaryComponent","bsPaymentDcnNumber","platForm","features","result","feature","uid","enable","getUnassignedPaymentlist","getPaymentGroup","unassignedPayments","service","responsible_service_id","upPaymentErrorMessage","currentFee","isPaymentExist","isRemissionsExist","totalAfterRemission","isFeeAmountZero","outStandingAmount","partUrl","cancelRemission","page","antennaReqBody","isBackButtonEnable","href","goToAllocatePage","Location","ErrorBannerComponent","UnidentifiedPaymentsRequest","unidentified_reason","payment_allocation_status","name","AllocatePaymentRequest","unAllocatedPayment","exceptionRecord","allocatedRequest","banked_date","date_banked","exception_record","document_control_number","dcn_reference","external_provider","giro_slip_no","bgc_reference","payer_name","payment_channel","payment_status","payment_method","payment_allocation_dto","MarkUnidentifiedPaymentComponent","getUnassignedPayment","markPaymentUnidentifiedForm","investicationDetail","unassignedRecord","siteID","beCcdNumber","beExceptionNumber","exceptionReference","ccdReference","trimUnderscore","saveAndContinue","investicationField","formerror","investigationComment","isInvesticationDetailEmpty","investicationDetailHasError","investicationDetailMinHasError","investicationDetailMaxHasError","confirmPayments","postStrategicBody","res1","res2","response2","reqBody","res3","gotoCasetransationPage","user_id","cancelMarkUnidentifiedPayments","UnsolicitedPaymentsRequest","responsible_office","responsible_person","email_id","receiving_office","receiving_email_address","sending_email_address","MarkUnsolicitedPaymentComponent","siteids","isContinueButtondisabled","siteIDList","scrollTo","markPaymentUnsolicitedForm","responsibleOffice","responsiblePerson","emailId","selectedSiteId","reasonField","officeIdField","reasonHasError","reasonMinHasError","reasonMaxHasError","isResponsibleOfficeEmpty","responsibleOfficeHasError","cancelMarkUnsolicitedPayments","checkingFormValue","formFields","valueExists","hasOwnProperty","selectchange","target","selectedSiteName","selectedIndex","text","UnprocessedPaymentsComponent","isStFixEnable","FEE_RECORDS_EXISTS","setValuesForUnassignedRecord","unassignedRecordList","unassignedRecordListLength","serviceId","isExceptionCase","unprocessedPaymentSelectEvent","formatUnassignedRecordId","ID","recordId","loadUnsolicitedPage","selectedRecordReference","validateButtons","resetButtons","isAllocateToExistingFeebtnEnabled","isMarkAsUnidentifiedbtnEnabled","isAllocatedToNewFeebtnEnabled","PAYMENTREF","IS_OS_AMT_AVAILABLE","unprocessedPaymentUnSelectEvent","showDetailRow","unassignedRecordSelectedList","isRecordExist","ProcessedPaymentsComponent","redirectToPaymentViewPage","IAllocationPaymentsRequest","explanation","userName","user_name","AllocatePaymentsComponent","overUnderPaymentForm","moreDetails","fstCon","scndCn","selectedPaymentGroup","gotoSummaryPage","cancelAllocatePayment","confirmAllocatePayement","enCookieUserName","cookieUserName","decodeURIComponent","fullName","paymentDetailsField","paymentFormError","isEmptyCondtion","paymentReason","paymentExplanation","isOtherOptionSelected","isRemainingAmountGtZero","isRemainingAmountLtZero","userNameField","otherPaymentExplanation","finalServiceCall","paymentReasonHasError","paymentExplanationHasError","isPaymentDetailsEmpty","isPaymentDetailsInvalid","paymentDetailsMinHasError","paymentDetailsMaxHasError","isUserNameEmpty","isUserNameInvalid","GroupOutstandingAmount","remainingToBeAssigned","isMoreDetailsBoxHide","reset","paymentSectionLabel","feedbackUrlLabel","remainingAmount","afterFeeAllocateOutstanding","amountForAllocation","selectRadioButton","key","OrderListSelectEvent","reasonList","overPayment","hwfReward","wrongFee","notIssueCase","otherDeduction","shortFall","helpWithFee","other","explanationList","referRefund","noRefund","noCase","holdCase","heldCase","refund","duplicate","humanerror","caseWithdrawn","AddRemissionRequest","hwf_reference","AddRetroRemissionRequest","PostIssueRefundRetroRemission","remissionReference","contactDeatils","AddRemissionComponent","default","pattern1","pattern2","remessionPayment","isPaymentSuccess","option","remissionForm","remissionCode","refundReason","refundDDReason","feeAmount","feesList","array","onlySelf","refundPaymentReference","refundFeesList","refundReasons","recently_used","commonRefundReasons","sort","localeCompare","changeRefundReason","creds","selected","noneSelected","item","querySelectorAll","el","classList","remove","check_en","v1","AppAmt","Volume","ele","getElementById","formArray","checked","at","removeAttribute","setAttribute","resetRemissionForm","remissionctrls","isRemissionLessThanFee","setErrors","confirmRemission","newNetAmount","remissionAmount","trim","LDUrl","routeReuseStrategy","shouldReuseRoute","onSameUrlNavigation","isRemissionCodeEmpty","remissionCodeHasError","isAmountEmpty","amountHasError","isRemissionLessThanFeeError","addRemissionCode","isFromCheckAnsPage","gotoAddRetroRemissionCodePage","iscancelClicked","refundListAmount","isFromRefundStatusPage","refundListReason","selectedRefundReason","selectedValue","gotoCheckRetroRemissionPage","gotoAmountRetroRemission","gotoProcessRetroRemissionPage","gotoProcessRetroRemission","confirmRetroRemission","retroRemission","remissionamt","isRemissionApplied","remission_reference","gotoIssueRefundConfirmation","reduce","c","refundHasError","displayRefundReason","gotoIssueRefundPage","gotoIssuePage","checkboxs","getElementsByTagName","quantity","amountToRefund","apportionAmount","j","fullRefund","elementId","getErrorClass","quantityUpdated","refundAmtForFeeVolumes","innerText","allowedRefundAmount","refundFees","calAmtToRefund","amtToRefund","gotoContactDetailsPage","add","changeIssueRefundReason","confirmIssueRefund","map","gotoRefundReasonPage","localStorage","setItem","isRefundReasonsSelected","showReasonText","reasonLength","gotoPartialFeeRefundScreen","gotoServiceRequestPage","sendOrderDetail","sendOrderRef","gotoRemissionSuccess","gotoCasetransationPageCancelBtnClicked","changeRefundAmount","getFormattedCurrency","concat","hasErrors","class","Array","CcdHyphensPipe","transform","match","Pipe","CapitalizePipe","slice","keyValuePipe","keys","SanitizeHtmlPipe","sanitizer","bypassSecurityTrustHtml","DomSanitizer","XlFileService","exportAsExcelFile","json","excelFileName","worksheet","XLSX.utils","json_to_sheet","header","setDataLossReportHeaders","setUnprocessedReportHeaders","setProcessedUnallocatedReportHeaders","setPaymentFailureReportHeaders","setShortFallReportHeaders","autoFitColumns","excelBuffer","XLSX.write","Sheets","SheetNames","bookType","saveAsExcelFile","objectMaxLength","ColWidth","values","width","A1","v","B1","C1","D1","E1","F1","G1","H1","I1","J1","K1","L1","M1","N1","buffer","fileName","Blob","FileSaver.saveAs","ReportsComponent","fromValidation","getToday","toISOString","getSelectedFromDate","validateDates","reportsForm","selectedStartDate","tranformDate","selectedEndDate","isDateRangeMoreThanWeek","isDateRangeMoreThanMonth","isDateRangeBetnWeek","isDateBetwnMonth","isStartDateLesthanEndDate","selectedreport","downloadReport","dataLossRptDefault","isDownLoadButtondisabled","loss_resp","payment_asset_dcn","env_ref","env_item","resp_service_id","resp_service_name","bgc_batch","unProcessedRptDefault","exception_ref","ccd_ref","processedUnallocated","allocation_reason","ccd_exception_ref","ccd_case_ref","updated_by","shortFallsRptDefault","surplus_shortfall","balance","payment_amount","ccd_case_reference","ccd_exception_reference","processed_date","selectedReportName","applyDateFormat","substr","convertToFloatValue","Op","xlFileService","getFileName","toLowerCase","errorContent","loc","stDt","formatDate","enDt","now","timestamp","getTwodigit","getHours","getMinutes","getSeconds","getCamelCaseString","strDate","parts","fmt","multiDateFormater","dateStr","date","amt","Number","parseFloat","TableComponent","STATUS","isApprovalFlow","DATASOURCE","dataSource","MatTableDataSource","actualcount","r","_a","user_full_name","serviceLst","service_type","ngAfterViewInit","paginator","cdRef","applyFilter","filterValue","goToRefundProcessComponent","refundData","goToRefundViewComponent","isCallFromRefundList","ViewChild","MatPaginator","MatSort","displayedColumns","IPutNotificationRequest","contactDetails","recipient_email_address","recipient_postal_address","IResubmitRefundRequest","refund_fees","RefundStatusComponent","refundlist","isEliginbleToAccess","refundStatusForm","getRefundsNotification","getRefundsStatusHistoryList","isProcessRefund","refundButtonState","refund_status","statusHistoryList","refundStatusHistories","status_history_dto_list","isLastUpdatedByCurrentUser","last_updated_by_current_user","notificationList","goToRefundView","gotoReviewDetailsPage","gotoReviewAndReSubmitPage","oldRefundReason","changedAmount","refundreason","notes","isRefundBtnDisabled","gotoAmountPage","goToReviewAndSubmitView","getRefundListReason","refundCode","getRefundAmount","getRefundFees","fee_id","gotoReviewRefundConfirmationPage","resubmitRequest","gotoEditAddressDetails","isEditDetailsClicked","addressDetails","getContactDetailsForRefundList","gotoEditDetailsPage","submitEditDetail","isResendOperationSuccess","resendRequest","putResend","Event","isEditAddressDeatilsClicked","ServiceRequestComponent","isServiceRequest","goToServiceRquestComponent","paymentGroupList","goToPaymentViewComp","IserviceRequestCardPayment","language","IserviceRequestPbaPayment","account_number","customer_reference","orgName","organisation_name","PbaPaymentComponent","isGetPBAAccountSucceed","organisationEntityResponse","pbaAccountList","paymentAccount","selectpbaaccount","currentTarget","isPBADropdownSelected","selectedPbaAccount","pbaAccountRef","isPbaAccountSelected","isInSufficiantFund","isPBAAccountNotExist","isPBAServerError","isPBAAccountPaymentSuccess","pbaAccountrPaymentResult","isPBAAccountHold","isCardPaymentSelected","cardPayment","isCardPaymentSuccess","paymentUrl","next_url","selectPaymentMethod","NgModule","imports","CommonModule","HttpClientModule","FormsModule","ReactiveFormsModule","MatTableModule","MatPaginatorModule","MatSortModule","MatFormFieldModule","MatInputModule","declarations","exports","providers","provide","useClass","PaymentLibModule"],"mappings":"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"}
|