@hmcts/ccpay-web-component 5.0.2-beta2 → 5.0.2-beta6

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.
Files changed (77) hide show
  1. package/bundles/hmcts-ccpay-web-component.umd.js +1531 -260
  2. package/bundles/hmcts-ccpay-web-component.umd.js.map +1 -1
  3. package/bundles/hmcts-ccpay-web-component.umd.min.js +1 -1
  4. package/bundles/hmcts-ccpay-web-component.umd.min.js.map +1 -1
  5. package/esm2015/hmcts-ccpay-web-component.js +33 -31
  6. package/esm2015/lib/components/add-remission/add-remission.component.js +545 -41
  7. package/esm2015/lib/components/case-transactions/case-transactions.component.js +6 -2
  8. package/esm2015/lib/components/contact-details/contact-details.component.js +406 -0
  9. package/esm2015/lib/components/payment-view/payment-view.component.js +69 -5
  10. package/esm2015/lib/components/process-refund/process-refund.component.js +31 -3
  11. package/esm2015/lib/components/refund-status/refund-status.component.js +149 -27
  12. package/esm2015/lib/components/service-request/service-request.component.js +7 -5
  13. package/esm2015/lib/components/table/table.component.js +24 -9
  14. package/esm2015/lib/interfaces/IFee.js +3 -1
  15. package/esm2015/lib/interfaces/IPutNotificationRequest.js +25 -0
  16. package/esm2015/lib/interfaces/IRefundContactDetails.js +25 -0
  17. package/esm2015/lib/interfaces/IRefundList.js +5 -1
  18. package/esm2015/lib/interfaces/IRefundsNotifications.js +21 -0
  19. package/esm2015/lib/interfaces/IRemission.js +3 -1
  20. package/esm2015/lib/interfaces/PostIssueRefundRetroRemission.js +6 -2
  21. package/esm2015/lib/interfaces/PostRefundRetroRemission.js +18 -2
  22. package/esm2015/lib/payment-lib.component.js +5 -1
  23. package/esm2015/lib/payment-lib.module.js +3 -1
  24. package/esm2015/lib/payment-lib.service.js +16 -1
  25. package/esm2015/lib/services/notification/notification.service.js +85 -0
  26. package/esm2015/lib/services/refunds/refunds.service.js +11 -2
  27. package/esm2015/lib/services/shared/httpclient/webcomponent.http.client.js +2 -2
  28. package/esm5/hmcts-ccpay-web-component.js +33 -31
  29. package/esm5/lib/components/add-remission/add-remission.component.js +662 -46
  30. package/esm5/lib/components/case-transactions/case-transactions.component.js +6 -2
  31. package/esm5/lib/components/contact-details/contact-details.component.js +431 -0
  32. package/esm5/lib/components/payment-view/payment-view.component.js +92 -5
  33. package/esm5/lib/components/process-refund/process-refund.component.js +30 -3
  34. package/esm5/lib/components/refund-status/refund-status.component.js +177 -25
  35. package/esm5/lib/components/service-request/service-request.component.js +8 -5
  36. package/esm5/lib/components/table/table.component.js +27 -9
  37. package/esm5/lib/interfaces/IFee.js +3 -1
  38. package/esm5/lib/interfaces/IPutNotificationRequest.js +23 -0
  39. package/esm5/lib/interfaces/IRefundContactDetails.js +25 -0
  40. package/esm5/lib/interfaces/IRefundList.js +5 -1
  41. package/esm5/lib/interfaces/IRefundsNotifications.js +21 -0
  42. package/esm5/lib/interfaces/IRemission.js +3 -1
  43. package/esm5/lib/interfaces/PostIssueRefundRetroRemission.js +5 -2
  44. package/esm5/lib/interfaces/PostRefundRetroRemission.js +14 -2
  45. package/esm5/lib/payment-lib.component.js +5 -1
  46. package/esm5/lib/payment-lib.module.js +3 -1
  47. package/esm5/lib/payment-lib.service.js +23 -1
  48. package/esm5/lib/services/notification/notification.service.js +89 -0
  49. package/esm5/lib/services/refunds/refunds.service.js +17 -2
  50. package/esm5/lib/services/shared/httpclient/webcomponent.http.client.js +2 -2
  51. package/fesm2015/hmcts-ccpay-web-component.js +1184 -89
  52. package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
  53. package/fesm5/hmcts-ccpay-web-component.js +1523 -228
  54. package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
  55. package/hmcts-ccpay-web-component.d.ts +32 -30
  56. package/hmcts-ccpay-web-component.metadata.json +1 -1
  57. package/lib/components/add-remission/add-remission.component.d.ts +37 -2
  58. package/lib/components/case-transactions/case-transactions.component.d.ts +1 -0
  59. package/lib/components/contact-details/contact-details.component.d.ts +47 -0
  60. package/lib/components/payment-view/payment-view.component.d.ts +14 -1
  61. package/lib/components/process-refund/process-refund.component.d.ts +5 -1
  62. package/lib/components/refund-status/refund-status.component.d.ts +20 -5
  63. package/lib/components/service-request/service-request.component.d.ts +1 -1
  64. package/lib/components/table/table.component.d.ts +1 -0
  65. package/lib/interfaces/IFee.d.ts +1 -0
  66. package/lib/interfaces/IPutNotificationRequest.d.ts +6 -0
  67. package/lib/interfaces/IRefundContactDetails.d.ts +9 -0
  68. package/lib/interfaces/IRefundList.d.ts +3 -0
  69. package/lib/interfaces/IRefundsNotifications.d.ts +16 -0
  70. package/lib/interfaces/IRemission.d.ts +1 -0
  71. package/lib/interfaces/PostIssueRefundRetroRemission.d.ts +3 -1
  72. package/lib/interfaces/PostRefundRetroRemission.d.ts +6 -1
  73. package/lib/payment-lib.component.d.ts +1 -0
  74. package/lib/payment-lib.service.d.ts +3 -0
  75. package/lib/services/notification/notification.service.d.ts +15 -0
  76. package/lib/services/refunds/refunds.service.d.ts +2 -0
  77. 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 [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'refundstatuslist'\"> </ccpay-refund-status >\n <ccpay-payment-view [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'payment-view'\"\n [isTurnOff]=\"ISTURNOFF\" [isTakePayment]=\"TAKEPAYMENT\" [caseType]=\"CASETYPE\"\n [isOldPcipalOff]=\"ISOLDPCIPALOFF\"\n [isNewPcipalOff]=\"ISNEWPCIPALOFF\"></ccpay-payment-view>\n\n <ccpay-process-refund *ngIf=\"viewName === 'process-refund'\"\n [refundReference]=\"refundReference\"\n [refundlistsource]=\"refundlistsource\"\n ></ccpay-process-refund>\n <ccpay-pba-payment *ngIf=\"viewName === 'pba-payment'\"\n [pbaPayOrderRef]=\"pbaPayOrderRef\"\n ></ccpay-pba-payment>\n <ccpay-case-transactions [isTakePayment]=\"isTakePayment\" [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'case-transactions'\"></ccpay-case-transactions>\n <app-mark-unidentified-payment *ngIf=\"viewName === 'unidentifiedPage'\"\n [caseType]=\"CASETYPE\"></app-mark-unidentified-payment>\n <app-mark-unsolicited-payment *ngIf=\"viewName === 'unsolicitedPage'\"\n [caseType]=\"CASETYPE\"></app-mark-unsolicited-payment>\n <app-allocate-payments *ngIf=\"viewName === 'allocate-payments'\"\n [isTurnOff]=\"ISTURNOFF\"\n [caseType]=\"CASETYPE\"\n ></app-allocate-payments>\n <ccpay-fee-summary *ngIf=\"viewName === 'fee-summary'\"\n [ccdCaseNumber]=\"CCD_CASE_NUMBER\" \n [paymentGroupRef]=\"paymentGroupReference\"\n [isTurnOff]=\"ISTURNOFF\"\n [caseType]=\"CASETYPE\"\n [isOldPcipalOff]=\"ISOLDPCIPALOFF\"\n [isNewPcipalOff]=\"ISNEWPCIPALOFF\"\n ></ccpay-fee-summary>\n <ccpay-reports *ngIf=\"viewName === 'reports'\"></ccpay-reports>\n `\n})\n\nexport class PaymentLibComponent implements OnInit {\n @Input('API_ROOT') API_ROOT: string;\n @Input('BULKSCAN_API_ROOT') BULKSCAN_API_ROOT: string;\n @Input('REFUNDS_API_ROOT') REFUNDS_API_ROOT: string;\n @Input('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('rootUrl') rootUrl: boolean;\n @Input('REFUNDLIST') REFUNDLIST: string;\n @Input('USERID') USERID: string;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: any[];\n @Input('LOGGEDINUSEREMAIL') LOGGEDINUSEREMAIL: string;\n @Input('isFromServiceRequestPage') isFromServiceRequestPage: boolean;\n\n paymentMethod: string;\n bspaymentdcn: string;\n unProcessedPaymentServiceId: string = null;\n paymentGroupReference: string;\n paymentReference: string;\n refundReference: string;\n refundlistsource: any;\n viewName: string;\n isTurnOff: boolean;\n caseType: string;\n isOldPcipalOff: boolean;\n isNewPcipalOff: boolean;\n unProcessedPayment: IBSPayments = null;\n isRefundStatusView: boolean;\n isRedirectFromCaseTransactionPage: string;\n isCallFromRefundList: boolean;\n isFromRefundStatusPage: boolean;\n iscancelClicked : boolean;\n isFromPaymentDetailPage: boolean;\n pbaPayOrderRef: IPayment;\n isTakePayment: boolean;\n\n orderDetail: any[];\n orderRef: string;\n orderStatus: string;\n orderParty: string;\n orderCreated: Date;\n orderCCDEvent: string;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n orderFeesTotal: number = 0.00;\n orderRemissionTotal: number = 0.00;\n orderTotalPayments: number = 0.00;\n orderPendingPayments: number = 0.00;\n\n constructor(private paymentLibService: PaymentLibService,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) { }\n ngAfterContentChecked(): void {\n this.cd.detectChanges();\n } \n\n\n ngOnInit() {\n this.paymentLibService.setApiRootUrl(this.API_ROOT);\n this.paymentLibService.setBulkScanApiRootUrl(this.BULKSCAN_API_ROOT);\n this.paymentLibService.setRefundndsApiRootUrl(this.REFUNDS_API_ROOT);\n this.paymentLibService.setCardPaymentReturnUrl(this.CARDPAYMENTRETURNURL);\n\n if(this.LOGGEDINUSERROLES.length > 0) {\n this.OrderslistService.setUserRolesList(this.LOGGEDINUSERROLES);\n }\n if (this.PAYMENT_GROUP_REF) {\n this.paymentGroupReference = this.PAYMENT_GROUP_REF;\n }\n if (this.DCN_NUMBER) {\n this.bspaymentdcn = this.DCN_NUMBER;\n }\n if (this.REFUNDLIST === \"true\") {\n this.VIEW = 'refund-list';\n this.viewName = this.VIEW;\n }\n if (this.VIEW === 'fee-summary') {\n this.viewName = 'fee-summary';\n } else if (this.VIEW !== 'reports' && this.VIEW !== 'refund-list') {\n this.viewName = 'case-transactions';\n } else {\n this.viewName = this.VIEW;\n }\n\n if (this.isTakePayment) {\n this.TAKEPAYMENT = true;\n }\n }\n}\n","import { Injectable } from '@angular/core';\nimport { _throw } from 'rxjs/observable/throw';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { HttpErrorResponse } from '@angular/common/http';\nimport { stringify } from '@angular/core/src/util';\n\n@Injectable({\n providedIn: 'root'\n})\n\n\nexport class ErrorHandlerService {\n\n constructor() { }\n\n\n handleError(err: HttpErrorResponse): Observable<any> {\n let errorMessage: string;\n if (err.error instanceof Error) {\n // A client-side or network error occurred.\n errorMessage = `An error occurred: ${err.error.message}`;\n } else {\n // The backend returned an unsuccessful response code.\n if (err.status === 404) {\n\n if (typeof err.error === 'string' && err.error !== undefined) {\n \n if(err.error.length > 60) {\n if (JSON.parse(err.error).statusCode !== undefined && JSON.parse(err.error).statusCode === 500)\n {\n errorMessage = 'Internal server error';\n } else {\n if(err.error.length > 60) {\n errorMessage = JSON.parse(err.error).error;\n } else {\n errorMessage = err.error;\n }\n \n }\n } else {\n errorMessage = err.error;\n }\n } else {\n errorMessage = JSON.parse(err.error).error;\n }\n \n }\n else if (err.status === 500) {\n errorMessage = 'Internal server error';\n } else if (err.error.messsage === undefined) {\n if( typeof err.error === 'object') {\n errorMessage = JSON.parse(JSON.stringify(err.error)).error;\n } else {\n if (typeof err.error === 'string' && err.error !== undefined) {\n \n if(err.error.length > 60) {\n if (JSON.parse(err.error).statusCode !== undefined && JSON.parse(err.error).statusCode === 500)\n {\n errorMessage = 'Internal server error';\n } else {\n if(err.error.length > 60) {\n errorMessage = JSON.parse(err.error).error;\n } else {\n errorMessage = err.error;\n }\n \n }\n } else {\n errorMessage = err.error;\n }\n } else {\n errorMessage = JSON.parse(err.error).error;\n }\n \n }\n \n } else {\n if (err.error.message !== undefined) {\n errorMessage = `${err.error.message}`;\n } else {\n errorMessage = `${err.error}`;\n }\n \n }\n }\n return _throw(errorMessage);\n }\n\n\n getServerErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","import { Injectable } from '@angular/core';\n\nconst noop = (): any => undefined;\n\nexport abstract class Logger {\n\n info: any;\n warn: any;\n error: any;\n}\n\n@Injectable({\n providedIn: 'root'\n})\nexport class LoggerService implements Logger {\n\n info: any;\n warn: any;\n error: any;\n\n invokeConsoleMethod(type: string, args?: any): void {}\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\n\nimport { Observable } from 'rxjs/internal/Observable';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { IPayments } from '../../interfaces/IPayments';\nimport { catchError } from 'rxjs/operators';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PaymentListService {\n payments: IPayments;\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n\n getPaymentByCcdCaseNumber(ccdCaseNumber: string, paymentMethod: string): Observable<IPayments> {\n this.logger.info('Payment-list-service getPaymentByCcdCaseNumber for: ', ccdCaseNumber);\n\n return this.http.get<IPayments>(`${this.paymentLibService.API_ROOT}/cases/${ccdCaseNumber}/payments`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import {Component, OnInit} from '@angular/core';\n\nimport {PaymentListService} from '../../services/payment-list/payment-list.service';\nimport {IPayments} from '../../interfaces/IPayments';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport {IStatusHistory} from '../../interfaces/IStatusHistory';\n\n@Component({\n selector: 'ccpay-payment-list',\n templateUrl: './payment-list.component.html',\n styleUrls: ['./payment-list.component.css']\n})\nexport class PaymentListComponent implements OnInit {\n payments: IPayments;\n errorMessage: string;\n code: string;\n\n constructor(private paymentListService: PaymentListService,\n private paymentLibComponent: PaymentLibComponent) {\n }\n\n ngOnInit() {\n this.paymentListService.getPaymentByCcdCaseNumber(this.paymentLibComponent.CCD_CASE_NUMBER, this.paymentLibComponent.PAYMENT_METHOD)\n .subscribe(\n payments => this.payments = payments,\n (error: any) => this.errorMessage = <any>error\n );\n }\n\n loadPaymentViewComponent(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.paymentLibComponent.paymentMethod = paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n}\n","/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Meta } from '@angular/platform-browser';\nimport { Observable } from 'rxjs';\n\n@Injectable()\nexport class WebComponentHttpClient {\n constructor(\n private http: HttpClient,\n private meta: Meta\n ) { }\n\n post(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.post(url, body, opts);\n }\n\n put(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.put(url, body, opts);\n }\n\n get(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.get(url, opts);\n }\n\n delete(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.delete(url, opts);\n }\n \n patch(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.patch(url, body, opts);\n }\n\n addHeaders(options: any): any {\n const csrfToken = this.meta.getTag('name=csrf-token');\n const headers = {};\n \n if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n if (csrfToken === null) {\n if( document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')) !== undefined ) {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')).split('=')[1]; \n } else {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith(' XSRF-TOKEN')).split('=')[1];\n }\n } else {\n headers['CSRF-Token'] = csrfToken.content;\n }\n options.headers = new HttpHeaders(headers);\n options.responseType = 'text';\n return options;\n }\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { v4 as uuidv4 } from 'uuid';\nimport {IPayment} from '../../interfaces/IPayment';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { catchError } from 'rxjs/operators';\nimport { LoggerService } from '../shared/logger/logger.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { PayhubAntennaRequest } from '../../interfaces/PayhubAntennaRequest';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { Meta } from '@angular/platform-browser';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { IAllocationPaymentsRequest } from '../../interfaces/IAllocationPaymentsRequest';\nimport {IOrderReferenceFee} from '../../interfaces/IOrderReferenceFee';\nimport { BehaviorSubject } from 'rxjs';\nimport { IserviceRequestPbaPayment } from '../../interfaces/IserviceRequestPbaPayment';\nimport { IserviceRequestCardPayment } from '../../interfaces/IserviceRequestCardPayment';\nimport { RefundsRequest } from '../../interfaces/RefundsRequest';\nimport { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\nimport { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';\nimport { error } from '@angular/compiler/src/util';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PaymentViewService {\n private ordersList = <BehaviorSubject<IOrderReferenceFee[]>>new BehaviorSubject([]);\n\n private meta: Meta;\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getPaymentDetails(paymentReference: string, paymentMethod: string): Observable<IPayment> {\n this.logger.info('Payment-view-service getPaymentDetails for: ', paymentReference);\n\n return this.http.get<IPayment>(paymentMethod === 'card' || paymentMethod === 'cash' || paymentMethod === 'cheque' || paymentMethod === 'postal order' ?\n `${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}` :\n `${this.paymentLibService.API_ROOT}/credit-account-payments/${paymentReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getPaymentGroupDetails(paymentGroupReference: string): Observable<IPaymentGroup> {\n this.logger.info('Payment-view-service getPaymentGroupDetails for: ', paymentGroupReference);\n\n return this.http.get<IPayment>(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getApportionPaymentDetails(paymentReference: string): Observable<IPaymentGroup> {\n this.logger.info('Payment-view-service getPaymentGroupDetails for: ', paymentReference);\n\n return this.http.get<IPayment>(`${this.paymentLibService.API_ROOT}/payment-groups/fee-pay-apportion/${paymentReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getPBAaccountDetails(): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/pba-accounts`;\n return this.http.get(url, { withCredentials: true }).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postWays2PayCardPayment(serviceRef: string, body: IserviceRequestCardPayment): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/service-request/${serviceRef}/card-payments`;\n const rurl = this.paymentLibService.CARDPAYMENTRETURNURL.replace('.prod', '');\n body['return-url'] = `${rurl}/payment`;\n return this.https.post(url, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n \n postPBAaccountPayment(serviceRef: string, body: IserviceRequestPbaPayment): Observable<any> {\n let randomKey = 'idam-key-' + Math.random().toString().split('.').join('-');\n body['idempotency_key'] = randomKey; \n const url = `${this.paymentLibService.API_ROOT}/service-request/${serviceRef}/pba-payments`;\n return this.https.post(url, body);\n }\n\n postBSPayments(body: AllocatePaymentRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/bulk-scan-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSUnidentifiedPayments(body: UnidentifiedPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSUnsolicitedPayments(body: UnsolicitedPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSAllocationPayments(body: IAllocationPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postPaymentGroupWithRemissions(paymentGroupReference: string, feeId: number, body: AddRemissionRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}/fees/${feeId}/remissions`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n deleteFeeFromPaymentGroup(feeId: number): Observable<any> {\n this.logger.info('Payment-view-service deleteFeeFromPaymentGroup for: ', feeId);\n return this.https.delete(`${this.paymentLibService.API_ROOT}/fees/${feeId}`).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postPaymentToPayHub(body: PaymentToPayhubRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/card-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postPaymentAntennaToPayHub(body: PayhubAntennaRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/telephony-card-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n downloadSelectedReport(reportName: string, startDate: string, endDate:string): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/report/data?date_from=${startDate}&date_to=${endDate}&report_type=${reportName}`;\n return this.https.get(url, { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getBSfeature(): Observable<any> {\n return this.https.get('api/payment-history/bulk-scan-feature', { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getSiteID(): Observable<any> {\n return this.https.get('api/payment-history/refdata/legacy-sites', { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getPartyDetails(caseNumber: string): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/case-payment-orders?case_ids=${caseNumber}`;\n return this.https.get(url, { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n \n setOrdersList(orderLevelFees: IOrderReferenceFee[]): void {\n this.ordersList.next(Object.assign([], orderLevelFees));\n}\n getOrdersList() {\n return this.ordersList;\n }\n\n //issue refund\n postRefundsReason(body: PostRefundRetroRemission): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/refund-for-payment`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n // retro remissions\n postPaymentGroupWithRetroRemissions(paymentGroupReference: string, feeId: number, body: AddRetroRemissionRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}/fees/${feeId}/retro-remission`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postRefundRetroRemission(body:PostIssueRefundRetroRemission) {\n return this.https.post(`${this.paymentLibService.API_ROOT}/refund-retro-remission`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\nimport { ChangeDetectorRef } from '@angular/core';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-payment-view',\n templateUrl: './payment-view.component.html',\n styleUrls: ['./payment-view.component.css']\n})\nexport class PaymentViewComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() isTakePayment: boolean;\n @Input() caseType: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() isOldPcipalOff: boolean;\n @Input() orderRef: string;\n @Input() orderStatus: string;\n @Input() orderTotalPayments: number;\n @Input() payment: IPayment;\n @Input() LOGGEDINUSERROLES: string[];\n @Input() orderParty: string;\n @Input() orderCreated: Date;\n @Input() orderCCDEvent: string;\n @Input() orderFeesTotal: number;\n @Input() orderRemissionTotal: number;\n @Input() orderDetail: any[];\n\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n ccdCaseNumber: string;\n selectedOption: string;\n dcnNumber: string;\n isStatusAllocated: boolean;\n isRemissionsMatch: boolean;\n feeId: IFee;\n viewStatus: string;\n isRefundRemission: boolean = false;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n remissions: IRemission[] = [];\n remissionFeeAmt: number;\n isRefundRemissionBtnEnable: boolean;\n serviceReference: string;\n isFromServiceRequestPage: boolean;\n isFromPaymentDetailPage: boolean;\n\n constructor(private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) {\n }\n\n ngAfterContentChecked(): void {\n this.cd.detectChanges();\n } \n\n ngOnInit() {\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION;\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.serviceReference = this.paymentLibComponent.paymentGroupReference;\n this.viewStatus = 'paymentview';\n this.paymentViewService.getApportionPaymentDetails(this.paymentLibComponent.paymentReference).subscribe(\n paymentGroup => {\n let fees = [];\n paymentGroup.fees.forEach(fee => {\n this.isRemissionsMatch = false;\n\n paymentGroup.remissions.forEach(rem => {\n if (rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n if (!this.isRemissionsMatch) {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n \n },\n (error: any) => this.errorMessage = error\n );\n\n }\n\n get isCardPayment(): boolean {\n return this.paymentGroup.payments[0].method === 'card';\n }\n\n get isTelephonyPayment(): boolean {\n return this.paymentGroup.payments[0].channel === 'telephony';\n }\n\n public goToPaymentList(): void {\n this.paymentLibComponent.viewName = 'payment-list';\n }\n\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n\n if (!this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.resetOrderData();\n } else {\n this.OrderslistService.getorderRefs().subscribe((data) => this.orderRef = data);\n this.OrderslistService.getorderCCDEvents().subscribe((data) => this.orderCCDEvent = data);\n this.OrderslistService.getorderCreateds().subscribe((data) => this.orderCreated = data);\n this.OrderslistService.getorderDetail().subscribe((data) => this.orderDetail = data);\n this.OrderslistService.getorderPartys().subscribe((data) => this.orderParty = data);\n this.OrderslistService.getorderRemissionTotals().subscribe((data) => this.orderRemissionTotal = data);\n this.OrderslistService.getorderFeesTotals().subscribe((data) => this.orderFeesTotal = data);\n this.OrderslistService.getoorderTotalPaymentss().subscribe((data) => this.orderTotalPayments = data);\n this.viewStatus = 'order-full-view';\n }\n \n }\n\n addRemission(fee: IFee) {\n if(this.chkForAddRemission(fee.code)) {\n this.feeId = fee;\n this.paymentViewService.getApportionPaymentDetails(this.paymentGroup.payments[0].reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n this.paymentLibComponent.isFromPaymentDetailPage = true;\n this.viewStatus = 'addremission';\n this.isRefundRemission = true;\n this.cd.detectChanges();\n },\n (error: any) => this.errorMessage = error\n );\n }\n }\n\n checkForFees(paymentGroup: any) {\n if(paymentGroup !== null && paymentGroup !== undefined)\n {\n if (paymentGroup.fees !== null && paymentGroup.fees !== undefined) {\n return true;\n }\n \n }\n return false;\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n if(this.chkIsRefundRemissionBtnEnable()) {\n this.payment = payment;\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.payment.reference));\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n this.viewStatus = 'addrefundforremission';\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n if (this.paymentGroup !== null && this.paymentGroup !== undefined) {\n this.paymentGroup.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n issueRefund(paymentgrp: IPaymentGroup) {\n if (paymentgrp !== null && paymentgrp !== undefined) {\n if(this.chkIssueRefundBtnEnable(paymentgrp.payments[0])) {\n this.paymentGroup = paymentgrp;\n this.viewStatus = 'issuerefund';\n this.isRefundRemission = true;\n this.paymentLibComponent.isFromPaymentDetailPage = true;\n this.isFromPaymentDetailPage = true;\n this.isFromServiceRequestPage = this.paymentLibComponent.isFromServiceRequestPage;\n }\n }\n }\n\n getRemissionByFeeCode(feeCode: string, remissions: IRemission[]): IRemission {\n if (remissions && remissions.length > 0) {\n for (const remission of remissions) {\n if (remission.fee_code === feeCode) {\n return remission;\n }\n }\n }\n return null;\n }\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n this.isIssueRefunfBtnEnable = true;\n }\n if (this.isIssueRefunfBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n\n chkForPBAPayment(): boolean {\n if (this.paymentGroup !== null && this.paymentGroup !== undefined) {\n let payment = this.paymentGroup.payments[0];\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n return true;\n }\n return false;\n }\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(this.paymentGroup.payments[0])) {\n if (this.paymentGroup.remissions && this.paymentGroup.remissions.length > 0) {\n for (const remission of this.paymentGroup.remissions) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n return true;\n }\n return true;\n\n } else {\n return false;\n }\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n if(payment !== null && payment !== undefined) {\n let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\n }\n }\n\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n}","import { Injectable } from '@angular/core';\nimport {HttpClient, HttpHeaders} from '@angular/common/http';\nimport { Meta } from '@angular/platform-browser';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {catchError} from 'rxjs/operators';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { IPatchRefundAction } from '../../interfaces/IPatchRefundAction';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { IssueRefundRequest } from '../../interfaces/IssueRefundRequest';\nimport { IResubmitRefundRequest } from '../../interfaces/IResubmitRefundRequest';\nimport { IRefundStatusHistory } from '../../interfaces/IRefundStatusHistory';\n@Injectable({\n providedIn: 'root'\n})\nexport class RefundsService {\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService,\n private meta: Meta\n ) { }\n\n getRefundReasons(): Observable<IRefundReasons[]> {\n return this.http.get<IRefundReasons[]>(`${this.paymentLibService.REFUNDS_API_ROOT}/reasons`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getRefundRejectReasons(): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/rejection-reasons`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getRefundActions(refundReference: string): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/${refundReference}/actions`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\npatchRefundActions(body:IPatchRefundAction, refundReference: string, reviewerAction: string): Observable<any> {\n // const opts = this.addHeaders({});\n return this.https.patch(`${this.paymentLibService.REFUNDS_API_ROOT}/${refundReference}/action/${reviewerAction}`, body)\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundList(refundstatus?: string, selfexclusive?:boolean): Observable<IRefundList[]> {\n return this.http.get<IRefundList[]>(`${this.paymentLibService.REFUNDS_API_ROOT}?status=${refundstatus}&excludeCurrentUser=${selfexclusive}`, \n {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundStatusHistory(reference?: string) {\n return this.http.get<IRefundStatusHistory>(`${this.paymentLibService.REFUNDS_API_ROOT}/${reference}/status-history`, \n {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundStatusList(ccdCaseNumber:string): Observable<IRefundList[]> {\n return this.http.get<IRefundList[]>(`${this.paymentLibService.REFUNDS_API_ROOT}?ccdCaseNumber=${ccdCaseNumber}`, {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetUserDetails(): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/get-user-details`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n \npostIssueRefund(body: IssueRefundRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.REFUNDS_API_ROOT}/refund`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\npatchResubmitRefund(body: IResubmitRefundRequest, refund_reference: string): Observable<any> {\n // const opts = this.addHeaders({});\n return this.https.patch(`${this.paymentLibService.REFUNDS_API_ROOT}/resubmit/${refund_reference}`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\naddHeaders(options: any): any {\n const csrfToken = this.meta.getTag('name=csrf-token');\n const headers = {};\n if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n if (csrfToken.content === null) {\n 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';\nimport { ServiceRequestComponent } from '../../components/service-request/service-request.component';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-case-transactions',\n templateUrl: './case-transactions.component.html',\n styleUrls: ['./case-transactions.component.css']\n})\nexport class CaseTransactionsComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input() isTakePayment: boolean;\n takePayment: boolean;\n servicerequest: string;\n ccdCaseNumber: string;\n excReference: string;\n paymentGroups: any[] = [];\n payments: IPayment[] = [];\n nonPayments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n fees: IFee[] = [];\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalNonOffPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n paymentRef: string;\n isTurnOff: boolean;\n isNewPcipalOff: boolean;\n isRefundRemission: boolean = true;\n isOldPcipalOff: boolean;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = true;\n isExceptionRecord: boolean = false;\n isUnprocessedRecordSelected: boolean = false;\n exceptionRecordReference: string;\n isAnyFeeGroupAvilable: boolean = true;\n isHistoricGroupAvailable: boolean = false;\n isBulkScanEnable;\n isRemissionsMatch: boolean;\n viewStatus = 'main';\n isRemoveBtnDisabled: boolean = false;\n feeId: IFee;\n clAmountDue: number = 0;\n unprocessedRecordCount: number;\n isFeeRecordsExist: boolean = false;\n isGrpOutstandingAmtPositive: boolean = false;\n totalRefundAmount: Number;\n caseType: String;\n // lsCcdNumber: any = ls.get<any>('ccdNumber');\n payment: IPayment;\n paymentGroup: IPaymentGroup;\n paymentView: IPaymentView;\n\n //Order changes\n orderDetail: any[] = [];\n\n isAddRemissionEnable: boolean = false;\n orderRemissionDetails: any[] = [];\n orderLevelFees: IOrderReferenceFee[] = [];\n ispaymentGroupApisuccess: boolean = false;\n cpoDetails: any = null;\n orderRef: string;\n orderStatus: string;\n orderParty: string;\n orderCreated: Date;\n orderCCDEvent: string;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n orderFeesTotal: number = 0.00;\n orderRemissionTotal: number = 0.00;\n orderTotalPayments: number = 0.00;\n orderPendingPayments: number = 0.00;\n isCPODown: boolean;\n test: boolean;\n isPBA: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n isAddRemissionBtnEnabled: boolean = false;\n isRefundRemissionBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n isEligible4PBAPayment = ['pui-finance-manager', 'pui-user-manager', 'pui-organisation-manager', 'pui-case-manager'];\n currentDate = new Date();\n isFromServiceRequestPage: boolean;\n navigationpage: string;\n remissionFeeAmt: number;\n constructor(private router: Router,\n private paymentViewService: PaymentViewService,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private caseTransactionsService: CaseTransactionsService,\n private paymentLibComponent: PaymentLibComponent,\n private OrderslistService: OrderslistService\n ) { }\n\n ngOnInit() {\n this.navigationpage = '';\n if(this.OrderslistService.getpaymentPageView() !== null) {\n this.OrderslistService.getpaymentPageView().subscribe((data) => this.paymentView = data);\n }\n if((this.LOGGEDINUSERROLES === undefined || this.LOGGEDINUSERROLES.length === 0 )&&this.OrderslistService.getUserRolesList() !== null) {\n this.OrderslistService.getUserRolesList().subscribe((data) => this.LOGGEDINUSERROLES = data);\n }\n if(this.OrderslistService.getnavigationPageValue() !== null) {\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n }\n \n \n if (this.paymentView !== undefined && this.paymentView !== null && this.paymentView.payment_group_reference !== undefined && this.navigationpage === 'paymentdetailspage') {\n this.goToPayementView(this.paymentView.payment_group_reference, this.paymentView.reference, this.paymentView.method);\n }\n this.isGrpOutstandingAmtPositive = false;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.caseType = this.paymentLibComponent.CASETYPE;\n if (this.paymentLibComponent.CCD_CASE_NUMBER === '') {\n this.ccdCaseNumber = this.paymentLibComponent.EXC_REFERENCE;\n }\n this.excReference = this.paymentLibComponent.EXC_REFERENCE;\n this.takePayment = this.paymentLibComponent.TAKEPAYMENT;\n\n this.servicerequest = this.paymentLibComponent.SERVICEREQUEST.toString();\n if (this.paymentLibComponent.SERVICEREQUEST.toString() === 'true') {\n this.serviceRequestValue = 'true';\n } else {\n this.serviceRequestValue = 'false';\n }\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isNewPcipalOff = this.paymentLibComponent.ISNEWPCIPALOFF;\n this.isOldPcipalOff = this.paymentLibComponent.ISOLDPCIPALOFF;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n if (!this.isTurnOff) {\n // if (this.lsCcdNumber !== this.ccdCaseNumber) {\n // this.router.navigateByUrl(`/ccd-search?takePayment=true`);\n // }\n\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.isAnyFeeGroupAvilable =true;\n this.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts();\n this.calculateOrderFeesAmounts();\n this.calculateRefundAmount();\n if (this.isFromServiceRequestPage) {\n this.OrderslistService.getSelectedOrderRefId().subscribe((data) => this.orderRef = data);\n this.goToOrderViewDetailSection(this.orderRef);\n } else {\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).content[0];\n \n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.isCPODown = true;\n }\n );\n \n }\n\n \n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n } else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.isAnyFeeGroupAvilable =true;\n this.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts();\n this.calculateOrderFeesAmounts();\n this.totalRefundAmount = this.calculateRefundAmount();\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).content[0];\n\n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.setDefaults();\n this.isCPODown = true;\n }\n );\n\n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n }\n\n if( this.paymentGroups !== undefined) {\n this.checkForExceptionRecord();\n }\n \n if(this.OrderslistService.getisFromServiceRequestPages() !== null) {\n this.OrderslistService.getisFromServiceRequestPages().subscribe((data) => this.isFromServiceRequestPage = data);\n }\n \n }\n\n setDefaults(): void {\n this.totalPayments = 0.00;\n this.totalRemissions = 0.00;\n this.totalNonOffPayments = 0.00;\n this.totalFees = 0.00;\n }\n\n getAllocationStatus(payments: any) {\n\n let paymentAllocation = payments.payment_allocation,\n isAllocationStatusExist = paymentAllocation.length > 0;\n return isAllocationStatusExist ? paymentAllocation[0].allocation_status : '-';\n //return \"-\";\n\n }\n\n checkForExceptionRecord(): void {\n \n if (this.paymentGroups.length === 0 && (this.selectedOption.toLocaleLowerCase() === 'ccdorexception' || this.selectedOption.toLocaleLowerCase() === 'rc')) {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n recordData => {\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length > 0 && recordData['data'].ccd_reference > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length > 0 && recordData['data'].ccd_reference === undefined) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n }\n\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length === undefined && recordData['data'].ccd_reference > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n });\n }\n\n if (this.paymentGroups.length === 0 && this.selectedOption.toLocaleLowerCase() === 'dcn') {\n if (this.paymentLibComponent.CCD_CASE_NUMBER.length > 0 && this.paymentLibComponent.EXC_REFERENCE.length > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n } else if (this.paymentLibComponent.CCD_CASE_NUMBER.length === 0 && this.paymentLibComponent.EXC_REFERENCE.length > 0) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n } else {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n }\n if (this.paymentGroups.length > 0)\n this.paymentGroups.forEach(paymentGroup => {\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.case_reference !== undefined && payment.ccd_case_number === undefined) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n } else {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n\n });\n }\n });\n }\n\n calculateOrderFeesAmounts(): void {\n let feesTotal = 0.00;\n this.paymentGroups.forEach(paymentGroup => {\n this.resetOrderVariables();\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.orderFeesTotal = this.orderFeesTotal + fee.calculated_amount\n }\n )\n }\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n this.orderRemissionTotal = this.orderRemissionTotal + remission.hwf_amount;\n });\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n this.orderTotalPayments = this.orderTotalPayments + payment.amount;\n }\n });\n }\n\n // this.orderPendingPayments = (this.orderFeesTotal - this.orderRemissionTotal) - this.orderTotalPayments;\n if (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.replace(/\"/g,\"\")\n );\n }\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n this.viewStatus = 'addrefundforremission';\n \n this.payment = payment;\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.payment.reference));\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n\n redirectToremissionPage(event: any) {\n event.preventDefault();\n this.paymentLibComponent.viewName = 'remission'\n }\n goToServiceRequestPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = false;\n this.paymentLibComponent.SERVICEREQUEST = 'true';\n this.paymentLibComponent.isFromServiceRequestPage = true;\n window.location.reload();\n }\n redirectToReportsPage(event: any) {\n event.preventDefault();\n this.router.navigateByUrl(`/reports?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}`);\n }\n\n loadFeeSummaryPage(paymentGroup: IPaymentGroup) {\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.payment_group_reference;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n\n goToPaymentViewComponent(paymentGroup: any) {\n this.paymentLibComponent.paymentMethod = paymentGroup.paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentGroup.paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n\n goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent({ paymentGroupReference, paymentReference, paymentMethod });\n }\n\n selectedUnprocessedFeeEvent(unprocessedRecordId: string) {\n if (unprocessedRecordId) {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = false;\n }\n this.isUnprocessedRecordSelected = true;\n } else {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = true;\n }\n this.isUnprocessedRecordSelected = false;\n }\n }\n\n getUnprocessedFeeCount(unProcessedRecordCount: number) {\n this.unprocessedRecordCount = unProcessedRecordCount;\n }\n\n calculateAmountDue(fee: IFee) {\n\n if (fee.date_created) {\n return fee.amount_due !== undefined ? fee.amount_due : fee.net_amount;\n } else {\n return \"0.00\";\n }\n }\n\n confirmRemoveFee(fee: IFee) {\n this.isRemoveBtnDisabled = false;\n this.feeId = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n cancelRemoval() {\n this.viewStatus = 'main';\n }\n\n removeFee(fee: any) {\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n window.location.reload();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n\n issueRefund(payment: IPayment) {\n if (payment !== null && payment !== undefined) {\n if(this.chkIssueRefundBtnEnable(payment)) {\n this.viewStatus = 'issuerefund';\n this.payment = payment;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.isRefundRemission = true;\n }\n }\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund()) {\n if (this.orderDetail[0]['remissions'].length > 0) {\n for (const remission of this.orderDetail[0]['remissions']) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n }\n return true;\n } else {\n return false;\n }\n }\n\n chkForPBAPayment(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isPBA = true;\n }\n });\n }\n });\n if (this.isPBA) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n this.isIssueRefunfBtnEnable = true;\n }\n if (this.isIssueRefunfBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n check4AllowedRoles2AccessPBApayment = (): boolean => {\n return this.isEligible4PBAPayment.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n if (payment !== null && payment !== undefined) {\n let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\n }\n }\n\n loadPBAAccountPage(orderRef: IPayment) {\n this.paymentLibComponent.pbaPayOrderRef = orderRef;\n this.paymentLibComponent.viewName = 'pba-payment';\n }\n}","export class PaymentToPayhubRequest {\n currency = 'GBP';\n description = 'PayBubble payment';\n channel = 'telephony';\n provider = 'pci pal';\n case_type: string;\n\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.case_type= caseType;\n }\n}\n","export class PayhubAntennaRequest {\n currency = 'GBP';\n case_type: string;\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.case_type= caseType;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IFee } from '../../interfaces/IFee';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { PayhubAntennaRequest } from '../../interfaces/PayhubAntennaRequest';\nimport { SafeHtml } from '@angular/platform-browser';\nimport {Router} from '@angular/router';\nimport {Location} from '@angular/common';\nimport { OrderslistService } from '../../services/orderslist.service';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-fee-summary',\n templateUrl: './fee-summary.component.html',\n styleUrls: ['./fee-summary.component.scss']\n})\n\nexport class FeeSummaryComponent implements OnInit {\n @Input() paymentGroupRef: string;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: string;\n @Input() caseType: string;\n @Input() isOldPcipalOff: string;\n @Input() isNewPcipalOff: string;\n\n\n bsPaymentDcnNumber: string;\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n viewStatus = 'main';\n currentFee: IFee;\n totalFee: number;\n payhubHtml: SafeHtml;\n service: string = \"\";\n platForm: string = \"\";\n upPaymentErrorMessage: string;\n selectedOption:string;\n isBackButtonEnable: boolean = true;\n outStandingAmount: number;\n isFeeAmountZero: boolean = false;\n totalAfterRemission: number = 0;\n isConfirmationBtnDisabled: boolean = false;\n isRemoveBtnDisabled: boolean = false;\n isPaymentExist: boolean = false;\n isRemissionsExist: Boolean = false;\n isRemissionsMatch = false;\n isStrategicFixEnable: boolean;\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private location: Location,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private OrderslistService: OrderslistService\n ) {}\n\n ngOnInit() {\n this.viewStatus = 'main';\n this.caseType = this.paymentLibComponent.CASETYPE;\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.setCaseType(this.paymentLibComponent.CASETYPE);\n if ((!this.isOldPcipalOff && this.isNewPcipalOff)) {\n this.platForm = '8x8';\n } else if ((this.isOldPcipalOff && !this.isNewPcipalOff)) {\n this.platForm = 'Antenna';\n } else if ((this.isOldPcipalOff && this.isNewPcipalOff)){\n this.platForm = '8x8';\n }\n\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n if (this.bsPaymentDcnNumber) {\n this.getUnassignedPaymentlist();\n }\n this.getPaymentGroup();\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.paymentLibComponent.DCN_NUMBER).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error';\n }\n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error'; \n } \n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n }\n\n }\n\n getRemissionByFeeCode(feeCode: string): IRemission {\n if (this.paymentGroup && this.paymentGroup.remissions && this.paymentGroup.remissions.length > 0) {\n for (const remission of this.paymentGroup.remissions) {\n if (remission.fee_code === feeCode) {\n return remission;\n }\n }\n }\n return null;\n }\n\n addRemission(fee: IFee) {\n this.currentFee = fee;\n this.viewStatus = 'add_remission';\n }\n\n getPaymentGroup() {\n let fees = [];\n this.paymentViewService.getPaymentGroupDetails(this.paymentGroupRef).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n this.isPaymentExist = paymentGroup.payments ? paymentGroup.payments.length > 0 : false;\n this.isRemissionsExist = paymentGroup.remissions ? paymentGroup.remissions.length > 0 : false;\n\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.totalAfterRemission = this.totalAfterRemission + fee.net_amount;\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true;\n }\n this.isRemissionsMatch = false;\n paymentGroup.remissions.forEach(rem => {\n if(rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n \n if(!this.isRemissionsMatch) {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees;\n }\n\n this.outStandingAmount = this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n\n confirmRemoveFee(fee: IFee){\n this.isRemoveBtnDisabled = false;\n this.currentFee = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n removeFee(fee: any){\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n if (this.paymentGroup.fees && this.paymentGroup.fees.length > 1){\n this.totalAfterRemission = 0;\n this.getPaymentGroup();\n this.viewStatus = 'main';\n return;\n }\n this.loadCaseTransactionPage();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n loadCaseTransactionPage() {\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n\n let partUrl = `selectedOption=${this.paymentLibComponent.SELECTED_OPTION}`;\n partUrl +=this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl +=this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl +=this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n\n let url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=true&${partUrl}`;\n this.router.navigateByUrl(url);\n }\n cancelRemission() {\n this.viewStatus = 'main';\n }\n redirectToFeeSearchPage(event: any, page?: string) {\n event.preventDefault();\n let partUrl =this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl +=this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl +=this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n\n if(this.viewStatus === 'feeRemovalConfirmation' || this.viewStatus === 'add_remission') {\n this.viewStatus = 'main';\n return;\n }\n let url = `/fee-search?ccdCaseNumber=${this.ccdCaseNumber}&selectedOption=${this.paymentLibComponent.SELECTED_OPTION}&paymentGroupRef=${this.paymentGroupRef}${partUrl}`;\n this.router.navigateByUrl(url);\n }\n takePayment() {\n this.isConfirmationBtnDisabled = true;\n const requestBody = new PaymentToPayhubRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType),\n antennaReqBody = new PayhubAntennaRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType);\n\n if(this.platForm === '8x8') {\n this.paymentViewService.postPaymentToPayHub(requestBody, this.paymentGroupRef).subscribe(\n response => {\n this.location.go(`payment-history?view=fee-summary`);\n this.payhubHtml = response;\n this.viewStatus = 'payhub_view';\n this.isBackButtonEnable=false;\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.router.navigateByUrl('/pci-pal-failure');\n }\n );\n } else if(this.platForm === 'Antenna') {\n\n this.paymentViewService.postPaymentAntennaToPayHub(antennaReqBody, this.paymentGroupRef).subscribe(\n response => {\n this.isBackButtonEnable=false;\n window.location.href = '/makePaymentByTelephoneyProvider';\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.router.navigateByUrl('/pci-pal-failure');\n }\n );\n }\n\n }\n\n goToAllocatePage(outStandingAmount: number, isFeeAmountZero: Boolean) {\n if (outStandingAmount > 0 || (outStandingAmount === 0 && isFeeAmountZero)) {\n this.paymentLibComponent.paymentGroupReference = this.paymentGroupRef;\n this.paymentLibComponent.viewName = 'allocate-payments';\n } else {\n this.loadCaseTransactionPage();\n }\n }\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\n\n\n\n@Component({\n selector: 'ccpay-error-banner',\n templateUrl: './error-banner.component.html',\n styleUrls: ['./error-banner.component.scss']\n})\n\nexport class ErrorBannerComponent implements OnInit {\n @Input('errorMessage') errorMessage;\n\n constructor(\n ) {}\n\n ngOnInit() {\n\n }\n}\n","\nexport class UnidentifiedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n unidentified_reason: string;\n\n constructor(payment_group_reference: string, payment_reference : string, unidentified_reason: any) {\n this.payment_allocation_status = {\n description: '',\n name: \"Unidentified\"\n };\n this.payment_group_reference = payment_group_reference ;\n this.payment_reference= payment_reference;\n this.unidentified_reason= unidentified_reason;\n\n }\n\n\n\n}\n","import { IBSPayments } from \"./IBSPayments\";\n\nexport class AllocatePaymentRequest {\n amount: Number;\n banked_date: String;\n ccd_case_number: String;\n exception_record: string;\n currency: String;\n document_control_number: String;\n external_provider: String;\n giro_slip_no: String;\n payer_name: String;\n payment_channel: Object;\n payment_status: Object;\n payment_method: String;\n case_type: String;\n payment_allocation_dto?: {\n allocation_reason: String,\n allocation_status: String,\n explanation: String,\n payment_allocation_status: Object,\n payment_group_reference: String,\n payment_reference: String,\n reason: String,\n receiving_office: String,\n unidentified_reason: String,\n user_id: String,\n user_name: String,\n case_type: String\n }\n\n constructor(ccd_case_number : string, unAllocatedPayment: IBSPayments, caseType: string, exceptionRecord: string, allocatedRequest?: any) {\n this.amount = unAllocatedPayment.amount;\n this.banked_date = unAllocatedPayment.date_banked;\n this.ccd_case_number = ccd_case_number;\n this.exception_record = exceptionRecord;\n this.currency= unAllocatedPayment.currency;\n this.document_control_number = unAllocatedPayment.dcn_reference;\n this.external_provider = 'exela';\n this.giro_slip_no = unAllocatedPayment.bgc_reference;\n this.payer_name = unAllocatedPayment.payer_name;\n this.payment_channel = {\n description: '',\n name: 'bulk scan'\n };\n this.payment_status ={\n description: 'bulk scan payment completed',\n name: 'success'\n }\n this.payment_method = unAllocatedPayment.payment_method;\n this.case_type= caseType;\n if(allocatedRequest) {\n this.payment_allocation_dto = allocatedRequest;\n }\n\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\n\n@Component({\n selector: 'app-mark-unidentified-payment',\n templateUrl: './mark-unidentified-payment.component.html',\n styleUrls: ['./mark-unidentified-payment.component.scss']\n})\nexport class MarkUnidentifiedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnidentifiedForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n isInvesticationDetailEmpty: boolean = false;\n investicationDetailHasError: boolean = false;\n investicationDetailMinHasError: boolean = false;\n investicationDetailMaxHasError: boolean = false;\n errorMessage = this.getErrorMessage(false);\n unassignedRecord:IBSPayments;\n siteID: string = null;\n investigationComment: string;\n isConfirmButtondisabled:Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n isStrategicFixEnable: boolean = true;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.markPaymentUnidentifiedForm = this.formBuilder.group({\n investicationDetail: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ]))\n });\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.getErrorMessage(false);\n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n saveAndContinue() {\n this.resetForm([false, false, false, false]);\n const investicationField = this.markPaymentUnidentifiedForm.controls.investicationDetail;\n const formerror = investicationField.errors;\n if (this.markPaymentUnidentifiedForm.dirty && this.markPaymentUnidentifiedForm.valid) {\n this.investigationComment = this.markPaymentUnidentifiedForm.controls.investicationDetail.value;\n this.viewStatus = 'unidentifiedContinueConfirm';\n }else {\n if(investicationField.value == '' ) {\n this.resetForm([true, false, false, false]);\n }\n if(investicationField.value != '' && investicationField.invalid ) {\n this.resetForm([false, true, false, false]);\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false, false, true, false]);\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, true]);\n }\n }\n }\n resetForm(val) {\n this.isInvesticationDetailEmpty = val[0];\n this.investicationDetailHasError = val[1];\n this.investicationDetailMinHasError = val[2];\n this.investicationDetailMaxHasError = val[3];\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const reason = this.markPaymentUnidentifiedForm.get('investicationDetail').value;\n\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Unidentified',\n payment_allocation_status: {\n description: '',\n name: 'Unidentified'\n },\n unidentified_reason: reason,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnidentifiedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, reason);\n if (response2.success) {\n this.paymentViewService.postBSUnidentifiedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n cancelMarkUnidentifiedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.markPaymentUnidentifiedForm.get('investicationDetail').value!==\"\"){\n this.viewStatus = 'unidentifiedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.viewStatus = 'mainForm';\n }\n }\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","\nexport class UnsolicitedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n receiving_office: string;\n receiving_email_address: string;\n sending_email_address: string;\n unidentified_reason: string;\n constructor(payment_group_reference: string, payment_reference : string, reason: string,responsible_office: string, responsible_person:string,email_id: string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Transferred\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.unidentified_reason= reason;\n this.receiving_office= responsible_office;\n this.receiving_email_address= email_id;\n this.sending_email_address= responsible_person;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\n\n\n@Component({\n selector: 'app-mark-unsolicited-payment',\n templateUrl: './mark-unsolicited-payment.component.html',\n styleUrls: ['./mark-unsolicited-payment.component.scss']\n})\nexport class MarkUnsolicitedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnsolicitedForm: FormGroup;\n viewStatus: string;\n reasonHasError: boolean = false;\n isReasonEmpty: boolean = false;\n reasonMinHasError: boolean = false;\n reasonMaxHasError: boolean = false;\n responsibleOfficeHasError: boolean = false;\n isResponsibleOfficeEmpty: boolean = false;\n errorMessage = this.getErrorMessage(false);\n ccdCaseNumber: string;\n bspaymentdcn: string;\n unassignedRecord: IBSPayments;\n siteID: string = null;\n reason: string;\n responsiblePerson: string;\n responsibleOffice: string;\n emailId: string;\n isConfirmButtondisabled: Boolean = false;\n isContinueButtondisabled: Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n selectedSiteId: string;\n selectedSiteName: string;\n isStrategicFixEnable: boolean = true;\n siteIDList;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.resetForm([false,false,false,false,false,false], 'all');\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.paymentViewService.getSiteID().subscribe(\n siteids => {\n this.isContinueButtondisabled = false;\n this.errorMessage = this.getErrorMessage(false);\n this.siteIDList = JSON.parse(siteids);\n },\n err => {\n window.scrollTo(0, 0);\n this.isContinueButtondisabled = true;\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n \n this.markPaymentUnsolicitedForm = this.formBuilder.group({\n reason: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n responsibleOffice: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s\\\\n,\\\\.-:]*)$')\n ])),\n responsiblePerson: new FormControl(''),\n emailId: new FormControl('')\n });\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const controls = this.markPaymentUnsolicitedForm.controls;\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Transferred',\n payment_allocation_status: {\n description: '',\n name: 'Transferred'\n },\n unidentified_reason: controls.reason.value,\n receiving_office: this.selectedSiteId,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n // controls.responsibleOffice.setValue('P219');\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const response1 = JSON.parse(res1),\n requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnsolicitedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, controls.reason.value, this.selectedSiteId, controls.responsiblePerson.value, controls.emailId.value);\n if (response2.success) {\n this.paymentViewService.postBSUnsolicitedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n saveAndContinue() {\n this.resetForm([false,false,false,false,false,false], 'all');\n const formerror = this.markPaymentUnsolicitedForm.controls.reason.errors;\n const reasonField = this.markPaymentUnsolicitedForm.controls.reason;\n //const officeIdField = this.selectedSiteId;\n const officeIdField = this.markPaymentUnsolicitedForm.controls.responsibleOffice;\n if (this.markPaymentUnsolicitedForm.dirty && this.markPaymentUnsolicitedForm.valid) {\n const controls = this.markPaymentUnsolicitedForm.controls;\n this.emailId = controls.emailId.value;\n this.responsibleOffice = officeIdField.value;\n this.responsiblePerson = controls.responsiblePerson.value;\n this.reason = controls.reason.value;\n this.viewStatus = 'unsolicitedContinueConfirm';\n }else {\n if( reasonField.value == '' ) {\n this.resetForm([true,false,false,false,false,false], 'reason');\n }\n if(reasonField.value != '' && this.markPaymentUnsolicitedForm.controls.reason.invalid ) {\n this.resetForm([false,true,false,false,false,false], 'reason');\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false,false,true,false,false,false], 'reason');\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false,false,false,true,false,false], 'reason');\n }\n if(officeIdField.value == '') {\n this.resetForm([false,false,false,false,true,false], 'responsibleOffice');\n }\n if(officeIdField.value != '' && officeIdField.invalid) {\n this.resetForm([false,false,false,false,false,true],'responsibleOffice');\n }\n }\n }\n resetForm(val, field) {\n if(field==='reason' || field==='all') {\n this.isReasonEmpty = val[0];\n this.reasonHasError = val[1];\n this.reasonMinHasError = val[2];\n this.reasonMaxHasError = val[3];\n }\n if(field==='responsibleOffice' || field==='all') {\n this.isResponsibleOfficeEmpty = val[4];\n this.responsibleOfficeHasError = val[5];\n }\n }\n\ncancelMarkUnsolicitedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.checkingFormValue()){\n this.viewStatus = 'unsolicitedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.markPaymentUnsolicitedForm.controls.responsibleOffice.setValue('');\n this.viewStatus = 'mainForm';\n }\n }\n checkingFormValue(){\n const formFields = this.markPaymentUnsolicitedForm.value;\n let valueExists = false;\n\n for (var field in formFields) {\n if (formFields.hasOwnProperty(field) && formFields[field] !==\"\") {\n valueExists = true;\n break;\n }\n }\n return valueExists;\n }\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n \n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n\n getErrorMessage(isErrorExist) {\n return {\n title: \"Something went wrong.\",\n body: \"Please try again later.\",\n showError: isErrorExist\n };\n }\n\n selectchange(args){ \n this.selectedSiteId = args.target.value; \n this.selectedSiteName = args.target.options[args.target.selectedIndex].text; \n } \n\n}\n","import { Component, OnInit, Output,Input, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport {Router} from '@angular/router';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-app-unprocessed-payments',\n templateUrl: './unprocessed-payments.component.html',\n styleUrls: ['./unprocessed-payments.component.scss']\n})\nexport class UnprocessedPaymentsComponent implements OnInit {\n\n @Input('FEE_RECORDS_EXISTS') FEE_RECORDS_EXISTS: boolean;\n @Input('PAYMENTREF') PAYMENTREF: string;\n @Input('ISTURNOFF') ISTURNOFF: boolean;\n @Input('IS_BUTTON_ENABLE') IS_BUTTON_ENABLE: boolean;\n @Input('IS_OS_AMT_AVAILABLE') IS_OS_AMT_AVAILABLE: boolean;\n @Input('ISNEWPCIPALOFF') ISNEWPCIPALOFF: boolean;\n @Input('ISOLDPCIPALOFF') ISOLDPCIPALOFF: boolean;\n @Input('ISSFENABLE') ISSFENABLE: boolean;\n @Input('PAYMENTSLENGTH') PAYMENTSLENGTH:Number;\n @Input('LEVEL')LEVEL:Number;\n\n @Output() selectedUnprocessedFeeEvent: EventEmitter<string> = new EventEmitter();\n @Output() getUnprocessedFeeCount: EventEmitter<string> = new EventEmitter();\n\n viewStatus = 'main';\n unassignedRecordList: IBSPayments;\n upPaymentErrorMessage: string = null;\n ccdCaseNumber: string;\n recordId: string = null;\n isRecordExist: boolean = false;\n dcnNumber: string = null;\n selectedOption: string;\n isUnprocessedRecordSelected: boolean = true;\n isAllocateToExistingFeebtnEnabled: boolean = false;\n isMarkAsUnidentifiedbtnEnabled: boolean = false;\n isAllocatedToNewFeebtnEnabled: boolean = false;\n isExceptionCase: boolean = false;\n serviceId: string = null;\n isBulkScanEnable;\n isNewpcipaloff;\n isOldpcipaloff;\n isTurnOff: boolean = true;\n isStFixEnable;\n unassignedRecordSelectedList: IBSPayments;\n unassignedRecordListLength: number = 0;\n showContent: boolean;\n\n constructor(private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private OrderslistService: OrderslistService\n ) { }\n\n ngOnInit() {\n // Todo ...\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isNewpcipaloff = this.paymentLibComponent.ISNEWPCIPALOFF;\n this.isOldpcipaloff = this.paymentLibComponent.ISOLDPCIPALOFF;\n this.isStFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.getFeeExists().subscribe( (data) => this.FEE_RECORDS_EXISTS = data);\n this.getUnassignedPaymentlist();\n\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.dcnNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n }\n\n }\n\n setValuesForUnassignedRecord(unassignedPayments) {\n \n this.unassignedRecordList = unassignedPayments.payments;\n if(this.unassignedRecordList){\n this.unassignedRecordListLength = unassignedPayments.payments.length\n }\n this.serviceId = unassignedPayments.responsible_service_id;\n if (unassignedPayments['ccd_reference'] === undefined) {\n this.isExceptionCase = true;\n }\n // this.isRecordExist = this.unassignedRecordList.length === 0;\n this.getUnprocessedFeeCount.emit(<any>this.unassignedRecordList.length);\n this.unprocessedPaymentSelectEvent(this.unassignedRecordList);\n }\n\n formatUnassignedRecordId(ID: Number) {\n return `unassignrecord-${ID}`;\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n\n redirectToFeeSearchPage(event: any, dcn_reference:any) {\n event.preventDefault();\n this.recordId = dcn_reference;\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n url += this.isOldpcipaloff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n url += this.isNewpcipaloff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}&dcn=${this.recordId}${url}`);\n }\n\n loadUnsolicitedPage(viewName: string, dcn_reference:any) {\n this.recordId = dcn_reference;\n this.paymentLibComponent.bspaymentdcn = this.recordId;\n this.paymentLibComponent.viewName = viewName;\n }\n\n unprocessedPaymentSelectEvent(selectedRecordReference: any) {\n this.isUnprocessedRecordSelected = true;\n this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit(selectedRecordReference);\n }\n\n resetButtons() {\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n }\n\n goToAllocatePage(dcn_reference:any) {\n this.paymentLibComponent.bspaymentdcn = dcn_reference;\n this.paymentLibComponent.unProcessedPaymentServiceId = this.serviceId\n this.paymentLibComponent.isTurnOff = this.ISTURNOFF;\n this.paymentLibComponent.isNewPcipalOff = this.ISNEWPCIPALOFF;\n this.paymentLibComponent.isOldPcipalOff = this.ISOLDPCIPALOFF;\n this.paymentLibComponent.ISSFENABLE = this.isStFixEnable;\n\n if(this.ISTURNOFF) {\n this.paymentLibComponent.paymentGroupReference = this.PAYMENTREF;\n this.paymentLibComponent.viewName = 'fee-summary';\n }else {\n this.paymentLibComponent.paymentGroupReference = null;\n this.paymentLibComponent.viewName = 'allocate-payments';\n }\n\n }\n\n validateButtons() {\n if ( this.isUnprocessedRecordSelected && this.isExceptionCase) {\n this.isMarkAsUnidentifiedbtnEnabled = true;\n } else if ( this.isUnprocessedRecordSelected && !this.isExceptionCase && !this.FEE_RECORDS_EXISTS) {\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = true;\n } else if( this.isUnprocessedRecordSelected && !this.isExceptionCase && this.FEE_RECORDS_EXISTS ) {\n if(!this.ISTURNOFF) {\n this.isAllocateToExistingFeebtnEnabled = true;\n this.isAllocatedToNewFeebtnEnabled = false;\n } else {\n this.isAllocateToExistingFeebtnEnabled = this.IS_OS_AMT_AVAILABLE;\n this.isAllocatedToNewFeebtnEnabled = true;\n }\n }\n }\n\n unprocessedPaymentUnSelectEvent(event: any) {\n event.preventDefault();\n this.recordId = null;\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n //this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit('');\n }\n\n showDetailRow(event: any,obj: any, i: any) {\n event.preventDefault();\n \n this.unassignedRecordSelectedList = obj;\n \n }\n}\n","import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport {IPayment} from '../../interfaces/IPayment';\nimport {Router} from '@angular/router';\n\n@Component({\n selector: 'ccpay-app-processed-payments',\n templateUrl: './processed-payments.component.html',\n styleUrls: ['./processed-payments.component.scss']\n})\nexport class ProcessedPaymentsComponent implements OnInit {\n\n @Input('NONPAYMENTS') NONPAYMENTS: IPayment[];\n @Output() goToPaymentViewComponent: EventEmitter<any> = new EventEmitter();\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService\n ) { }\n ngOnInit() {\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n redirectToPaymentViewPage(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent.emit({paymentGroupReference, paymentReference, paymentMethod});\n }\n}\n","\nexport class IAllocationPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n reason: string;\n explanation: string;\n user_name: string;\n constructor(payment_group_reference: string, payment_reference : string, reason? : string, explanation? : string, userName? : string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Allocated\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.reason = reason ? reason : null;\n this.explanation = explanation ? explanation : null;\n this.user_name = userName ? userName : null;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {CaseTransactionsService} from '../../services/case-transactions/case-transactions.service'; \nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport {IBSPayments} from '../../interfaces/IBSPayments';\nimport {AllocatePaymentRequest} from '../../interfaces/AllocatePaymentRequest';\nimport {IAllocationPaymentsRequest} from '../../interfaces/IAllocationPaymentsRequest';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n\n\n@Component({\n selector: 'app-allocate-payments',\n templateUrl: './allocate-payments.component.html',\n styleUrls: ['./allocate-payments.component.scss']\n})\nexport class AllocatePaymentsComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() caseType: string;\n\n overUnderPaymentForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n recordId:string;\n feedbackUrlLabel:string;\n unAllocatedPayment: IBSPayments = {\n amount: 0\n };\n siteID: string = null;\n errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n paymentGroup: IPaymentGroup;\n paymentGroups: IPaymentGroup[] = [];\t\n remainingAmount: number;\n isRemainingAmountGtZero: boolean;\n isMoreDetailsBoxHide: boolean = true;\n isRemainingAmountLtZero: boolean;\n afterFeeAllocateOutstanding: number;\n amountForAllocation: number;\n isConfirmButtondisabled: boolean = false;\n isContinueButtondisabled: boolean = true;\n otherPaymentExplanation: string = null;\n selectedOption: string = null;\n isFeeAmountZero: boolean = false;\t\n\n paymentReasonHasError: boolean = false;\n paymentExplanationHasError: boolean = false;\n isPaymentDetailsEmpty: boolean = false;\n isPaymentDetailsInvalid: boolean = false;\n paymentDetailsMinHasError: boolean = false;\n paymentDetailsMaxHasError: boolean = false;\n isUserNameEmpty: boolean = false;\n isUserNameInvalid: boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n paymentReason: string = null;\n paymentExplanation: string = null;\n userName: string = null;\n paymentSectionLabel: any;\n paymentRef: string = null;\n isStrategicFixEnable: boolean = true;\n orderLevelFees: IOrderReferenceFee[] = [];\n cookieUserName: string[] = [];\n enCookieUserName: any;\n userNameField: string = null;\n\n reasonList: { [key: string]: { [key: string]: string } }= {\n overPayment: {\n hwfReward: 'Help with Fees (HWF) awarded. Please include the HWF reference number in the explanatory note',\n wrongFee: 'Incorrect payment received',\n notIssueCase: 'Unable to issue case',\n otherDeduction: 'Other'\n },\n shortFall: {\n helpWithFee: 'Help with Fees (HWF) application declined',\n wrongFee: 'Incorrect payment received',\n other: 'Other'\n }\n }\n explanationList = {\n overPayment: {\n referRefund: 'Details in case notes. Refund due',\n noRefund: 'Details in case notes. No refund due',\n noCase: 'No case created. Refund due',\n other: 'Other'\n },\n shortFall: {\n holdCase: 'I have put a stop on the case and contacted the applicant requesting the balance of payment',\n heldCase: 'I have put a stop on the case. The applicant needs to be contacted to request the balance of payment',\n other: 'Other'\n }\n }\n\n refund = {\n reason: {\n duplicate: 'Duplicate payment',\n humanerror: 'Human error',\n caseWithdrawn: 'Case withdrawn',\n other: 'Other'\n }\n }\n\n\n constructor(\n private errorHandlerService: ErrorHandlerService,\n private caseTransactionsService: CaseTransactionsService,\n private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n if (this.paymentLibComponent.paymentGroupReference !== null) {\n this.viewStatus = 'allocatePaymentConfirmation';\n }\n \n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.paymentRef = this.paymentLibComponent.paymentGroupReference;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.isTurnOff = this.paymentLibComponent.isTurnOff;\n this.overUnderPaymentForm = this.formBuilder.group({\n moreDetails: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n userName: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s]*)$')\n ])),\n });\n this.OrderslistService.getOrdersList().subscribe( (data) =>\n this.orderLevelFees = data.filter(data => data.orderStatus !== 'Paid'));\n this.OrderslistService.getCaseType().subscribe( (data) => this.caseType = data);\n this.getUnassignedPayment();\n }\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n }\n\n getPaymentGroupDetails(){\n\n if(!this.isTurnOff){\n this.paymentViewService.getPaymentGroupDetails(this.paymentRef).subscribe(\n paymentGroup => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.paymentGroup = paymentGroup;\n this.saveAndContinue();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.paymentGroups = paymentGroups['payment_groups'].filter(paymentGroup => {\n paymentGroup.fees.forEach(fee => {\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true\n }\n });\n let fstCon = this.getGroupOutstandingAmount(<IPaymentGroup>paymentGroup),\n scndCn = fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero) && paymentGroup.payment_group_reference === this.paymentRef;\n return this.paymentRef ? scndCn : fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero);\n });\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }\n\n }\n\n selectedPaymentGroup(paymentGroup: IPaymentGroup) {\t\n this.isContinueButtondisabled = false;\t\n this.paymentGroup = paymentGroup;\t\n }\t\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n\n gotoSummaryPage(event: any) { \n event.preventDefault();\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n\n cancelAllocatePayment(event: any){\n event.preventDefault();\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n if(!this.isTurnOff){\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n } else {\n this.viewStatus = 'mainForm';\t\n }\n }\n confirmAllocatePayement(){\n this.enCookieUserName = document.cookie.split(\";\").find(row => row.includes(\"user-info\")).split(\"=\")[1].split(\";\");\n this.cookieUserName = JSON.parse(decodeURIComponent(this.enCookieUserName));\n \n const fullName = this.cookieUserName['forename'] + ' ' + this.cookieUserName['surname'];\n\n const paymentDetailsField = this.overUnderPaymentForm.controls.moreDetails,\n paymentFormError = this.overUnderPaymentForm.controls.moreDetails.errors,\n userNameField = fullName,\n isEmptyCondtion = this.paymentReason && this.paymentExplanation,\n isOtherOptionSelected = this.paymentExplanation === 'Other';\n\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n if ( (!this.isRemainingAmountGtZero && !this.isRemainingAmountLtZero) || isEmptyCondtion && (!isOtherOptionSelected && userNameField.length > 0 || isOtherOptionSelected && userNameField.length > 0 && paymentDetailsField.valid)) {\n this.isConfirmButtondisabled = true;\n this.otherPaymentExplanation = this.paymentExplanation === 'Other' ? paymentDetailsField.value : this.paymentExplanation;\n this.userName = userNameField;\n this.finalServiceCall();\n }else {\n if(!this.paymentReason) {\n this.resetForm([true, false, false, false, false, false, false, false], 'reason');\n }\n if(!this.paymentExplanation) {\n this.resetForm([false, true, false, false, false, false, false, false], 'explanation');\n }\n if(this.paymentExplanation && isOtherOptionSelected) {\n if(paymentDetailsField.value == '' ) {\n this.resetForm([false, false, true, false, false, false, false, false], 'other');\n }\n if(paymentDetailsField.value != '' && paymentDetailsField.invalid ) {\n this.resetForm([false, false, false, true, false, false, false, false], 'other');\n }\n if(paymentFormError && paymentFormError.minlength && paymentFormError.minlength.actualLength < 3 ) {\n this.resetForm([false, false, false, false, true, false, false, false], 'other');\n }\n if(paymentFormError && paymentFormError.maxlength && paymentFormError.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, false, false, true, false, false], 'other');\n }\n }\n if(userNameField.length === 0) {\n this.resetForm([false, false, false, false, false, false, true, false], 'username');\n }\n }\n }\n resetForm(vals, field) {\n if(field==='reason' || field==='all') {\n this.paymentReasonHasError = vals[0];\n }\n if(field==='explanation' || field==='all') {\n this.paymentExplanationHasError = vals[1];\n }\n if(field==='other' || field==='all') {\n this.isPaymentDetailsEmpty = vals[2];\n this.isPaymentDetailsInvalid = vals[3];\n this.paymentDetailsMinHasError = vals[4];\n this.paymentDetailsMaxHasError = vals[5];\n }\n if(field==='username' || field==='all') {\n this.isUserNameEmpty = vals[6];\n this.isUserNameInvalid = vals[7];\n }\n }\n finalServiceCall() {\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n reason: this.paymentReason,\n allocation_status:'Allocated',\n explanation: this.otherPaymentExplanation,\n payment_allocation_status: {\n description: '',\n name: 'Allocated'\n },\n payment_group_reference: this.paymentGroup.payment_group_reference,\n case_type: this.caseType,\n user_name: this.userName\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unAllocatedPayment, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSPaymentStrategic(postStrategicBody , this.paymentGroup.payment_group_reference).subscribe(\n res => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n });\n\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response1 = JSON.parse(res1);\n if (response1.success) {\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unAllocatedPayment, this.siteID, this.exceptionReference);\n this.bulkScaningPaymentService.postBSAllocatePayment(requestBody, this.paymentGroup.payment_group_reference).subscribe(\n res2 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response2 = JSON.parse(res2);\n const reqBody = new IAllocationPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, this.paymentReason, this.otherPaymentExplanation, this.userName);\n if (response2.success) {\n this.paymentViewService.postBSAllocationPayments(reqBody).subscribe(\n \n res3 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n ); \n }\n }\n\n saveAndContinue(){\n if(this.paymentGroup) {\n this.isMoreDetailsBoxHide = true;\n this.overUnderPaymentForm.get('moreDetails').reset();\n this.overUnderPaymentForm.get('moreDetails').setValue('');\n this.overUnderPaymentForm.get('userName').reset();\n this.overUnderPaymentForm.get('userName').setValue('');\n this.paymentReason = '';\n this.paymentExplanation = '';\n let GroupOutstandingAmount = this.getGroupOutstandingAmount(this.paymentGroup);\n const remainingToBeAssigned = this.unAllocatedPayment.amount - GroupOutstandingAmount;\n this.isRemainingAmountGtZero = remainingToBeAssigned > 0;\n this.isRemainingAmountLtZero = remainingToBeAssigned < 0;\n this.paymentSectionLabel = this.isRemainingAmountGtZero ? { \n title: 'There is an Over payment of',\n reason: 'Provide a reason. This will be used in the Refund process.',\n }: this.isRemainingAmountLtZero ? { \n title: 'There is an Under payment of',\n reason: 'Provide a reason',\n }: { \n title:'Amount left to be allocated',\n reason:'',\n };\n this.feedbackUrlLabel = this.isRemainingAmountGtZero ? 'CONFIRMALLOCATION_SURPLUS' : this.isRemainingAmountLtZero ? 'CONFIRMALLOCATION_SHORTFALL' : 'CONFIRMALLOCATION';\n this.remainingAmount = this.isRemainingAmountGtZero ? remainingToBeAssigned : this.isRemainingAmountLtZero ? remainingToBeAssigned * -1 : 0;\n this.afterFeeAllocateOutstanding = remainingToBeAssigned >= 0 ? 0 : (remainingToBeAssigned * -1);\n this.amountForAllocation = GroupOutstandingAmount >= this.unAllocatedPayment.amount ? this.unAllocatedPayment.amount : GroupOutstandingAmount;\n if(this.isTurnOff){\n this.viewStatus = 'allocatePaymentConfirmation';\t\n }\n }\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.unAllocatedPayment = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n this.getPaymentGroupDetails();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }\n selectRadioButton(key, type) {\n this.isMoreDetailsBoxHide = true;\n if( type === 'explanation' && key === 'other' ){\n this.isPaymentDetailsEmpty = false;\n this.isPaymentDetailsInvalid = false;\n this.paymentDetailsMinHasError = false;\n this.paymentDetailsMaxHasError = false;\n this.isMoreDetailsBoxHide = false;\n }\n }\n OrderListSelectEvent(orderef: any){\n this.isContinueButtondisabled = false;\n this.recordId= orderef;\n }\n\n redirectToOrderFeeSearchPage() {\n // this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = this.recordId;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n}\n}\n","import { IFee } from './IFee';\n\nexport class AddRemissionRequest {\n beneficiary_name: string;\n ccd_case_number: string;\n fee: IFee;\n hwf_amount: number;\n hwf_reference: string;\n payment_group_reference: string;\n case_type: string;\n\n constructor(ccd_case_number: string, fee: IFee, hwf_amount: number, hwf_reference: string, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.fee = fee;\n this.hwf_amount = hwf_amount;\n this.hwf_reference = hwf_reference;\n this.case_type = caseType;\n }\n}\n","export class AddRetroRemissionRequest {\n hwf_amount: number;\n hwf_reference: string;\n\n constructor(hwf_amount: number, hwf_reference: string) {\n this.hwf_amount = hwf_amount;\n this.hwf_reference = hwf_reference;\n }\n}\n","export class PostRefundRetroRemission {\n payment_reference: string;\n refund_reason: string;\n \n constructor(payment_reference : string, refund_reason : string) {\n this.payment_reference= payment_reference;\n this.refund_reason = refund_reason;\n } \n}","export class PostIssueRefundRetroRemission {\n remissionReference: string;\n \n constructor(remissionReference : string) {\n this.remissionReference= remissionReference;\n } \n}","import { Component, OnInit, Input, Output, EventEmitter} from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl, RequiredValidator } from '@angular/forms';\nimport { IFee } from '../../interfaces/IFee';\nimport {Router} from '@angular/router';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { RefundsRequest } from '../../interfaces/RefundsRequest';\nimport { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';\nimport { IssueRefundRequest } from '../../interfaces/IssueRefundRequest';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\nimport { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';\nimport {ChangeDetectorRef} from '@angular/core';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { OrderslistService } from '../../services/orderslist.service';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-add-remission',\n templateUrl: './add-remission.component.html',\n styleUrls: ['./add-remission.component.scss']\n})\nexport class AddRemissionComponent implements OnInit {\n @Input() fee: IFee;\n @Input() payment: IPayment;\n @Input() remission: IRemission;\n @Input() ccdCaseNumber: string;\n @Input() caseType: string;\n @Input() viewCompStatus: string;\n @Input() paymentGroupRef: string;\n @Input() isTurnOff: boolean;\n @Input() isRefundRemission: boolean;\n @Input() isOldPcipalOff: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() isStrategicFixEnable: boolean;\n @Input() paidAmount: any;\n @Input() isFromRefundListPage: boolean;\n @Input() isFromPaymentDetailPage: boolean;\n @Input() isFromServiceRequestPage: boolean;\n @Input() feeamount: number;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input('orderDetail') orderDetail: any[];\n @Input('orderRef') orderRef: string;\n @Input('orderStatus') orderStatus: string;\n @Input('orderParty') orderParty: string;\n @Input('orderCreated') orderCreated: Date;\n @Input('orderCCDEvent') orderCCDEvent: string;\n @Input('takepayment') takePayment: boolean;\n @Input('orderFeesTotal') orderFeesTotal: number;\n @Input('orderTotalPayments') orderTotalPayments: number;\n @Input('orderRemissionTotal') orderRemissionTotal: number;\n @Output() cancelRemission: EventEmitter<void> = new EventEmitter();\n //@Output() refundListReason: EventEmitter<any> = new EventEmitter({reason:string, code:string});\n @Output() refundListReason = new EventEmitter<{reason: string, code: string}>();\n @Output() refundListAmount: EventEmitter<string> = new EventEmitter();\n\n refund = {\n reason: {\n duplicate: 'Duplicate payment',\n humanerror: 'Human error',\n caseWithdrawn: 'Case withdrawn',\n other: 'Other'\n }\n }\n\n remissionForm: FormGroup;\n hasErrors = false;\n viewStatus = 'main';\n errorMessage = null;\n option: string = null;\n isConfirmationBtnDisabled: boolean = false;\n bsPaymentDcnNumber: string;\n selectedValue = 'yes';\n amount: any;\n retroRemission: boolean = false;\n remissionReference: string = '';\n refundReference: string;\n refundAmount: string;\n paymentExplanationHasError: boolean = false;\n refundReason:string;\n selectedRefundReason: string;\n displayRefundReason: string;\n refundCode:string;\n remessionPayment:IPayment;\n isRemissionCodeEmpty: boolean = false;\n remissionCodeHasError: boolean = false;\n isAmountEmpty: boolean = false;\n isReasonEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n refundHasError:boolean = false;\n isPaymentSuccess: boolean = false;\n isRemissionApplied: boolean = false;\n remissionamt:number;\n // refundReasons: any[] = [];\n commonRefundReasons: any[] = [];\n showReasonText: boolean;\n isRefundReasonsSelected: boolean;\n default: string;\n reasonLength: number;\n refundReasons:IRefundReasons[];\n pattern1: string;\n pattern2: string;\n sendOrderDetail: any[];\n sendOrderRef: string;\n component: { account_number: string; amount: number; case_reference: string; ccd_case_number: string; channel: string; currency: string; customer_reference: string; date_created: string; date_updated: string; description: string; method: string; organisation_name: string; payment_allocation: any[]; reference: string; service_name: string; site_id: string; status: string; };\n\n constructor(private formBuilder: FormBuilder,\n private router: Router,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private refundService: RefundsService,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.default = 'Select a different reason';\n this.pattern1 = '^([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})$';\n this.pattern2 = '^([A-Za-z]{2}[0-9]{2})-([0-9]{6})$';\n if(this.viewCompStatus !== '' && this.viewCompStatus !== undefined){\n this.viewStatus = '';\n }\n if(this.remission) {\n }\n if(this.fee) {\n this.amount = (this.fee.volume * this.fee.calculated_amount);\n }\n if (this.payment){\n this.remessionPayment = this.payment;\n if(this.payment.status === 'Success') {\n this.isPaymentSuccess = true;\n }\n }\n this.option = this.paymentLibComponent.SELECTED_OPTION;\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.remissionForm = this.formBuilder.group({\n remissionCode: new FormControl('', \n Validators.compose([\n Validators.required,\n Validators.pattern(`(${this.pattern1})|(${this.pattern2})`)\n ]) \n ),\n amount: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[0-9]+(\\.[0-9]{1,2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n refundDDReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl()\n });\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundDDReason'].setValue('Select a different reason', {onlySelf: true});\n \n if(this.viewCompStatus === ''){\n this.viewStatus = 'main';\n }\n \n if(this.viewCompStatus === 'issuerefund'){\n this.refundService.getRefundReasons().subscribe(\n refundReasons => { \n this.refundReasons = refundReasons.filter((data) => data.recently_used === false);\n this.refundReasons = this.refundReasons.filter((data) => data.name !== 'Retrospective remission');\n this.cd.detectChanges();\n this.commonRefundReasons = refundReasons.filter((data) => data.recently_used === true);\n this.commonRefundReasons.sort((a, b) => a.toString().localeCompare(b));\n this.cd.detectChanges();\n } );\n }\n \n if(this.viewCompStatus === 'processretroremissonpage' && this.isFromRefundListPage){\n this.viewStatus = 'processretroremissonpage';\n }\n\n }\n\n addRemission() {\n this.resetRemissionForm([false, false, false, false, false, false], 'All');\n const remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount > remissionctrls.amount.value; \n this.remissionForm.controls['refundReason'].setErrors(null);\n this.remissionForm.controls['refundDDReason'].setErrors(null);\n if (this.remissionForm.dirty && this.remissionForm.valid && isRemissionLessThanFee) {\n this.viewStatus = 'confirmation';\n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false, false], 'amount');\n }\n if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true, false], 'amount');\n }\n }\n }\n\n confirmRemission() {\n this.isConfirmationBtnDisabled = true;\n const newNetAmount = this.remissionForm.controls.amount.value,\n remissionAmount = this.fee.net_amount - newNetAmount,\n requestBody = new AddRemissionRequest\n (this.ccdCaseNumber, this.fee, remissionAmount, this.remissionForm.controls.remissionCode.value, this.caseType);\n this.paymentViewService.postPaymentGroupWithRemissions(decodeURIComponent(this.paymentGroupRef).trim(), this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response).success) {\n let LDUrl = this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable'\n LDUrl += `&caseType=${this.caseType}`\n LDUrl += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable'\n LDUrl += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable'\n if (this.paymentLibComponent.bspaymentdcn) {\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(`/payment-history/${this.ccdCaseNumber}?view=fee-summary&selectedOption=${this.option}&paymentGroupRef=${this.paymentGroupRef}&dcn=${this.paymentLibComponent.bspaymentdcn}${LDUrl}`);\n }else {\n this.gotoCasetransationPage();\n }\n\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n }\n );\n }\n\n resetRemissionForm(val, field){\n if (field==='All'){\n this.isRemissionCodeEmpty = val[0];\n this.remissionCodeHasError = val[1];\n this.isAmountEmpty = val[2];\n this.amountHasError = val[3];\n this.isRemissionLessThanFeeError = val[4];\n this.isReasonEmpty = val[5];\n } else if(field==='remissionCode' || field==='All') {\n this.isRemissionCodeEmpty = val[0];\n this.remissionCodeHasError = val[1];\n } else if (field==='amount' || field==='All'){\n this.isAmountEmpty = val[2];\n this.amountHasError = val[3];\n this.isRemissionLessThanFeeError = val[4];\n } else if (field==='reason' || field==='All'){\n this.isReasonEmpty = val[5];\n }\n }\n\n // Add retro remission changes\n addRemissionCode() {\n this.errorMessage = false;\n this.viewStatus = '';\n this.isRefundRemission = false;\n this.resetRemissionForm([false, false, false, false, false, false], 'All');\n const remissionctrls=this.remissionForm.controls\n // isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value; \n this.remissionForm.controls['refundReason'].setErrors(null);\n this.remissionForm.controls['refundDDReason'].setErrors(null);\n this.remissionForm.controls['amount'].setErrors(null);\n if (this.remissionForm.dirty && this.remissionForm.valid ) {\n this.viewCompStatus = '';\n this.viewStatus = \"processretroremissonpage\";\n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false], 'amount');\n }\n if(remissionctrls['reason'].value == '') {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n }\n if(remissionctrls.amount.valid){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n }\n \n }\n }\n\n\n gotoAddRetroRemissionCodePage() {\n this.errorMessage = false;\n if(this.isRefundRemission) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListAmount.emit();\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n }\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n } \n this.viewStatus = '';\n this.selectedValue = 'yes';\n this.viewCompStatus = \"addremission\";\n this.isRefundRemission = true;\n this.errorMessage = '';\n if(this.isFromPaymentDetailPage) {\n this.paymentLibComponent.viewName = 'payment-view';\n }\n }\n\n gotoCheckRetroRemissionPage(payment: IPayment) {\n this.paymentLibComponent.iscancelClicked = false;\n this.errorMessage = '';\n this.resetRemissionForm([false, false, false, false, false], 'All');\n if( !this.isRefundRemission) {\n var remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value; \n if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' || remissionctrls['amount'].value < 0) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, false, false, true, false], 'amount');\n } else if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n }\n }\n } else {\n var remissionctrls=this.remissionForm.controls;\n //if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' || remissionctrls['amount'].value < 0 ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n this.refundListAmount.emit(remissionctrls['amount'].value);\n }\n //}\n \n }\n }\n\n gotoProcessRetroRemissionPage() {\n this.viewStatus = '';\n this.viewCompStatus = 'addremission';\n this.isRefundRemission = true;\n this.errorMessage = '';\n }\n\n confirmRetroRemission() {\n if(!this.isConfirmationBtnDisabled) {\n this.retroRemission = true;\n this.remissionamt = this.remissionForm.controls.amount.value;\n const requestBody = new AddRetroRemissionRequest(this.remissionamt,this.remissionForm.controls.remissionCode.value )\n this.paymentViewService.postPaymentGroupWithRetroRemissions(decodeURIComponent(this.paymentGroupRef).trim(), this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.isRemissionApplied = true;\n this.viewCompStatus = '';\n this.viewStatus = 'retroremissionconfirmationpage';\n this.remissionReference =JSON.parse(response).remission_reference;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n }\n );\n }\n }\n\n processRefund() {\n this.errorMessage = '';\n this.isConfirmationBtnDisabled = true;\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n if (this.remissionReference === undefined || this.remissionReference === '') {\n this.remissionReference = this.remission.remission_reference;\n }\n const requestBody = new PostIssueRefundRetroRemission(this.remissionReference);\n this.paymentViewService.postRefundRetroRemission(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n })\n }\n\n // Issue Refund changes\n\n gotoIssueRefundConfirmation(payment: IPayment) {\n this.paymentLibComponent.iscancelClicked = false;\n if(this.paymentLibComponent.REFUNDLIST === \"true\") {\n this.isFromRefundListPage = true; \n }\n this.errorMessage = '';\n this.refundReason = this.remissionForm.controls['refundReason'].value === null ? this.remissionForm.controls['refundDDReason'].value : this.remissionForm.controls['refundReason'].value;\n if(!this.refundReason || this.refundReason === 'Select a different reason') {\n this.refundHasError = true;\n } else if(this.selectedRefundReason.includes('Other') && (this.remissionForm.controls['reason'].value == '' || this.remissionForm.controls['reason'].value == null)) {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n } else if (this.selectedRefundReason.includes('Other') && this.remissionForm.controls['reason'].value !== '') {\n this.refundHasError = false;\n this.refundReason += '-' + this.remissionForm.controls['reason'].value;\n this.displayRefundReason = this.selectedRefundReason + '-' + this.remissionForm.controls['reason'].value;\n if ( this.isFromRefundListPage ) {\n this.refundListReason.emit({reason: this.displayRefundReason, code: this.refundReason});\n } else {\n this.viewCompStatus = '';\n this.viewStatus = 'checkissuerefundpage';\n }\n \n } else {\n this.displayRefundReason = this.selectedRefundReason;\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n } else {\n this.viewCompStatus = '';\n this.viewStatus = 'checkissuerefundpage';\n }\n \n }\n }\n\n gotoIssueRefundPage() {\n this.errorMessage = '';\n this.viewCompStatus = 'issuerefund';\n this.viewStatus = '';\n this.isRefundRemission = true;\n this.errorMessage = false;\n this.refundHasError = false;\n this.isReasonEmpty = false;\n }\n\n changeIssueRefundReason() {\n // this.remissionForm.controls['refundReason'].setValue('Duplicate payment');\n this.errorMessage = '';\n this.refundHasError = false;\n this.isReasonEmpty = false;\n this.viewCompStatus = 'issuerefund';\n this.viewStatus = '';\n this.isRefundRemission = true;\n }\n\n confirmIssueRefund() {\n this.isConfirmationBtnDisabled = true;\n this.errorMessage = '';\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n \n const requestBody = new PostRefundRetroRemission(this.payment.reference,this.refundReason);\n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference =JSON.parse(response).refund_reference;\n if(JSON.parse(response).refund_amount) {\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n })\n }\n\n// Retro Refund\n\n confirmRetroRefund() {\n this.isConfirmationBtnDisabled = true;\n this.errorMessage = '';\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n\n const requestBody = new PostRefundRetroRemission(this.payment.reference,'RR004-Retrospective remission');\n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'retrorefundconfirmationpage';\n this.refundReference =JSON.parse(response).refund_reference;\n if(JSON.parse(response).refund_amount) {\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n });\n }\n\n selectRadioButton(key, value) {\n localStorage.setItem(\"myradio\", key);\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundDDReason'].setValue('Select a different reason', {onlySelf: true});\n remissionctrls['reason'].reset();\n this.isRefundReasonsSelected = true;\n this.errorMessage = false;\n this.isReasonEmpty = false;\n this.showReasonText = false;\n this.refundHasError = false;\n this.selectedRefundReason = key;\n if(this.selectedRefundReason.includes('Other')) {\n this.showReasonText = true;\n this.refundHasError = false;\n this.refundReason = key;\n }\n }\n\n selectchange(args) {\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundReason'].reset();\n remissionctrls['reason'].reset();\n this.isRefundReasonsSelected = false;\n this.showReasonText = false;\n this.refundHasError = false;\n this.selectedRefundReason = args.target.options[args.target.options.selectedIndex].id;\n this.reasonLength = (29-this.selectedRefundReason.split('- ')[1].length);\n\n if(this.selectedRefundReason.includes('Other')) {\n this.showReasonText = true;\n this.refundHasError = false;\n this.refundReason = args.target.options[args.target.options.selectedIndex].id;\n }\n\n\n }\n\n gotoServiceRequestPage(event: any) {\n this.errorMessage ='';\n event.preventDefault();\n if (this.isFromServiceRequestPage && !this.isFromPaymentDetailPage) {\n this.viewStatus = 'order-full-view';\n this.viewCompStatus = '';\n } else if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n } else {\n this.paymentLibComponent.paymentMethod = this.payment.method;\n this.paymentLibComponent.paymentGroupReference = this.paymentLibComponent.paymentGroupReference\n this.paymentLibComponent.paymentReference = this.payment.reference;\n this.paymentLibComponent.viewName = 'payment-view';\n this.OrderslistService.setOrderRef(this.orderRef);\n this.OrderslistService.setorderCCDEvent(this.orderCCDEvent);\n this.OrderslistService.setorderCreated(this.orderCreated);\n this.OrderslistService.setorderDetail(this.orderDetail);\n this.OrderslistService.setorderParty(this.orderParty);\n this.OrderslistService.setorderTotalPayments(this.orderTotalPayments);\n this.OrderslistService.setorderRemissionTotal(this.orderRemissionTotal);\n this.OrderslistService.setorderFeesTotal(this.orderFeesTotal);\n this.viewStatus = 'payment-view';\n this.sendOrderDetail = this.orderDetail;\n this.sendOrderRef = this.orderRef;\n if(this.LOGGEDINUSERROLES === undefined) {\n this.OrderslistService.getUserRolesList().subscribe((data) => this.LOGGEDINUSERROLES = data);\n }\n this.viewCompStatus = '';\n }\n // if (this.paymentLibComponent.TAKEPAYMENT === undefined && this.paymentLibComponent.SERVICEREQUEST === undefined) {\n // this.paymentLibComponent.SERVICEREQUEST = 'false';\n // this.paymentLibComponent.TAKEPAYMENT = false;\n // }\n // if (this.isFromServiceRequestPage) {\n // //this.paymentLibComponent.TAKEPAYMENT = false;\n // this.paymentLibComponent.isFromRefundStatusPage = false;\n // this.viewStatus = 'main'\n // this.paymentLibComponent.viewName = 'case-transactions';\n // this.OrderslistService.setisFromServiceRequestPage(true);\n // this.OrderslistService.setnavigationPage('servicerequestpage');\n // }\n // if ( this.isFromRefundListPage ) {\n // this.paymentLibComponent.iscancelClicked = true;\n // this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n // this.paymentLibComponent.isFromRefundStatusPage = true;\n // } \n // if(!this.paymentLibComponent.isFromRefundStatusPage) {\n // if(this.payment) {\n // this.OrderslistService.setpaymentPageView({method: this.payment.method,payment_group_reference: this.paymentGroupRef, reference:this.payment.reference});\n // }\n // if (this.isFromServiceRequestPage) { \n // this.OrderslistService.setnavigationPage('servicerequestpage');\n // } else {\n // this.OrderslistService.setnavigationPage('paymentdetailspage');\n // }\n // this.errorMessage = '';\n // this.paymentLibComponent.viewName = 'case-transactions';\n // // this.paymentLibComponent.TAKEPAYMENT = true;\n // this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n // this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n // this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n // this.paymentLibComponent.isFromServiceRequestPage = true; \n // this.paymentLibComponent.ISBSENABLE = true;\n // let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n // partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n // partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n // partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n // partUrl += `&caseType=${this.caseType}`;\n // partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n // partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n // if(this.isFromPaymentDetailPage) {\n // partUrl += this.paymentLibComponent.isFromPaymentDetailPage\n // }\n // if(!this.paymentLibComponent.TAKEPAYMENT) {\n // this.paymentLibComponent.TAKEPAYMENT = undefined;\n // }\n // if ( this.paymentLibComponent.SERVICEREQUEST) {\n // const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&selectedOption=${this.option}${partUrl}`;\n // this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n // this.router.onSameUrlNavigation = 'reload';\n // this.router.navigateByUrl(url);\n // } else {\n // const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n // this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n // this.router.onSameUrlNavigation = 'reload';\n // this.router.navigateByUrl(url);\n // }\n \n // } else {\n // this.paymentLibComponent.viewName === 'refundstatuslist';\n // this.paymentLibComponent.isFromRefundStatusPage = true;\n // }\n }\n\n gotoCasetransationPage() {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.errorMessage = '';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.VIEW = 'case-transactions';\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n this.paymentLibComponent.isFromServiceRequestPage = true; \n this.resetOrderData();\n let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n\n gotoCasetransationPageCancelBtnClicked(event: Event) {\n event.preventDefault();\n if( !this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.VIEW ='case-transactions';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n // this.OrderslistService.setnavigationPage('casetransactions');\n // this.OrderslistService.setisFromServiceRequestPage(false);\n // this.paymentLibComponent.VIEW ='case-transactions';\n // this.paymentLibComponent.viewName = 'case-transactions';\n // this.paymentLibComponent.ISBSENABLE = true;\n // this.paymentLibComponent.isRefundStatusView = false;\n // this.resetOrderData(); let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n // partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n // partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n // partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n // partUrl += `&caseType=${this.caseType}`;\n // partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n // partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n // const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n // this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n // this.router.onSameUrlNavigation = 'reload';\n // this.router.navigateByUrl(url);\n } else { \n\n if (this.paymentLibComponent.REFUNDLIST) {\n this.paymentLibComponent.viewName = 'refund-list';\n return;\n }\n if (this.paymentLibComponent.TAKEPAYMENT === undefined && this.paymentLibComponent.SERVICEREQUEST === undefined) {\n this.paymentLibComponent.SERVICEREQUEST = 'false';\n }\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.OrderslistService.setpaymentPageView({method: '',payment_group_reference: '', reference:''});\n this.OrderslistService.setnavigationPage('casetransactions');\n this.errorMessage = '';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n this.paymentLibComponent.isFromServiceRequestPage = true; \n this.paymentLibComponent.ISBSENABLE = true;\n let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n if(this.isFromPaymentDetailPage) {\n partUrl += this.paymentLibComponent.isFromPaymentDetailPage\n }\n\n if(!this.paymentLibComponent.SERVICEREQUEST) {\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n } else {\n const url =`/payment-history/${this.ccdCaseNumber}?selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n }\n \n }\n\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n\n\n getFormattedCurrency(currency:number){\n if(currency.toString().includes(\".\")){\n return currency\n }\n return currency.toString().concat(\".00\");\n }\n \n}","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'ccdHyphens'\n})\nexport class CcdHyphensPipe implements PipeTransform {\n constructor() {}\n transform(value: any, args?: any): any {\n const pattern = /^([0-9]{4})+([0-9]{4})+([0-9]{4})+([0-9]{4})$/;\n if ( value.match(pattern)) {\n return value.replace(pattern,'$1-$2-$3-$4') \n }\n return value;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'capitalize'\n})\nexport class CapitalizePipe implements PipeTransform {\n constructor() { }\n transform(s: any, args?: any): any {\n return s && s[0].toUpperCase() + s.slice(1) || \"\";\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'keyValue'\n})\nexport class keyValuePipe implements PipeTransform {\n constructor() {}\n transform(input: any): any {\n let keys = [];\n for (let key in input) {\n if (input.hasOwnProperty(key)) {\n keys.push({ key: key, value: input[key]});\n }\n }\n return keys;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\nimport { DomSanitizer, SafeHtml } from '@angular/platform-browser';\n\n@Pipe({ name: 'sanitizeHtml' })\nexport class SanitizeHtmlPipe implements PipeTransform {\n constructor(private sanitizer: DomSanitizer) {}\n transform(value: any): SafeHtml {\n return this.sanitizer.bypassSecurityTrustHtml(value);\n }\n}\n","import { Injectable } from '@angular/core';\nimport * as FileSaver from 'file-saver';\nimport * as XLSX from 'xlsx';\nimport * as XLSXStyle from 'xlsx-style';\n\n\nconst EXCEL_TYPE = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8';\nconst EXCEL_EXTENSION = '.xlsx';\n\n@Injectable()\nexport class XlFileService {\n\n constructor() { }\n\n public exportAsExcelFile(json: any[], excelFileName: string): void {\n let worksheet: XLSX.WorkSheet; \n let workbook: XLSX.WorkBook; \n\n if(excelFileName.match('Data_Loss')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['loss_resp','payment_asset_dcn','env_ref','env_item','resp_service_id','resp_service_name','date_banked','bgc_batch','payment_method','amount']});\n worksheet = this.setDataLossReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Unprocessed')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','exception_ref','ccd_ref','date_banked','bgc_batch','payment_asset_dcn','env_ref','env_item','payment_method','amount']});\n worksheet = this.setUnprocessedReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Processed_Unallocated')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','allocation_status','receiving_office','allocation_reason','ccd_exception_reference','ccd_case_reference','payment_asset_dcn','env_ref','env_item','date_banked','bgc_batch','payment_method','amount']});\n worksheet = this.setProcessedUnallocatedReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else {\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','surplus_shortfall','balance','payment_amount','ccd_case_reference', 'ccd_exception_reference', 'processed_date', 'reason', 'explanation', 'user_name']});\n worksheet = this.setShortFallReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n }\n workbook = { Sheets: { 'data': worksheet }, SheetNames: ['data'] };\n const excelBuffer: any = XLSX.write(workbook, { bookType: 'xlsx', type: 'array' });\n this.saveAsExcelFile(excelBuffer, excelFileName);\n }\n\n\nprivate autoFitColumns (worksheet: XLSX.WorkSheet,json:any) : XLSX.WorkSheet {\n let objectMaxLength = []; \n let ColWidth = [];\n let obj = <any>Object;\n for (let i = 0; i < json.length; i++) {\n let value = obj.values(json[i]);\n let key = obj.keys(json[i]);\n for (let j = 0; j < value.length; j++) {\n if(value[j] === null){\n value[j] = '';\n }\n objectMaxLength[j] =\n key[j].length >= value[j].length\n ? key[j].length+2\n : value[j].length+1;\n if( value[j].length === undefined){\n objectMaxLength[j] = key[j].length+2;\n }\n ColWidth.push({'width': +objectMaxLength[j]});\n }\n }\n worksheet['!cols'] = ColWidth;\n return worksheet;\n}\n\n\nprivate setDataLossReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Loss_Resp\";\n worksheet.B1.v = \"Payment_Asset_DCN\";\n worksheet.C1.v = \"Envelope_Ref\";\n worksheet.D1.v = \"Envelope_Item\";\n worksheet.E1.v = \"Resp_Service ID\";\n worksheet.F1.v = \"Resp_Service Name\";\n worksheet.G1.v = \"Date_Banked\";\n worksheet.H1.v = \"BGC_Batch\";\n worksheet.I1.v = \"Payment_Method\";\n worksheet.J1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setUnprocessedReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Exception_Ref\";\n worksheet.D1.v = \"CCD_Ref\";\n worksheet.E1.v = \"Date_Banked\";\n worksheet.F1.v = \"BGC_Batch\";\n worksheet.G1.v = \"Payment_Asset_DCN\";\n worksheet.H1.v = \"Envelope_Ref\";\n worksheet.I1.v = \"Envelope_Item\";\n worksheet.J1.v = \"Payment_Method\";\n worksheet.K1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setProcessedUnallocatedReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Allocation_Status\";\n worksheet.D1.v = \"Receiving_Office\";\n worksheet.E1.v = \"Allocation_Reason\";\n worksheet.F1.v = \"CCD_Exception_Ref\";\n worksheet.G1.v = \"CCD_Case_Ref\";\n worksheet.H1.v = \"Payment_Asset_DCN\";\n worksheet.I1.v = \"Envelope_Ref\";\n worksheet.J1.v = \"Envelope_Item\";\n worksheet.K1.v = \"Date_Banked\";\n worksheet.L1.v = \"BGC_Batch\";\n worksheet.M1.v = \"Payment_Method\";\n worksheet.N1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setShortFallReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Over Payment_Under Payment\";\n worksheet.D1.v = \"Balance\";\n worksheet.E1.v = \"Payment_Amount\";\n worksheet.F1.v = \"CCD_Case_Ref\";\n worksheet.G1.v = \"Exception_Ref\";\n worksheet.H1.v = \"Processed_Date\";\n worksheet.I1.v = \"Reason\";\n worksheet.J1.v = \"Explanation\";\n worksheet.K1.v = \"Updated Name\";\n return worksheet;\n}\n\nprivate saveAsExcelFile(buffer: any, fileName: string): void {\n const data: Blob = new Blob([buffer], {\n type: EXCEL_TYPE\n });\n FileSaver.saveAs(data, fileName + EXCEL_EXTENSION);\n }\n}\n","import { Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormGroup, FormControl } from '@angular/forms';\nimport { formatDate } from \"@angular/common\";\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {XlFileService} from '../../services/xl-file/xl-file.service';\n\n@Component({\n selector: 'ccpay-reports',\n templateUrl: './reports.component.html',\n styleUrls: ['./reports.component.scss']\n})\nexport class ReportsComponent implements OnInit {\n reportsForm: FormGroup;\n startDate: string;\n endDate: string;\n ccdCaseNumber: string;\n isDownLoadButtondisabled:Boolean = false;\n isStartDateLesthanEndDate: Boolean = false;\n isDateRangeBetnWeek: Boolean = false;\n errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n paymentGroups: IPaymentGroup[] = [];\n\n constructor(\n private xlFileService: XlFileService,\n private errorHandlerService: ErrorHandlerService,\n private formBuilder: FormBuilder,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private paymentViewService: PaymentViewService) { }\n \n\n ngOnInit() {\n this.fromValidation();\n\n }\n\n getToday(): string {\n return new Date().toISOString().split('T')[0];\n }\n\n getSelectedFromDate(): void {\n this.validateDates(this.reportsForm.get('selectedreport').value);\n }\n\n validateDates(reportName){\n const selectedStartDate = this.tranformDate(this.reportsForm.get('startDate').value),\n selectedEndDate = this.tranformDate(this.reportsForm.get('endDate').value);\n const isDateRangeMoreThanWeek = (<any>new Date(selectedStartDate) - <any>new Date(selectedEndDate))/(1000 * 3600 * -24) > 7;\n if(new Date(selectedStartDate) > new Date(selectedEndDate) && selectedEndDate !== ''){\n this.reportsForm.get('startDate').setValue('');\n this.isDateRangeBetnWeek = false;\n this.isStartDateLesthanEndDate = true;\n } else if(reportName && reportName ==='SURPLUS_AND_SHORTFALL' && isDateRangeMoreThanWeek ) {\n this.isDateRangeBetnWeek = true;\n this.isStartDateLesthanEndDate = false;\n } else {\n this.isDateRangeBetnWeek = false;\n this.isStartDateLesthanEndDate = false;\n }\n\n }\n\n fromValidation() {\n this.reportsForm = this.formBuilder.group({\n selectedreport: new FormControl('') ,\n startDate: new FormControl(''),\n endDate: new FormControl('') \n });\n}\n\ndownloadReport(){\n this.isDownLoadButtondisabled = true;\n const dataLossRptDefault = [{loss_resp:'',payment_asset_dcn:'',env_ref:'',env_item:'',resp_service_id:'',resp_service_name:'',date_banked:'',bgc_batch:'',payment_method:'',amount:''}],\n unProcessedRptDefault = [{resp_service_id:'',resp_service_name:'',exception_ref:'',ccd_ref:'',date_banked:'',bgc_batch:'',payment_asset_dcn:'',env_ref:'',env_item:'',payment_method:'',amount:''}],\n processedUnallocated =[{resp_service_id:'',resp_service_name:'',allocation_status:'',receiving_office:'',allocation_reason:'',ccd_exception_ref:'',ccd_case_ref:'',payment_asset_dcn:'',env_ref:'',env_item:'',date_banked:'',bgc_batch:'',payment_method:'',amount:'',updated_by:''}],\n shortFallsRptDefault = [{resp_service_id:'',resp_service_name:'',surplus_shortfall:'',balance:'',payment_amount:'',ccd_case_reference:'',ccd_exception_reference:'',processed_date:'', reason:'', explanation:'', user_name:''}],\n selectedReportName = this.reportsForm.get('selectedreport').value,\n selectedStartDate = this.tranformDate(this.reportsForm.get('startDate').value),\n selectedEndDate = this.tranformDate(this.reportsForm.get('endDate').value);\n\n if(selectedReportName === 'PROCESSED_UNALLOCATED' || selectedReportName === 'SURPLUS_AND_SHORTFALL' ){\n this.paymentViewService.downloadSelectedReport(selectedReportName,selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n const result = JSON.parse(response);\n let res= {data: this.applyDateFormat(result)};\n if(res['data'].length === 0 && selectedReportName === 'PROCESSED_UNALLOCATED' ){\n res.data= processedUnallocated;\n } else if(res['data'].length === 0 && selectedReportName === 'SURPLUS_AND_SHORTFALL' ) {\n res.data= shortFallsRptDefault;\n } \n if(result['data'].length > 0) {\n for( var i=0; i< res['data'].length; i++) {\n if(res['data'][i][\"payment_asset_dcn\"] !== undefined) {\n res['data'][i]['env_ref'] = res['data'][i][\"payment_asset_dcn\"].substr(0,13);\n res['data'][i]['env_item'] = res['data'][i][\"payment_asset_dcn\"].substr(13,21);\n }\n if(res['data'][i][\"amount\"] !== undefined) {\n res['data'][i]['amount'] = this.convertToFloatValue(res['data'][i]['amount']);\n }\n if(res['data'][i][\"balance\"] !== undefined) {\n res['data'][i]['balance'] = this.convertToFloatValue(res['data'][i][\"balance\"]);\n }\n let Op = res['data'][i][\"surplus_shortfall\"];\n if(Op !== undefined) {\n res['data'][i]['surplus_shortfall'] = Op ==\"Surplus\" ? \"Over payment\":\"Under payment\";\n }\n if(res['data'][i][\"payment_amount\"] !== undefined) {\n res['data'][i]['payment_amount'] = this.convertToFloatValue(res['data'][i]['payment_amount']);\n }\n }\n } \n this.isDownLoadButtondisabled = false;\n this.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate));\n },\n (error: any) => {\n this.isDownLoadButtondisabled = false;\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n })\n } else {\n this.bulkScaningPaymentService.downloadSelectedReport(selectedReportName,selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n const result = JSON.parse(response);\n let res = {data: this.applyDateFormat(result)};\n if(res['data'].length === 0 && selectedReportName === 'DATA_LOSS' ){\n res.data= dataLossRptDefault;\n } else if(res['data'].length === 0 && selectedReportName === 'UNPROCESSED'){\n res.data = unProcessedRptDefault;\n }\n if(result['data'].length > 0) {\n for( var i=0; i< res['data'].length; i++) {\n if(res['data'][i][\"amount\"] !== undefined) {\n res['data'][i]['amount'] = this.convertToFloatValue(res['data'][i]['amount']);\n }\n if(res['data'][i][\"payment_asset_dcn\"] !== undefined) {\n res['data'][i]['env_ref'] = res['data'][i][\"payment_asset_dcn\"].substr(0,13);\n res['data'][i]['env_item'] = res['data'][i][\"payment_asset_dcn\"].substr(13,21);\n }\n }\n }\n this.isDownLoadButtondisabled = false;\n this.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate ));\n },\n (error: any) => {\n this.isDownLoadButtondisabled = false;\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n })\n }\n }\n\n getFileName(selectedOption: string, startDate: string, endDate: string ) {\n const loc = 'en-US',\n stDt = formatDate(startDate, 'ddMMyy', loc),\n enDt = formatDate(endDate, 'ddMMyy', loc),\n now = new Date(),\n currentDate = formatDate(now, 'ddMMyy', loc),\n timestamp = `${currentDate}_${this.getTwodigit(now.getHours())}${this.getTwodigit(now.getMinutes())}${this.getTwodigit(now.getSeconds())}`,\n selectedOptionTxt = this.getCamelCaseString(selectedOption);\n \n return selectedOptionTxt+'_'+stDt+'_To_'+enDt+'_Run_'+ timestamp;\n } \n tranformDate(strDate: string) {\n let result = '';\n if (strDate) {\n let parts = strDate.split('-');\n result = `${parts[1]}/${parts[2]}/${parts[0]}`;\n }\n return result;\n }\n getTwodigit(input: number){\n return (\"0\" + input).slice(-2);\n }\n getCamelCaseString(selectedOption) {\n let result;\n switch(selectedOption) { \n case 'UNPROCESSED': { \n result = 'Unprocessed';\n break; \n } \n case 'DATA_LOSS': { \n result = 'Data_Loss';\n break; \n } \n case 'PROCESSED_UNALLOCATED': { \n result = 'Processed_Unallocated';\n break; \n } \n case 'SURPLUS_AND_SHORTFALL': { \n result = 'Over Payment_Under Payment';\n break; \n } \n default: { \n result = selectedOption;\n break; \n } \n } \n return result;\n }\n applyDateFormat(res) {\n const fmt = 'dd/MM/yyyy',\n loc = 'en-US';\n return res['data'].map(value => {\n if (value['date_banked']) {\n value['date_banked'] = formatDate(value['date_banked'], fmt, loc);\n }\n return value;\n });\n }\n \n convertToFloatValue(amt) {\n return amt ? Number.parseFloat(amt).toFixed(2): '0.00';\n }\n}\n","import {Component, ViewChild, Input, ChangeDetectorRef} from '@angular/core';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport { MatTableDataSource} from '@angular/material/table';\nimport {MatSort } from '@angular/material/sort';\nimport {Sort } from '@angular/material/sort';\nimport {MatPaginator } from '@angular/material/paginator';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { THIS_EXPR } from '@angular/compiler/src/output/output_ast';\nimport { ActivatedRoute,Router } from '@angular/router';\n@Component({\n selector: 'ccpay-table',\n templateUrl: './table.component.html',\n styleUrls: ['./table.component.css']\n})\nexport class TableComponent {\n @Input('DATASOURCE') DATASOURCE: any[];\n @Input('STATUS') STATUS: string;\n @Input('errorMessage') errorMessage: string;\n isApprovalFlow: boolean;\n // displayedColumns = ['ccdCaseNumber', 'refundReference', 'reason', 'createBy', 'updateDate', 'Action'];\n displayedColumns = ['ccd_case_number', 'refund_reference', 'user_full_name','date_created', 'date_updated', 'Action'];\n \n dataSource: MatTableDataSource<any>;\n userLst;\n actualcount: number;\n count: number;\n refundList: IRefundList[];\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n constructor(\n private paymentLibComponent: PaymentLibComponent,\n private cdRef: ChangeDetectorRef,\n private OrderslistService: OrderslistService,\n private router: Router,\n private activeRoute: ActivatedRoute\n ) {}\n ngOnInit() {\n this.errorMessage = this.errorMessage;\n if(this.STATUS.toLowerCase() === 'sent for approval') {\n this.isApprovalFlow = true;\n } else {\n this.isApprovalFlow = false;\n }\n this.refundList = this.DATASOURCE;\n this.dataSource = new MatTableDataSource(this.refundList);\n this.actualcount = this.dataSource.data.length;\n if( this.refundList !== undefined) {\n this.userLst = this.refundList.reduce((r,{user_full_name}) => (r[user_full_name]='', r) , {});\n this.userLst = Object.keys(this.userLst);\n }\n this.userLst.sort((a, b) => a.toString().localeCompare(b));\n }\n /**\n * Set the paginator and sort after the view init since this component will\n * be able to query its view for the initialized paginator and sort.\n */\n ngAfterViewInit() {\n \n this.dataSource.sort = this.sort;\n\n //const sortState: Sort = {active: 'date_updated', direction: 'desc'};\n // this.sort.active = sortState.active;\n // this.sort.direction = sortState.direction;\n // this.sort.sortChange.emit(sortState);\n this.dataSource.paginator = this.paginator;\n this.dataSource.sort = this.sort;\n this.cdRef.detectChanges();\n }\n applyFilter(filterValue: string) {\n filterValue = filterValue.trim(); // Remove whitespace\n filterValue = filterValue.toLowerCase(); // Datasource defaults to lowercase matches\n this.dataSource.filter = filterValue;\n }\n selectchange(args){\n this.dataSource.filter = args.target.value;\n this.actualcount = this.dataSource.data.length;\n this.dataSource.paginator = this.paginator;\n }\n goToRefundProcessComponent(refundReference: string, refundData: IRefundList ) {\n this.paymentLibComponent.refundlistsource = refundData;\n this.paymentLibComponent.refundReference = refundReference;\n this.paymentLibComponent.viewName = 'process-refund';\n }\n goToRefundViewComponent(refundReference: string, refundData: IRefundList ) {\n this.OrderslistService.setRefundView(refundData);\n this.paymentLibComponent.viewName='refundstatuslist';\n this.paymentLibComponent.CCD_CASE_NUMBER = refundData.ccd_case_number;\n this.paymentLibComponent.isRefundStatusView = true;\n this.paymentLibComponent.isCallFromRefundList = true;\n }\n goToCaseReview(ccdCaseNumber: string, refundData: IRefundList ) {\n this.router.navigate([`/cases/case-details/${ccdCaseNumber}`], {relativeTo: this.activeRoute});\n }\n}","export class IResubmitRefundRequest {\n refund_reason: string;\n amount: number;\n \n \n constructor(refund_reason : string, amount: number) {\n this.refund_reason= refund_reason;\n this.amount = amount;\n \n } \n }\n ","import { Component, OnInit, Input } from '@angular/core';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { FormBuilder, FormGroup, Validators, FormControl, RequiredValidator } from '@angular/forms';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { Router } from '@angular/router';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { IRefundStatus } from '../../interfaces/IRefundStatus';\nimport { IResubmitRefundRequest } from '../../interfaces/IResubmitRefundRequest';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-refund-status',\n templateUrl: './refund-status.component.html',\n styleUrls: ['./refund-status.component.css']\n})\nexport class RefundStatusComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[] = [];\n @Input() isOldPcipalOff: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: boolean;\n refundStatusForm: FormGroup;\n selectedRefundReason: string;\n rejectedRefundList: IRefundList[] = [];\n approvalStatus = 'Sent for approval';\n rejectStatus = 'Update required';\n // approvalStatus = 'sent for approval';\n // rejectStatus = 'sent back';\n errorMessage = null;\n viewName: string;\n refundReason: string;\n refundlist: IRefundList;\n bsPaymentDcnNumber: string;\n isCallFromRefundList: boolean;\n refundButtonState: string = '';\n isAmountEmpty: boolean = false;\n isReasonEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n refundHasError: boolean = false;\n refundReasons: any[] = [];\n refundStatusHistories: IRefundStatus[];\n refundReference: string;\n refundAmount: string;\n refundCode: string;\n isRefundBtnDisabled: boolean = true;\n oldRefundReason: string;\n refundreason: string;\n navigationpage: string;\n isLastUpdatedByCurrentUser: boolean = true;\n isProcessRefund: boolean = false;\n changedAmount: number;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n\n constructor(private formBuilder: FormBuilder,\n private refundService: RefundsService,\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private router: Router,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n\n // if (this.check4AllowedRoles2AccessRefund()) {\n this.resetRemissionForm([false, false, false, false], 'All');\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.isCallFromRefundList = this.paymentLibComponent.isCallFromRefundList;\n // if(this.paymentLibComponent.isFromRefundStatusPage) {\n // this.viewName = 'reviewandsubmitview';\n // }\n if (this.paymentLibComponent.isRefundStatusView) {\n this.viewName = 'refundview';\n this.OrderslistService.getRefundView().subscribe((data) => this.refundlist = data);\n this.OrderslistService.getCCDCaseNumberforRefund.subscribe((data) => this.ccdCaseNumber = data);\n } else {\n this.viewName = 'refundstatuslist';\n this.refundService.getRefundStatusList(this.ccdCaseNumber).subscribe(\n refundList => {\n this.rejectedRefundList = refundList['refund_list'];\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n }\n\n\n this.refundStatusForm = this.formBuilder.group({\n amount: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[0-9]+(\\.[0-9]{1,2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl()\n });\n\n if(this.refundlist !== undefined) {\n this.getRefundsStatusHistoryList();\n\n if (this.LOGGEDINUSERROLES.some(i => i.includes('payments-refund-approver'))) {\n this.isProcessRefund = true;\n this.refundButtonState = this.refundlist.refund_status.name;\n return;\n }\n \n if (this.LOGGEDINUSERROLES.some(i => i.includes('payments-refund'))) {\n this.isProcessRefund = false;\n this.refundButtonState = this.refundlist.refund_status.name;\n }\n }\n //}\n }\n \n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n getRefundsStatusHistoryList() {\n if(this.refundlist !== undefined) {\n this.refundService.getRefundStatusHistory(this.refundlist.refund_reference).subscribe(\n statusHistoryList => {\n this.refundStatusHistories = statusHistoryList.status_history_dto_list;\n this.isLastUpdatedByCurrentUser = statusHistoryList.last_updated_by_current_user;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n }; \n }\n }\n\n goToRefundView(refundlist: IRefundList, navigationpage: string) {\n this.OrderslistService.setRefundView(refundlist);\n this.OrderslistService.setCCDCaseNumber(this.ccdCaseNumber);\n this.paymentLibComponent.viewName = 'refundstatuslist';\n this.paymentLibComponent.isRefundStatusView = true;\n this.refundlist = refundlist;\n this.OrderslistService.setnavigationPage(navigationpage);\n }\n\n loadCaseTransactionPage() {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n }\n\n loadRefundListPage() {\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n if (this.navigationpage === 'casetransactions') {\n this.loadCaseTransactionPage();\n } else {\n this.paymentLibComponent.viewName = 'refund-list';\n }\n }\n\n gotoReviewDetailsPage(event:any) {\n // event.preventDefault();\n this.errorMessage = false;\n this.paymentLibComponent.isRefundStatusView = true;\n this.ngOnInit();\n }\n\n gotoReviewAndReSubmitPage() {\n this.viewName = 'reviewandsubmitview';\n this.oldRefundReason = this.refundlist.reason;\n this.changedAmount = this.refundlist.amount;\n this.refundreason = this.refundStatusHistories.filter(data => data.status.toLowerCase() === 'update required')[0].notes;\n this.refundService.getRefundReasons().subscribe(\n refundReasons => {\n this.refundReasons = refundReasons;\n });\n }\n gotoRefundReasonPage() {\n this.isRefundBtnDisabled = false;\n this.paymentLibComponent.REFUNDLIST = \"true\";\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.errorMessage = false;\n this.viewName = 'issuerefund';\n }\n\n gotoAmountPage() {\n this.errorMessage = false;\n this.paymentLibComponent.REFUNDLIST = \"true\";\n this.isRefundBtnDisabled = false;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.viewName = 'processretroremissonpage';\n }\n\n goToReviewAndSubmitView() {\n const remissionctrls = this.refundStatusForm.controls\n if (this.refundStatusForm.dirty) {\n if (remissionctrls['amount'].value == '') {\n this.resetRemissionForm([true, false, false, false], 'amount');\n }\n else if (remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid) {\n this.resetRemissionForm([false, true, false, false], 'amount');\n }\n else if (remissionctrls['reason'].value == '') {\n this.resetRemissionForm([false, false, false, true], 'reason');\n } else {\n this.refundlist.reason = remissionctrls['reason'].value;\n this.viewName = 'reviewandsubmitview';\n }\n }\n\n }\n\n resetRemissionForm(val, field) {\n if (field === 'All') {\n this.isAmountEmpty = val[0];\n this.amountHasError = val[1];\n this.isRemissionLessThanFeeError = val[2];\n this.isReasonEmpty = val[3];\n } else if (field === 'amount' || field === 'All') {\n this.isAmountEmpty = val[0];\n this.amountHasError = val[1];\n this.isRemissionLessThanFeeError = val[2];\n } else if (field === 'reason' || field === 'All') {\n this.isReasonEmpty = val[3];\n }\n }\n\n selectRadioButton(key, value) {\n this.refundHasError = false;\n this.selectedRefundReason = key;\n if (key === 'Other') {\n this.refundHasError = false;\n this.refundReason = key;\n }\n }\n\n getRefundListReason(refundListReason: any) {\n if (this.paymentLibComponent.isFromRefundStatusPage && !this.paymentLibComponent.iscancelClicked) {\n this.refundlist.reason = refundListReason.reason;\n this.refundCode = refundListReason.code;\n } else {\n this.isRefundBtnDisabled = true;\n }\n this.viewName = 'reviewandsubmitview';\n this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;\n }\n\n getRefundAmount(amount: number) {\n if (this.paymentLibComponent.isFromRefundStatusPage && !this.paymentLibComponent.iscancelClicked) {\n if (amount > 0) {\n this.changedAmount = amount;\n // this.refundlist.amount = amount;\n }\n } else {\n this.isRefundBtnDisabled = true;\n }\n this.viewName = 'reviewandsubmitview';\n this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;\n }\n\n gotoReviewRefundConfirmationPage() {\n if (this.oldRefundReason === this.refundlist.reason) {\n this.refundCode = '';\n }\n const resubmitRequest = new IResubmitRefundRequest(this.refundCode, this.changedAmount);\n this.refundService.patchResubmitRefund(resubmitRequest, this.refundlist.refund_reference).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n this.viewName = 'reviewrefundconfirmationpage';\n }\n },\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n }\n );\n\n }\n\n goToRefundProcessComponent(refundReference: string, refundList: IRefundList) {\n this.paymentLibComponent.refundlistsource = refundList;\n this.paymentLibComponent.refundReference = refundReference;\n this.paymentLibComponent.viewName = 'process-refund';\n }\n\n}\n","import { THIS_EXPR } from '@angular/compiler/src/output/output_ast';\nimport { Component, Input, OnInit, Output, EventEmitter } from '@angular/core';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IPaymentView } from '../../interfaces/IPaymentView';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { Router } from '@angular/router';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-service-request',\n templateUrl: './service-request.component.html',\n styleUrls: ['./service-request.component.css']\n})\nexport class ServiceRequestComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input('viewStatus') viewStatus: string;\n @Input('orderDetail') orderDetail: any[];\n @Input('orderRef') orderRef: string;\n @Input('orderStatus') orderStatus: string;\n @Input('orderParty') orderParty: string;\n @Input('orderCreated') orderCreated: Date;\n @Input('orderCCDEvent') orderCCDEvent: string;\n @Input('orderFeesTotal') orderFeesTotal: number;\n @Input('orderTotalPayments') orderTotalPayments: number;\n @Input('orderRemissionTotal') orderRemissionTotal: number;\n @Input('takePayment') takePayment: boolean;\n @Input('ccdCaseNumber') ccdCaseNumber: boolean;\n @Input(\"isServiceRequest\") isServiceRequest: string;\n @Output() goToServiceRquestComponent: EventEmitter<any> = new EventEmitter();\n\n\n servicerequest: string;\n // ccdCaseNumber: string;\n excReference: string;\n paymentGroups: any[] = [];\n payments: IPayment[] = [];\n nonPayments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n fees: IFee[] = [];\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalNonOffPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n paymentRef: string;\n isTurnOff: boolean;\n isNewPcipalOff: boolean;\n isRefundRemission: boolean = true;\n isOldPcipalOff: boolean;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = true;\n isExceptionRecord: boolean = false;\n isUnprocessedRecordSelected: boolean = false;\n exceptionRecordReference: string;\n isAnyFeeGroupAvilable: boolean = true;\n isHistoricGroupAvailable: boolean = false;\n isBulkScanEnable;\n isRemissionsMatch: boolean;\n isRemoveBtnDisabled: boolean = false;\n feeId: IFee;\n clAmountDue: number = 0;\n unprocessedRecordCount: number;\n isFeeRecordsExist: boolean = false;\n isGrpOutstandingAmtPositive: boolean = false;\n totalRefundAmount: Number;\n caseType: String;\n // lsCcdNumber: any = ls.get<any>('ccdNumber');\n payment: IPayment;\n paymentGroup: IPaymentGroup;\n paymentView: IPaymentView;\n\n\n isAddRemissionEnable: boolean = false;\n orderRemissionDetails: any[] = [];\n orderLevelFees: IOrderReferenceFee[] = [];\n cpoDetails: any = null;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n\n isCPODown: boolean;\n test: boolean;\n isPBA: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n isAddRemissionBtnEnabled: boolean = false;\n isRefundRemissionBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n isFromServiceRequestPage: boolean;\n navigationpage: string;\n remissionFeeAmt: number;\n\n constructor(\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private OrderslistService: OrderslistService,\n private router: Router) { }\n\n ngOnInit() {\n if (this.viewStatus === undefined) {\n this.viewStatus = this.paymentLibComponent.viewName;\n }\n if(this.paymentLibComponent.isFromServiceRequestPage && this.paymentLibComponent.isFromPaymentDetailPage) {\n if(this.paymentLibComponent.isFromPaymentDetailPage && this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.getorderRefs().subscribe((data) => this.orderRef = data);\n this.OrderslistService.getorderCCDEvents().subscribe((data) => this.orderCCDEvent = data);\n this.OrderslistService.getorderCreateds().subscribe((data) => this.orderCreated = data);\n this.OrderslistService.getorderDetail().subscribe((data) => this.orderDetail = data);\n this.OrderslistService.getorderPartys().subscribe((data) => this.orderParty = data);\n this.OrderslistService.getorderRemissionTotals().subscribe((data) => this.orderRemissionTotal = data);\n this.OrderslistService.getorderFeesTotals().subscribe((data) => this.orderFeesTotal = data);\n this.OrderslistService.getoorderTotalPaymentss().subscribe((data) => this.orderTotalPayments = data);\n }\n }\n // if (this.takePayment) {\n // this.paymentLibComponent.TAKEPAYMENT = this.takePayment;\n // }\n }\n goToServiceRequestPage() {\n this.goToServiceRquestComponent.emit();\n }\n\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n this.OrderslistService.setnavigationPage('servicerequestpage');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isTakePayment = this.paymentLibComponent.TAKEPAYMENT;\n if (this.takePayment) {\n this.paymentLibComponent.isTakePayment = this.takePayment;\n }\n this.paymentLibComponent.SERVICEREQUEST = \"true\";\n this.paymentLibComponent.isFromServiceRequestPage = false;\n if(this.isServiceRequest !== 'false') {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n }\n this.paymentLibComponent.isFromRefundStatusPage = false;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.resetOrderData();\n let partUrl = this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n if(this.isServiceRequest === 'false') {\n partUrl += this.paymentLibComponent.TAKEPAYMENT ? '&takePayment=true' : '&takePayment=false';\n }\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += this.isServiceRequest !== 'false' ? '&servicerequest=true' : '&servicerequest=false';\n partUrl += `&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n const url = `/payment-history/${this.paymentLibComponent.CCD_CASE_NUMBER}?view=case-transactions&selectedOption=${this.paymentLibComponent.SELECTED_OPTION}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund()) {\n if (this.orderDetail[0]['remissions'].length > 0) {\n for (const remission of this.orderDetail[0]['remissions']) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n }\n return true;\n } else {\n return false;\n }\n }\n\n chkForPBAPayment(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n this.paymentLibComponent.paymentReference = payment.reference;\n this.isPBA = true;\n }\n });\n }\n });\n if (this.isPBA) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n addRemission(fee: IFee) {\n if(this.chkForAddRemission(fee.code)) {\n this.feeId = fee;\n this.viewStatus = 'addremission';\n this.payment = this.orderDetail[0].payments[0];\n this.paymentViewService.getApportionPaymentDetails(this.orderDetail[0].payments[0].reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n this.viewStatus = 'addrefundforremission';\n \n this.payment = payment;\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.payment.reference));\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n cancelRemoval() {\n this.viewStatus = 'main';\n }\n\n removeFee(fee: any) {\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n window.location.reload();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n this.isIssueRefunfBtnEnable = true;\n }\n if (this.isIssueRefunfBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n if (payment !== null && payment !== undefined) {\n let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\n }\n }\n\n issueRefund(payment: IPayment) {\n if (payment !== null && payment !== undefined) {\n if(this.chkIssueRefundBtnEnable(payment)) {\n this.viewStatus = 'issuerefund';\n this.payment = payment;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.isRefundRemission = true;\n }\n }\n }\n\n goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent({ paymentGroupReference, paymentReference, paymentMethod });\n }\n\n goToPaymentViewComponent(paymentGroup: any) {\n this.paymentLibComponent.paymentMethod = paymentGroup.paymentMethod;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentGroup.paymentReference;\n this.OrderslistService.setOrderRef(this.orderRef);\n this.OrderslistService.setorderCCDEvent(this.orderCCDEvent);\n this.OrderslistService.setorderCreated(this.orderCreated);\n this.OrderslistService.setorderDetail(this.orderDetail);\n this.OrderslistService.setorderParty(this.orderParty);\n this.OrderslistService.setorderTotalPayments(this.orderTotalPayments);\n this.OrderslistService.setorderRemissionTotal(this.orderRemissionTotal);\n this.OrderslistService.setorderFeesTotal(this.orderFeesTotal);\n this.viewStatus = 'payment-view';\n }\n\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n}\n","export class IserviceRequestCardPayment {\n amount: string\n currency: string\n language: string\n \n constructor(amount : string) {\n this.amount = amount;\n this.currency = 'GBP';\n this.language = 'string';\n } \n}\n ","export class IserviceRequestPbaPayment {\n account_number: string;\n amount: string\n currency: string\n customer_reference: string\n organisation_name: string\n \n constructor(account_number : string, amount : string, customer_reference: string, orgName: string) {\n this.account_number = account_number;\n this.amount = amount;\n this.currency = 'GBP';\n this.customer_reference = customer_reference;\n this.organisation_name = orgName;\n } \n}\n ","import { Component, OnInit, Input} from '@angular/core';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IserviceRequestCardPayment } from '../../interfaces/IserviceRequestCardPayment';\nimport { IserviceRequestPbaPayment } from '../../interfaces/IserviceRequestPbaPayment';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-pba-payment',\n templateUrl: './pba-payment.component.html',\n styleUrls: ['./pba-payment.component.scss']\n})\nexport class PbaPaymentComponent implements OnInit {\n @Input() pbaPayOrderRef: any;\n viewStatus: string;\n pbaAccountList: string[];\n isPBAAccountHold: boolean = false;\n errorMsg: any;\n isCardPaymentSuccess: boolean = true;\n isInSufficiantFund: boolean = false;\n isPBAAccountNotExist: boolean = false;\n isPBAServerError: boolean = false;\n isGetPBAAccountSucceed: boolean = false;\n selectedPbaAccount: string = '';\n pbaAccountRef: string = '';\n isPbaAccountSelected: boolean = false;\n isCardPaymentSelected: boolean = false;\n isPBADropdownSelected: boolean = false;\n isContinueButtondisabled: boolean = true;\n isPBAAccountPaymentSuccess: boolean = false;\n pbaAccountrPaymentResult: any;\n orgName: string = '';\n\n constructor(private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService) {}\n\n ngOnInit() {\n this.pbaPayOrderRef = this.paymentLibComponent.pbaPayOrderRef;\n this.viewStatus = 'pba-payment';\n this.errorMsg = null;\n this.paymentViewService.getPBAaccountDetails()\n .subscribe(\n result => {\n this.isGetPBAAccountSucceed = true;\n this.orgName = result.organisationEntityResponse.name;\n this.pbaAccountList = result.organisationEntityResponse.paymentAccount;\n },\n error => {\n this.errorMsg = error;\n }\n );\n\n }\n selectpbaaccount(args) {\n if(args.currentTarget.id === 'pbaAccountNumber') {\n this.isPBADropdownSelected = true;\n this.selectedPbaAccount = args.target.value; \n }\n if(args.currentTarget.id === 'pbaAccountRef') {\n this.pbaAccountRef = args.target.value; \n }\n if(this.selectedPbaAccount !== '' && this.pbaAccountRef !== \"\") {\n this.isContinueButtondisabled = false;\n } else {\n this.isContinueButtondisabled = true;\n }\n }\n\n saveAndContinue() {\n\n if(this.isPbaAccountSelected) {\n this.isInSufficiantFund = false;\n this.isPBAAccountNotExist = false;\n this.isPBAServerError = false;\n this.isPBAAccountPaymentSuccess = false;\n if ( this.pbaAccountList.indexOf(this.selectedPbaAccount) !== -1 ) {\n const requestBody = new IserviceRequestPbaPayment(\n this.selectedPbaAccount, this.pbaPayOrderRef.orderTotalFees, this.pbaAccountRef, this.orgName);\n this.paymentViewService.postPBAaccountPayment(this.pbaPayOrderRef.orderRefId, requestBody)\n .subscribe(\n r => {\n try {\n this.pbaAccountrPaymentResult = JSON.parse(r);\n } catch(e) {\n this.pbaAccountrPaymentResult = r;\n }\n this.isPBAAccountPaymentSuccess = true;\n },\n e => {\n if(e.status == '402') {\n this.isInSufficiantFund = true; \n } else if(e.status == '410') {\n this.isPBAAccountNotExist = true;\n } else if(e.status == '412') {\n this.isPBAAccountHold = true;\n } else {\n this.isPBAServerError = true;\n }\n }\n );\n } else {\n this.isPBAServerError = true;\n }\n } else if (this.isCardPaymentSelected) {\n this.cardPayment();\n }\n\n }\n cardPayment() {\n this.isCardPaymentSuccess = true;\n const requestBody = new IserviceRequestCardPayment (\n this.pbaPayOrderRef.orderTotalFees);\n this.paymentViewService.postWays2PayCardPayment(this.pbaPayOrderRef.orderRefId, requestBody)\n .subscribe(\n result => {\n const paymentUrl = JSON.parse(result).next_url;\n window.location.href = paymentUrl;\n },\n error => {\n this.isCardPaymentSuccess = false;\n }\n );\n\n }\n selectPaymentMethod(type: string) {\n if(type === 'PBA') {\n this.isPbaAccountSelected = true;\n this.isCardPaymentSelected = false;\n this.isPBADropdownSelected = false\n this.isContinueButtondisabled = true;\n this.selectedPbaAccount = null;\n } else if (type === 'CARD') {\n this.isPbaAccountSelected = false;\n this.isCardPaymentSelected = true;\n this.isPBADropdownSelected = false\n this.isContinueButtondisabled = false;\n }\n }\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = false;\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n }\n}\n","import { NgModule } from '@angular/core';\nimport { HttpClientModule } from '@angular/common/http';\nimport { CommonModule } from '@angular/common';\n\nimport { PaymentListComponent } from './components/payment-list/payment-list.component';\nimport { PaymentViewComponent } from './components/payment-view/payment-view.component';\nimport { ProcessRefundComponent } from './components/process-refund/process-refund.component';\nimport { RefundListComponent } from './components/refund-list/refund-list.component';\n\nimport { CardDetailsComponent } from './components/card-details/card-details.component';\nimport { PageNotFoundComponent } from './components/page-not-found.component';\nimport { PaymentLibComponent } from './payment-lib.component';\nimport { StatusHistoryComponent } from './components/status-history/status-history.component';\nimport { PbaDetailsComponent } from './components/pba-details/pba-details.component';\nimport { LoggerService } from './services/shared/logger/logger.service';\nimport { ConsoleLoggerService } from './services/shared/logger/console-logger.service';\nimport { WebComponentHttpClient } from './services/shared/httpclient/webcomponent.http.client';\nimport { CaseTransactionsComponent } from './components/case-transactions/case-transactions.component';\nimport { FeeSummaryComponent } from './components/fee-summary/fee-summary.component';\nimport { ErrorBannerComponent } from './components/error-banner/error-banner.component';\nimport { MarkUnidentifiedPaymentComponent } from './components/mark-unidentified-payment/mark-unidentified-payment.component';\nimport { MarkUnsolicitedPaymentComponent } from './components/mark-unsolicited-payment/mark-unsolicited-payment.component';\nimport { UnprocessedPaymentsComponent } from './components/unprocessed-payments/unprocessed-payments.component';\nimport { ProcessedPaymentsComponent } from './components/processed-payments/processed-payments.component';\nimport { AllocatePaymentsComponent } from './components/allocate-payments/allocate-payments.component';\nimport { AddRemissionComponent } from './components/add-remission/add-remission.component';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { CcdHyphensPipe } from './pipes/ccd-hyphens.pipe';\nimport { CapitalizePipe } from './pipes/capitalize.pipe';\nimport { keyValuePipe } from './pipes/key-value.pipe';\nimport { SanitizeHtmlPipe } from './pipes/sanitize-html.pipe';\nimport { ReportsComponent } from './components/reports/reports.component';\nimport { XlFileService } from './services/xl-file/xl-file.service';\nimport { TableComponent } from './components/table/table.component';\nimport { MatTableModule } from '@angular/material/table';\nimport { MatPaginatorModule } from '@angular/material/paginator';\nimport { MatSortModule } from '@angular/material/sort';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\n// import { BrowserAnimationsModule } from '@angular/platform-browser/animations';\n// import { NoopAnimationsModule } from '@angular/platform-browser/animations';\nimport { RefundStatusComponent } from './components/refund-status/refund-status.component';\nimport { ServiceRequestComponent } from './components/service-request/service-request.component';\nimport { PbaPaymentComponent } from './components/pba-payment/pba-payment.component';\n\n@NgModule({\n imports: [\n CommonModule,\n HttpClientModule,\n FormsModule,\n ReactiveFormsModule,\n MatTableModule,\n MatPaginatorModule,\n MatSortModule,\n MatFormFieldModule,\n MatInputModule,\n // BrowserAnimationsModule,\n // NoopAnimationsModule\n ],\n declarations: [\n PaymentLibComponent,\n PaymentListComponent,\n PaymentViewComponent,\n PbaPaymentComponent,\n ProcessRefundComponent,\n RefundListComponent,\n CardDetailsComponent,\n PageNotFoundComponent,\n StatusHistoryComponent,\n MarkUnidentifiedPaymentComponent,\n MarkUnsolicitedPaymentComponent,\n UnprocessedPaymentsComponent,\n ProcessedPaymentsComponent,\n AllocatePaymentsComponent,\n PbaDetailsComponent,\n CaseTransactionsComponent,\n FeeSummaryComponent,\n AddRemissionComponent,\n CcdHyphensPipe,\n CapitalizePipe,\n keyValuePipe,\n SanitizeHtmlPipe,\n ReportsComponent,\n ErrorBannerComponent,\n TableComponent,\n RefundStatusComponent,\n ServiceRequestComponent\n ],\n exports: [PaymentLibComponent],\n providers: [\n { provide: LoggerService, useClass: ConsoleLoggerService },\n XlFileService,\n WebComponentHttpClient\n ]\n})\n\nexport class PaymentLibModule { }\n"],"names":["PaymentLibService","prototype","setApiRootUrl","apiRoot","this","API_ROOT","getApiRootUrl","setBulkScanApiRootUrl","bulkscanapiRoot","BULKSCAN_API_ROOT","getBulkScanApiRootUrl","setRefundndsApiRootUrl","refundsapiRoot","REFUNDS_API_ROOT","getRefundsApiRootUrl","setCardPaymentReturnUrl","cardPaymentReturnUrl","CARDPAYMENTRETURNURL","getCardPaymentReturnUrl","Injectable","args","providedIn","OrderslistService","setOrdersList","orderLevelFees","ordersList","next","Object","assign","getOrdersList","setRefundView","refundList","refundView","getRefundView","setCaseType","caseType","getCaseType","setCCDCaseNumber","ccdCaseNumber","getCCDCaseNumber","setFeeExists","feeExists","getFeeExists","setisFromServiceRequestPage","isFromServiceRequestPage","getisFromServiceRequestPages","setOrderRefId","OrderRefId","getSelectedOrderRefId","setnavigationPage","navigationPage","getnavigationPageValue","setpaymentPageView","paymentpageList","paymentPageView","getpaymentPageView","setUserRolesList","rolesList","getUserRolesList","setorderDetail","orderDetail","getorderDetail","setOrderRef","orderRef","getorderRefs","setorderCCDEvent","orderCCDEvent","getorderCCDEvents","setorderCreated","orderCreated","getorderCreateds","setorderParty","orderParty","getorderPartys","setorderRemissionTotal","orderRemissionTotal","getorderRemissionTotals","setorderFeesTotal","orderFeesTotal","getorderFeesTotals","setorderTotalPayments","orderTotalPayments","getoorderTotalPaymentss","BehaviorSubject","getcaseType","asObservable","getFeeExist","getCCDCaseNumberforRefund","getisFromServiceRequestPage","getOrderRefId","getnavigationPage","getorderRef","getorderCCDEvent","getorderCreated","getorderParty","getorderRemissionTotal","getorderFeesTotal","getorderTotalPayments","PaymentLibComponent","ngAfterContentChecked","cd","detectChanges","ngOnInit","paymentLibService","LOGGEDINUSERROLES","length","PAYMENT_GROUP_REF","paymentGroupReference","DCN_NUMBER","bspaymentdcn","REFUNDLIST","VIEW","viewName","isTakePayment","TAKEPAYMENT","Component","selector","template","ChangeDetectorRef","Input","unProcessedPaymentServiceId","unProcessedPayment","orderPendingPayments","ErrorHandlerService","handleError","err","errorMessage","error","Error","message","status","undefined","JSON","parse","statusCode","messsage","stringify","_throw","getServerErrorMessage","isErrorExist","title","body","showError","LoggerService","invokeConsoleMethod","type","PaymentListService","getPaymentByCcdCaseNumber","paymentMethod","logger","info","http","get","withCredentials","pipe","catchError","errorHandlerService","HttpClient","PaymentListComponent","_this","paymentListService","paymentLibComponent","CCD_CASE_NUMBER","PAYMENT_METHOD","subscribe","payments","loadPaymentViewComponent","paymentReference","__values","o","s","Symbol","iterator","m","i","call","value","done","TypeError","WebComponentHttpClient","post","url","options","opts","addHeaders","put","delete","patch","csrfToken","meta","getTag","headers","forEach","element","document","cookie","split","find","row","startsWith","content","HttpHeaders","responseType","Meta","PaymentViewService","getPaymentDetails","getPaymentGroupDetails","getApportionPaymentDetails","getPBAaccountDetails","postWays2PayCardPayment","serviceRef","rurl","replace","https","postPBAaccountPayment","randomKey","Math","random","toString","join","postBSPayments","postBSUnidentifiedPayments","postBSUnsolicitedPayments","postBSAllocationPayments","postPaymentGroupWithRemissions","feeId","deleteFeeFromPaymentGroup","postPaymentToPayHub","paymentGroupRef","postPaymentAntennaToPayHub","downloadSelectedReport","reportName","startDate","endDate","getBSfeature","getSiteID","getPartyDetails","caseNumber","postRefundsReason","postPaymentGroupWithRetroRemissions","postRefundRetroRemission","PaymentViewComponent","selectedOption","SELECTED_OPTION","dcnNumber","isTurnOff","ISTURNOFF","serviceReference","viewStatus","paymentViewService","paymentGroup","fees","fee","isRemissionsMatch","remissions","rem","fee_code","code","push","filter","paymentGroupObj","includes","paymentAllocation","payment_allocation","isStatusAllocated","allocation_status","defineProperty","method","channel","goToPaymentList","goToCaseTransationPage","event","preventDefault","data","ISBSENABLE","resetOrderData","addRemission","chkForAddRemission","reference","payment","isFromPaymentDetailPage","isRefundRemission","checkForFees","addRefundForRemission","remission","chkIsRefundRemissionBtnEnable","remissionFeeAmt","net_amount","toLocaleLowerCase","allowFurtherAccessAfter4Days","isRefundRemissionBtnEnable","issueRefund","paymentgrp","chkIssueRefundBtnEnable","getRemissionByFeeCode","feeCode","remissions_1","tslib_1.__values","remissions_1_1","check4AllowedRoles2AccessRefund","isIssueRefunfBtnEnable","chkForPBAPayment","_b","_c","isAddFeeBtnEnabled","allowedRolesToAccessRefund","some","role","indexOf","tmp4DayAgo","Date","setDate","getDate","date_created","RefundsService","getRefundReasons","getRefundRejectReasons","getRefundActions","refundReference","patchRefundActions","reviewerAction","getRefundList","refundstatus","selfexclusive","getRefundStatusHistory","getRefundStatusList","getUserDetails","postIssueRefund","patchResubmitRefund","refund_reference","ProcessRefundComponent","refundActionList","getErrorMessage","processRefundForm","formBuilder","group","refundActionField","FormControl","Validators","compose","required","refundRejectReasonField","sendMeBackField","minLength","maxLength","pattern","enterReasonField","refundlistsource","ccd_case_number","isFromRefundListPage","checkRefundActions","refundActionsHasError","isReasonFieldEmpty","isReasonEmpty","isReasonInvalid","refundRejectReasonHasError","isConfirmButtondisabled","isSendMeBackClicked","isRejectClicked","isOtherClicked","refundRejectReasonList","processRefundSubmit","processRefundRequest","resetForm","controls","processFormError","errors","dirty","valid","reason","response","isSuccesspageEnable","successMsg","invalid","minlength","actualLength","maxlength","errorMsg","bodyTxt","loadRefundListPage","navigationpage","isRefundStatusView","loadRefundsHomePage","redirecttoRefundListPage","vals","field","isReasonFieldInvalid","reasonFieldMinHasError","reasonFieldMaxHasError","goToCaseReview","router","navigate","relativeTo","activeRoute","FormBuilder","Router","ActivatedRoute","sendmeback","RefundListComponent","userLst","isAuthorized","isApproveTableVisible","tableApprovalHeader","tableRejectedHeader","refundService","approvalStatus","submittedRefundList","rejectStatus","rejectedRefundList","isRejectTableVisible","CardDetailsService","getCardDetails","CardDetailsComponent","cardDetailsService","cardDetails","pageTitle","PageNotFoundComponent","StatusHistoryService","getPaymentStatusesByReference","StatusHistoryComponent","statusHistoryService","statuses","PbaDetailsComponent","noop","ConsoleLoggerService","console","log","apply","CaseTransactionsService","getPaymentGroups","BulkScaningPaymentService","getBSPaymentsByCCD","getBSPaymentsByDCN","dcn","postBSAllocatePayment","paymentRef","postBSPaymentStrategic","postBSWoPGStrategic","patchBSChangeStatus","calculateOutStandingAmount","feesTotal","paymentsTotal","remissionsTotal","calculated_amount","toUpperCase","amount","hwf_amount","removeUnwantedString","input","replaceText","CaseTransactionsComponent","paymentView","payment_group_reference","goToPayementView","isGrpOutstandingAmtPositive","CASETYPE","EXC_REFERENCE","excReference","takePayment","servicerequest","SERVICEREQUEST","serviceRequestValue","isBulkScanEnable","isNewPcipalOff","ISNEWPCIPALOFF","isOldPcipalOff","ISOLDPCIPALOFF","isStrategicFixEnable","ISSFENABLE","caseTransactionsService","paymentGroups","isAnyFeeGroupAvilable","calculateAmounts","calculateOrderFeesAmounts","totalRefundAmount","calculateRefundAmount","cpoDetails","setDefaults","isCPODown","goToOrderViewDetailSection","checkForExceptionRecord","totalPayments","totalRemissions","totalNonOffPayments","totalFees","getAllocationStatus","bulkScaningPaymentService","recordData","exception_record_reference","ccd_reference","isExceptionRecord","case_reference","resetOrderVariables","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","goToServiceRequestPage","window","location","reload","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","res","cancelMarkUnidentifiedPayments","UnsolicitedPaymentsRequest","responsible_office","responsible_person","email_id","receiving_office","receiving_email_address","sending_email_address","MarkUnsolicitedPaymentComponent","siteids","isContinueButtondisabled","siteIDList","scrollTo","markPaymentUnsolicitedForm","responsibleOffice","responsiblePerson","emailId","selectedSiteId","reasonField","officeIdField","reasonHasError","reasonMinHasError","reasonMaxHasError","isResponsibleOfficeEmpty","responsibleOfficeHasError","cancelMarkUnsolicitedPayments","checkingFormValue","setValue","formFields","valueExists","hasOwnProperty","selectchange","target","selectedSiteName","selectedIndex","text","UnprocessedPaymentsComponent","isNewpcipaloff","isOldpcipaloff","isStFixEnable","FEE_RECORDS_EXISTS","setValuesForUnassignedRecord","emit","unassignedRecordList","unassignedRecordListLength","serviceId","isExceptionCase","unprocessedPaymentSelectEvent","formatUnassignedRecordId","ID","recordId","loadUnsolicitedPage","selectedRecordReference","validateButtons","resetButtons","isAllocateToExistingFeebtnEnabled","isMarkAsUnidentifiedbtnEnabled","isAllocatedToNewFeebtnEnabled","PAYMENTREF","IS_OS_AMT_AVAILABLE","unprocessedPaymentUnSelectEvent","showDetailRow","obj","unassignedRecordSelectedList","Output","EventEmitter","isRecordExist","ProcessedPaymentsComponent","redirectToPaymentViewPage","IAllocationPaymentsRequest","explanation","userName","user_name","AllocatePaymentsComponent","overUnderPaymentForm","moreDetails","fstCon","scndCn","selectedPaymentGroup","gotoSummaryPage","cancelAllocatePayment","confirmAllocatePayement","enCookieUserName","cookieUserName","decodeURIComponent","fullName","paymentDetailsField","paymentFormError","userNameField","isEmptyCondtion","paymentReason","paymentExplanation","isOtherOptionSelected","isRemainingAmountGtZero","isRemainingAmountLtZero","otherPaymentExplanation","finalServiceCall","paymentReasonHasError","paymentExplanationHasError","isPaymentDetailsEmpty","isPaymentDetailsInvalid","paymentDetailsMinHasError","paymentDetailsMaxHasError","isUserNameEmpty","isUserNameInvalid","GroupOutstandingAmount","remainingToBeAssigned","isMoreDetailsBoxHide","reset","paymentSectionLabel","feedbackUrlLabel","remainingAmount","afterFeeAllocateOutstanding","amountForAllocation","selectRadioButton","key","OrderListSelectEvent","reasonList","overPayment","hwfReward","wrongFee","notIssueCase","otherDeduction","shortFall","helpWithFee","other","explanationList","referRefund","noRefund","noCase","holdCase","heldCase","refund","duplicate","humanerror","caseWithdrawn","AddRemissionRequest","hwf_reference","AddRetroRemissionRequest","PostRefundRetroRemission","refund_reason","PostIssueRefundRetroRemission","remissionReference","AddRemissionComponent","default","pattern1","pattern2","viewCompStatus","volume","remessionPayment","isPaymentSuccess","option","remissionForm","remissionCode","refundReason","refundDDReason","onlySelf","refundReasons","recently_used","commonRefundReasons","sort","localeCompare","resetRemissionForm","remissionctrls","isRemissionLessThanFee","setErrors","confirmRemission","newNetAmount","remissionAmount","trim","id","LDUrl","routeReuseStrategy","shouldReuseRoute","onSameUrlNavigation","isRemissionCodeEmpty","remissionCodeHasError","isAmountEmpty","amountHasError","isRemissionLessThanFeeError","addRemissionCode","gotoAddRetroRemissionCodePage","iscancelClicked","refundListAmount","isFromRefundStatusPage","refundListReason","selectedRefundReason","selectedValue","gotoCheckRetroRemissionPage","gotoProcessRetroRemissionPage","confirmRetroRemission","retroRemission","remissionamt","isRemissionApplied","remission_reference","processRefund","refundAmount","refund_amount","gotoIssueRefundConfirmation","refundHasError","displayRefundReason","gotoIssueRefundPage","changeIssueRefundReason","confirmIssueRefund","confirmRetroRefund","localStorage","setItem","isRefundReasonsSelected","showReasonText","reasonLength","gotoServiceRequestPage","sendOrderDetail","sendOrderRef","gotoCasetransationPageCancelBtnClicked","getFormattedCurrency","concat","hasErrors","CcdHyphensPipe","transform","match","Pipe","CapitalizePipe","slice","keyValuePipe","keys","SanitizeHtmlPipe","sanitizer","bypassSecurityTrustHtml","DomSanitizer","XlFileService","exportAsExcelFile","json","excelFileName","worksheet","XLSX.utils","json_to_sheet","header","setDataLossReportHeaders","setUnprocessedReportHeaders","setProcessedUnallocatedReportHeaders","setShortFallReportHeaders","autoFitColumns","excelBuffer","XLSX.write","Sheets","SheetNames","bookType","saveAsExcelFile","objectMaxLength","ColWidth","values","j","width","A1","v","B1","C1","D1","E1","F1","G1","H1","I1","J1","K1","L1","M1","N1","buffer","fileName","Blob","FileSaver.saveAs","ReportsComponent","fromValidation","getToday","toISOString","getSelectedFromDate","validateDates","reportsForm","selectedStartDate","tranformDate","selectedEndDate","isDateRangeMoreThanWeek","isDateRangeBetnWeek","isStartDateLesthanEndDate","selectedreport","downloadReport","isDownLoadButtondisabled","dataLossRptDefault","loss_resp","payment_asset_dcn","env_ref","env_item","resp_service_id","resp_service_name","bgc_batch","unProcessedRptDefault","exception_ref","ccd_ref","processedUnallocated","allocation_reason","ccd_exception_ref","ccd_case_ref","updated_by","shortFallsRptDefault","surplus_shortfall","balance","payment_amount","ccd_case_reference","ccd_exception_reference","processed_date","selectedReportName","applyDateFormat","substr","convertToFloatValue","Op","xlFileService","getFileName","loc","stDt","formatDate","enDt","now","timestamp","getTwodigit","getHours","getMinutes","getSeconds","getCamelCaseString","strDate","parts","map","amt","Number","parseFloat","TableComponent","STATUS","toLowerCase","isApprovalFlow","DATASOURCE","dataSource","MatTableDataSource","actualcount","reduce","r","_a","user_full_name","ngAfterViewInit","paginator","cdRef","applyFilter","filterValue","goToRefundProcessComponent","refundData","goToRefundViewComponent","isCallFromRefundList","ViewChild","MatPaginator","MatSort","displayedColumns","IResubmitRefundRequest","RefundStatusComponent","refundlist","refundStatusForm","getRefundsStatusHistoryList","isProcessRefund","refundButtonState","refund_status","statusHistoryList","refundStatusHistories","status_history_dto_list","isLastUpdatedByCurrentUser","last_updated_by_current_user","goToRefundView","gotoReviewDetailsPage","gotoReviewAndReSubmitPage","oldRefundReason","changedAmount","refundreason","notes","gotoRefundReasonPage","isRefundBtnDisabled","gotoAmountPage","goToReviewAndSubmitView","getRefundListReason","refundCode","getRefundAmount","gotoReviewRefundConfirmationPage","resubmitRequest","ServiceRequestComponent","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","e","isPBAAccountHold","isCardPaymentSelected","cardPayment","isCardPaymentSuccess","paymentUrl","next_url","selectPaymentMethod","NgModule","imports","CommonModule","HttpClientModule","FormsModule","ReactiveFormsModule","MatTableModule","MatPaginatorModule","MatSortModule","MatFormFieldModule","MatInputModule","declarations","exports","providers","provide","useClass","PaymentLibModule"],"mappings":"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"}
1
+ {"version":3,"sources":["ng://@hmcts/ccpay-web-component/lib/payment-lib.service.ts","ng://@hmcts/ccpay-web-component/lib/services/orderslist.service.ts","ng://@hmcts/ccpay-web-component/lib/payment-lib.component.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/error-handler.service.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/logger/logger.service.ts","ng://@hmcts/ccpay-web-component/lib/services/payment-list/payment-list.service.ts","ng://@hmcts/ccpay-web-component/lib/components/payment-list/payment-list.component.ts","node_modules/tslib/tslib.es6.js","ng://@hmcts/ccpay-web-component/lib/services/shared/httpclient/webcomponent.http.client.ts","ng://@hmcts/ccpay-web-component/lib/services/payment-view/payment-view.service.ts","ng://@hmcts/ccpay-web-component/lib/components/payment-view/payment-view.component.ts","ng://@hmcts/ccpay-web-component/lib/services/refunds/refunds.service.ts","ng://@hmcts/ccpay-web-component/lib/components/process-refund/process-refund.component.ts","ng://@hmcts/ccpay-web-component/lib/components/refund-list/refund-list.component.ts","ng://@hmcts/ccpay-web-component/lib/services/card-details/card-details.service.ts","ng://@hmcts/ccpay-web-component/lib/components/card-details/card-details.component.ts","ng://@hmcts/ccpay-web-component/lib/components/page-not-found.component.ts","ng://@hmcts/ccpay-web-component/lib/services/status-history/status-history.service.ts","ng://@hmcts/ccpay-web-component/lib/components/status-history/status-history.component.ts","ng://@hmcts/ccpay-web-component/lib/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/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/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 [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'refundstatuslist'\"> </ccpay-refund-status >\n <ccpay-payment-view [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'payment-view'\"\n [isTurnOff]=\"ISTURNOFF\" [isTakePayment]=\"TAKEPAYMENT\" [caseType]=\"CASETYPE\"\n [isOldPcipalOff]=\"ISOLDPCIPALOFF\"\n [isNewPcipalOff]=\"ISNEWPCIPALOFF\"></ccpay-payment-view>\n\n <ccpay-process-refund *ngIf=\"viewName === 'process-refund'\"\n [refundReference]=\"refundReference\"\n [refundlistsource]=\"refundlistsource\"\n ></ccpay-process-refund>\n <ccpay-pba-payment *ngIf=\"viewName === 'pba-payment'\"\n [pbaPayOrderRef]=\"pbaPayOrderRef\"\n ></ccpay-pba-payment>\n <ccpay-case-transactions [isTakePayment]=\"isTakePayment\" [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'case-transactions'\"></ccpay-case-transactions>\n <app-mark-unidentified-payment *ngIf=\"viewName === 'unidentifiedPage'\"\n [caseType]=\"CASETYPE\"></app-mark-unidentified-payment>\n <app-mark-unsolicited-payment *ngIf=\"viewName === 'unsolicitedPage'\"\n [caseType]=\"CASETYPE\"></app-mark-unsolicited-payment>\n <app-allocate-payments *ngIf=\"viewName === 'allocate-payments'\"\n [isTurnOff]=\"ISTURNOFF\"\n [caseType]=\"CASETYPE\"\n ></app-allocate-payments>\n <ccpay-fee-summary *ngIf=\"viewName === 'fee-summary'\"\n [ccdCaseNumber]=\"CCD_CASE_NUMBER\" \n [paymentGroupRef]=\"paymentGroupReference\"\n [isTurnOff]=\"ISTURNOFF\"\n [caseType]=\"CASETYPE\"\n [isOldPcipalOff]=\"ISOLDPCIPALOFF\"\n [isNewPcipalOff]=\"ISNEWPCIPALOFF\"\n ></ccpay-fee-summary>\n <ccpay-reports *ngIf=\"viewName === 'reports'\"></ccpay-reports>\n `\n})\n\nexport class PaymentLibComponent implements OnInit {\n @Input('API_ROOT') API_ROOT: string;\n @Input('BULKSCAN_API_ROOT') BULKSCAN_API_ROOT: string;\n @Input('REFUNDS_API_ROOT') REFUNDS_API_ROOT: string;\n @Input('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('ISOLDPCIPALOFF') ISOLDPCIPALOFF: boolean;\n @Input('ISNEWPCIPALOFF') ISNEWPCIPALOFF: boolean;\n @Input('rootUrl') rootUrl: boolean;\n @Input('REFUNDLIST') REFUNDLIST: string;\n @Input('USERID') USERID: string;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: any[];\n @Input('LOGGEDINUSEREMAIL') LOGGEDINUSEREMAIL: string;\n @Input('isFromServiceRequestPage') isFromServiceRequestPage: boolean;\n\n paymentMethod: string;\n bspaymentdcn: string;\n unProcessedPaymentServiceId: string = null;\n paymentGroupReference: string;\n paymentReference: string;\n refundReference: string;\n refundlistsource: any;\n viewName: string;\n isTurnOff: boolean;\n caseType: string;\n isOldPcipalOff: boolean;\n isNewPcipalOff: boolean;\n unProcessedPayment: IBSPayments = null;\n isRefundStatusView: boolean;\n isRedirectFromCaseTransactionPage: string;\n isCallFromRefundList: boolean;\n isFromRefundStatusPage: boolean;\n iscancelClicked : boolean;\n isFromPaymentDetailPage: boolean;\n pbaPayOrderRef: IPayment;\n isTakePayment: boolean;\n\n orderDetail: any[];\n orderRef: string;\n orderStatus: string;\n orderParty: string;\n orderCreated: Date;\n orderCCDEvent: string;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n orderFeesTotal: number = 0.00;\n orderRemissionTotal: number = 0.00;\n orderTotalPayments: number = 0.00;\n orderPendingPayments: number = 0.00;\n\n constructor(private paymentLibService: PaymentLibService,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) { }\n ngAfterContentChecked(): void {\n this.cd.detectChanges();\n } \n\n\n ngOnInit() {\n this.paymentLibService.setApiRootUrl(this.API_ROOT);\n this.paymentLibService.setBulkScanApiRootUrl(this.BULKSCAN_API_ROOT);\n this.paymentLibService.setRefundndsApiRootUrl(this.REFUNDS_API_ROOT);\n this.paymentLibService.setNoticationApiRootUrl(this.NOTIFICATION_API_ROOT);\n this.paymentLibService.setCardPaymentReturnUrl(this.CARDPAYMENTRETURNURL);\n\n if(this.LOGGEDINUSERROLES.length > 0) {\n this.OrderslistService.setUserRolesList(this.LOGGEDINUSERROLES);\n }\n if (this.PAYMENT_GROUP_REF) {\n this.paymentGroupReference = this.PAYMENT_GROUP_REF;\n }\n if (this.DCN_NUMBER) {\n this.bspaymentdcn = this.DCN_NUMBER;\n }\n if (this.REFUNDLIST === \"true\") {\n this.VIEW = 'refund-list';\n this.viewName = this.VIEW;\n }\n if (this.VIEW === 'fee-summary') {\n this.viewName = 'fee-summary';\n } else if (this.VIEW !== 'reports' && this.VIEW !== 'refund-list') {\n this.viewName = 'case-transactions';\n } else {\n this.viewName = this.VIEW;\n }\n\n if (this.isTakePayment) {\n this.TAKEPAYMENT = true;\n }\n }\n}\n","import { Injectable } from '@angular/core';\nimport { _throw } from 'rxjs/observable/throw';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { HttpErrorResponse } from '@angular/common/http';\nimport { stringify } from '@angular/core/src/util';\n\n@Injectable({\n providedIn: 'root'\n})\n\n\nexport class ErrorHandlerService {\n\n constructor() { }\n\n\n handleError(err: HttpErrorResponse): Observable<any> {\n let errorMessage: string;\n if (err.error instanceof Error) {\n // A client-side or network error occurred.\n errorMessage = `An error occurred: ${err.error.message}`;\n } else {\n // The backend returned an unsuccessful response code.\n if (err.status === 404) {\n\n if (typeof err.error === 'string' && err.error !== undefined) {\n \n if(err.error.length > 60) {\n if (JSON.parse(err.error).statusCode !== undefined && JSON.parse(err.error).statusCode === 500)\n {\n errorMessage = 'Internal server error';\n } else {\n if(err.error.length > 60) {\n errorMessage = JSON.parse(err.error).error;\n } else {\n errorMessage = err.error;\n }\n \n }\n } else {\n errorMessage = err.error;\n }\n } else {\n errorMessage = JSON.parse(err.error).error;\n }\n \n }\n else if (err.status === 500) {\n errorMessage = 'Internal server error';\n } else if (err.error.messsage === undefined) {\n if( typeof err.error === 'object') {\n errorMessage = JSON.parse(JSON.stringify(err.error)).error;\n } else {\n if (typeof err.error === 'string' && err.error !== undefined) {\n \n if(err.error.length > 60) {\n if (JSON.parse(err.error).statusCode !== undefined && JSON.parse(err.error).statusCode === 500)\n {\n errorMessage = 'Internal server error';\n } else {\n if(err.error.length > 60) {\n errorMessage = JSON.parse(err.error).error;\n } else {\n errorMessage = err.error;\n }\n \n }\n } else {\n errorMessage = err.error;\n }\n } else {\n errorMessage = JSON.parse(err.error).error;\n }\n \n }\n \n } else {\n if (err.error.message !== undefined) {\n errorMessage = `${err.error.message}`;\n } else {\n errorMessage = `${err.error}`;\n }\n \n }\n }\n return _throw(errorMessage);\n }\n\n\n getServerErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","import { Injectable } from '@angular/core';\n\nconst noop = (): any => undefined;\n\nexport abstract class Logger {\n\n info: any;\n warn: any;\n error: any;\n}\n\n@Injectable({\n providedIn: 'root'\n})\nexport class LoggerService implements Logger {\n\n info: any;\n warn: any;\n error: any;\n\n invokeConsoleMethod(type: string, args?: any): void {}\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\n\nimport { Observable } from 'rxjs/internal/Observable';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { IPayments } from '../../interfaces/IPayments';\nimport { catchError } from 'rxjs/operators';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PaymentListService {\n payments: IPayments;\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n\n getPaymentByCcdCaseNumber(ccdCaseNumber: string, paymentMethod: string): Observable<IPayments> {\n this.logger.info('Payment-list-service getPaymentByCcdCaseNumber for: ', ccdCaseNumber);\n\n return this.http.get<IPayments>(`${this.paymentLibService.API_ROOT}/cases/${ccdCaseNumber}/payments`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import {Component, OnInit} from '@angular/core';\n\nimport {PaymentListService} from '../../services/payment-list/payment-list.service';\nimport {IPayments} from '../../interfaces/IPayments';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport {IStatusHistory} from '../../interfaces/IStatusHistory';\n\n@Component({\n selector: 'ccpay-payment-list',\n templateUrl: './payment-list.component.html',\n styleUrls: ['./payment-list.component.css']\n})\nexport class PaymentListComponent implements OnInit {\n payments: IPayments;\n errorMessage: string;\n code: string;\n\n constructor(private paymentListService: PaymentListService,\n private paymentLibComponent: PaymentLibComponent) {\n }\n\n ngOnInit() {\n this.paymentListService.getPaymentByCcdCaseNumber(this.paymentLibComponent.CCD_CASE_NUMBER, this.paymentLibComponent.PAYMENT_METHOD)\n .subscribe(\n payments => this.payments = payments,\n (error: any) => this.errorMessage = <any>error\n );\n }\n\n loadPaymentViewComponent(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.paymentLibComponent.paymentMethod = paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n}\n","/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Meta } from '@angular/platform-browser';\nimport { Observable } from 'rxjs';\n\n@Injectable()\nexport class WebComponentHttpClient {\n constructor(\n private http: HttpClient,\n private meta: Meta\n ) { }\n\n post(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.post(url, body, opts);\n }\n\n put(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.put(url, body, opts);\n }\n\n get(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.get(url, opts);\n }\n\n delete(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.delete(url, opts);\n }\n \n patch(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.patch(url, body, opts);\n }\n\n addHeaders(options: any): any {\n const csrfToken = this.meta.getTag('name=csrf-token');\n const headers = {};\n \n if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n if (csrfToken === null) {\n if( document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')).split('=')[1] !== undefined) {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')).split('=')[1];\n \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 getBSfeature(): Observable<any> {\n return this.https.get('api/payment-history/bulk-scan-feature', { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getSiteID(): Observable<any> {\n return this.https.get('api/payment-history/refdata/legacy-sites', { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getPartyDetails(caseNumber: string): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/case-payment-orders?case_ids=${caseNumber}`;\n return this.https.get(url, { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n \n setOrdersList(orderLevelFees: IOrderReferenceFee[]): void {\n this.ordersList.next(Object.assign([], orderLevelFees));\n}\n getOrdersList() {\n return this.ordersList;\n }\n\n //issue refund\n postRefundsReason(body: PostRefundRetroRemission): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/refund-for-payment`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n // retro remissions\n postPaymentGroupWithRetroRemissions(paymentGroupReference: string, feeId: number, body: AddRetroRemissionRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}/fees/${feeId}/retro-remission`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postRefundRetroRemission(body:PostIssueRefundRetroRemission) {\n return this.https.post(`${this.paymentLibService.API_ROOT}/refund-retro-remission`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\nimport { ChangeDetectorRef } from '@angular/core';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';\n\n@Component({\n selector: 'ccpay-payment-view',\n templateUrl: './payment-view.component.html',\n styleUrls: ['./payment-view.component.css']\n})\nexport class PaymentViewComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() isTakePayment: boolean;\n @Input() caseType: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() isOldPcipalOff: boolean;\n @Input() orderRef: string;\n @Input() orderStatus: string;\n @Input() orderTotalPayments: number;\n @Input() payment: IPayment;\n @Input() LOGGEDINUSERROLES: string[];\n @Input() orderParty: string;\n @Input() orderCreated: Date;\n @Input() orderCCDEvent: string;\n @Input() orderFeesTotal: number;\n @Input() orderRemissionTotal: number;\n @Input() orderDetail: any[];\n\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n ccdCaseNumber: string;\n selectedOption: string;\n dcnNumber: string;\n isStatusAllocated: boolean;\n isRemissionsMatch: boolean;\n feeId: IFee;\n viewStatus: string;\n isRefundRemission: boolean = false;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n remissions: IRemission[] = [];\n remissionFeeAmt: number;\n isRefundRemissionBtnEnable: boolean;\n serviceReference: string;\n isFromServiceRequestPage: boolean;\n isFromPaymentDetailPage: boolean;\n paymentFees: IFee[];\n paymentType: string;\n isContinueBtnDisabled: boolean = true;\n viewCompStatus: string;\n contactDetailsObj: IRefundContactDetails\n notification: any;\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.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\n }\n\n get isCardPayment(): boolean {\n return this.paymentGroup.payments[0].method === 'card';\n }\n\n get isTelephonyPayment(): boolean {\n return this.paymentGroup.payments[0].channel === 'telephony';\n }\n\n public goToPaymentList(): void {\n this.paymentLibComponent.viewName = 'payment-list';\n }\n\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n\n if (!this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.resetOrderData();\n } else {\n this.OrderslistService.getorderRefs().subscribe((data) => this.orderRef = data);\n this.OrderslistService.getorderCCDEvents().subscribe((data) => this.orderCCDEvent = data);\n this.OrderslistService.getorderCreateds().subscribe((data) => this.orderCreated = data);\n this.OrderslistService.getorderDetail().subscribe((data) => this.orderDetail = data);\n this.OrderslistService.getorderPartys().subscribe((data) => this.orderParty = data);\n this.OrderslistService.getorderRemissionTotals().subscribe((data) => this.orderRemissionTotal = data);\n this.OrderslistService.getorderFeesTotals().subscribe((data) => this.orderFeesTotal = data);\n this.OrderslistService.getoorderTotalPaymentss().subscribe((data) => this.orderTotalPayments = data);\n this.viewStatus = 'order-full-view';\n }\n \n }\n\n addRemission(fee: IFee) {\n if(this.chkForAddRemission(fee.code,fee.id)) {\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 \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.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, feeId: number): 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 && remission.fee_id === feeId) {\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 selectPymentOption(paymentType: string) {\n this.paymentType = paymentType;\n this.isContinueBtnDisabled = false;\n }\n continuePayment() {\n if (this.paymentType === 'op') {\n\n } else if(this.paymentType === 'fp') {\n\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}","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')).split('=')[1] !== undefined) {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')).split('=')[1];\n \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 {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 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 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 \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 { 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('addressObj') addressObj: any;\n @Output() assignContactDetails: 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-Z]{1,2}[0-9]{1,2}[A-Z]{0,1} ?[0-9][A-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-Z]{1,2}[0-9]{1,2}[A-Z]{0,1} ?[0-9][A-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 }\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 this.assignContactDetails.emit( {\n email: emailField.value,\n notification_type: 'EMAIL'\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 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 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 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 = true;\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\n this.assignContactDetails.emit({\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 } 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';\nimport { ServiceRequestComponent } from '../../components/service-request/service-request.component';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-case-transactions',\n templateUrl: './case-transactions.component.html',\n styleUrls: ['./case-transactions.component.css']\n})\nexport class CaseTransactionsComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input() isTakePayment: boolean;\n takePayment: boolean;\n servicerequest: string;\n ccdCaseNumber: string;\n excReference: string;\n paymentGroups: any[] = [];\n payments: IPayment[] = [];\n nonPayments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n fees: IFee[] = [];\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalNonOffPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n paymentRef: string;\n isTurnOff: boolean;\n isNewPcipalOff: boolean;\n isRefundRemission: boolean = true;\n isOldPcipalOff: boolean;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = true;\n isExceptionRecord: boolean = false;\n isUnprocessedRecordSelected: boolean = false;\n exceptionRecordReference: string;\n isAnyFeeGroupAvilable: boolean = true;\n isHistoricGroupAvailable: boolean = false;\n isBulkScanEnable;\n isRemissionsMatch: boolean;\n viewStatus = 'main';\n isRemoveBtnDisabled: boolean = false;\n feeId: IFee;\n clAmountDue: number = 0;\n 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 \n if (this.paymentView !== undefined && this.paymentView !== null && this.paymentView.payment_group_reference !== undefined && this.navigationpage === 'paymentdetailspage') {\n this.goToPayementView(this.paymentView.payment_group_reference, this.paymentView.reference, this.paymentView.method);\n }\n this.isGrpOutstandingAmtPositive = false;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.caseType = this.paymentLibComponent.CASETYPE;\n if (this.paymentLibComponent.CCD_CASE_NUMBER === '') {\n this.ccdCaseNumber = this.paymentLibComponent.EXC_REFERENCE;\n }\n this.excReference = this.paymentLibComponent.EXC_REFERENCE;\n this.takePayment = this.paymentLibComponent.TAKEPAYMENT;\n\n this.servicerequest = this.paymentLibComponent.SERVICEREQUEST.toString();\n if (this.paymentLibComponent.SERVICEREQUEST.toString() === 'true') {\n this.serviceRequestValue = 'true';\n } else {\n this.serviceRequestValue = 'false';\n }\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isNewPcipalOff = this.paymentLibComponent.ISNEWPCIPALOFF;\n this.isOldPcipalOff = this.paymentLibComponent.ISOLDPCIPALOFF;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n if (!this.isTurnOff) {\n // if (this.lsCcdNumber !== this.ccdCaseNumber) {\n // this.router.navigateByUrl(`/ccd-search?takePayment=true`);\n // }\n\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.isAnyFeeGroupAvilable =true;\n this.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts();\n this.calculateOrderFeesAmounts();\n this.calculateRefundAmount();\n if (this.isFromServiceRequestPage) {\n this.OrderslistService.getSelectedOrderRefId().subscribe((data) => this.orderRef = data);\n this.goToOrderViewDetailSection(this.orderRef);\n } else {\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).content[0];\n \n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.isCPODown = true;\n }\n );\n \n }\n\n \n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n } else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.isAnyFeeGroupAvilable =true;\n this.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts();\n this.calculateOrderFeesAmounts();\n this.totalRefundAmount = this.calculateRefundAmount();\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).content[0];\n\n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.setDefaults();\n this.isCPODown = true;\n }\n );\n\n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n }\n\n if( this.paymentGroups !== undefined) {\n this.checkForExceptionRecord();\n }\n \n if(this.OrderslistService.getisFromServiceRequestPages() !== null) {\n this.OrderslistService.getisFromServiceRequestPages().subscribe((data) => this.isFromServiceRequestPage = data);\n }\n \n }\n\n setDefaults(): void {\n this.totalPayments = 0.00;\n this.totalRemissions = 0.00;\n this.totalNonOffPayments = 0.00;\n this.totalFees = 0.00;\n }\n\n getAllocationStatus(payments: any) {\n\n let paymentAllocation = payments.payment_allocation,\n isAllocationStatusExist = paymentAllocation.length > 0;\n return isAllocationStatusExist ? paymentAllocation[0].allocation_status : '-';\n //return \"-\";\n\n }\n\n checkForExceptionRecord(): void {\n \n if (this.paymentGroups.length === 0 && (this.selectedOption.toLocaleLowerCase() === 'ccdorexception' || this.selectedOption.toLocaleLowerCase() === 'rc')) {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n recordData => {\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length > 0 && recordData['data'].ccd_reference > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length > 0 && recordData['data'].ccd_reference === undefined) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n }\n\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length === undefined && recordData['data'].ccd_reference > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n });\n }\n\n if (this.paymentGroups.length === 0 && this.selectedOption.toLocaleLowerCase() === 'dcn') {\n if (this.paymentLibComponent.CCD_CASE_NUMBER.length > 0 && this.paymentLibComponent.EXC_REFERENCE.length > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n } else if (this.paymentLibComponent.CCD_CASE_NUMBER.length === 0 && this.paymentLibComponent.EXC_REFERENCE.length > 0) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n } else {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n }\n if (this.paymentGroups.length > 0)\n this.paymentGroups.forEach(paymentGroup => {\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.case_reference !== undefined && payment.ccd_case_number === undefined) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n } else {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n\n });\n }\n });\n }\n\n calculateOrderFeesAmounts(): void {\n let feesTotal = 0.00;\n this.paymentGroups.forEach(paymentGroup => {\n this.resetOrderVariables();\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.orderFeesTotal = this.orderFeesTotal + fee.calculated_amount\n 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 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.replace(/\"/g,\"\")\n );\n }\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n this.viewStatus = 'addrefundforremission';\n \n this.payment = payment;\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.payment.reference));\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n\n redirectToremissionPage(event: any) {\n event.preventDefault();\n this.paymentLibComponent.viewName = 'remission'\n }\n goToServiceRequestPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = false;\n this.paymentLibComponent.SERVICEREQUEST = 'true';\n this.paymentLibComponent.isFromServiceRequestPage = true;\n window.location.reload();\n }\n redirectToReportsPage(event: any) {\n event.preventDefault();\n this.router.navigateByUrl(`/reports?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}`);\n }\n\n loadFeeSummaryPage(paymentGroup: IPaymentGroup) {\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.payment_group_reference;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n\n goToPaymentViewComponent(paymentGroup: any) {\n this.paymentLibComponent.paymentMethod = paymentGroup.paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentGroup.paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n\n goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent({ paymentGroupReference, paymentReference, paymentMethod });\n }\n\n selectedUnprocessedFeeEvent(unprocessedRecordId: string) {\n if (unprocessedRecordId) {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = false;\n }\n this.isUnprocessedRecordSelected = true;\n } else {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = true;\n }\n this.isUnprocessedRecordSelected = false;\n }\n }\n\n getUnprocessedFeeCount(unProcessedRecordCount: number) {\n this.unprocessedRecordCount = unProcessedRecordCount;\n }\n\n calculateAmountDue(fee: IFee) {\n\n if (fee.date_created) {\n return fee.amount_due !== undefined ? fee.amount_due : fee.net_amount;\n } else {\n return \"0.00\";\n }\n }\n\n confirmRemoveFee(fee: IFee) {\n this.isRemoveBtnDisabled = false;\n this.feeId = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n cancelRemoval() {\n this.viewStatus = 'main';\n }\n\n removeFee(fee: any) {\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n window.location.reload();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n\n issueRefund(payment: IPayment) {\n if (payment !== null && payment !== undefined) {\n if(this.chkIssueRefundBtnEnable(payment)) {\n this.viewStatus = 'issuerefund';\n this.payment = payment;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.isRefundRemission = true;\n }\n }\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund()) {\n if (this.orderDetail[0]['remissions'].length > 0) {\n for (const remission of this.orderDetail[0]['remissions']) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n }\n return true;\n } else {\n return false;\n }\n }\n\n chkForPBAPayment(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isPBA = true;\n }\n });\n }\n });\n if (this.isPBA) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n this.isIssueRefunfBtnEnable = true;\n }\n if (this.isIssueRefunfBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n check4AllowedRoles2AccessPBApayment = (): boolean => {\n return this.isEligible4PBAPayment.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n if (payment !== null && payment !== undefined) {\n let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\n }\n }\n\n loadPBAAccountPage(orderRef: IPayment) {\n this.paymentLibComponent.pbaPayOrderRef = orderRef;\n this.paymentLibComponent.viewName = 'pba-payment';\n }\n}","export class PaymentToPayhubRequest {\n currency = 'GBP';\n description = 'PayBubble payment';\n channel = 'telephony';\n provider = 'pci pal';\n case_type: string;\n\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.case_type= caseType;\n }\n}\n","export class PayhubAntennaRequest {\n currency = 'GBP';\n case_type: string;\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.case_type= caseType;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IFee } from '../../interfaces/IFee';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { PayhubAntennaRequest } from '../../interfaces/PayhubAntennaRequest';\nimport { SafeHtml } from '@angular/platform-browser';\nimport {Router} from '@angular/router';\nimport {Location} from '@angular/common';\nimport { OrderslistService } from '../../services/orderslist.service';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-fee-summary',\n templateUrl: './fee-summary.component.html',\n styleUrls: ['./fee-summary.component.scss']\n})\n\nexport class FeeSummaryComponent implements OnInit {\n @Input() paymentGroupRef: string;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: string;\n @Input() caseType: string;\n @Input() isOldPcipalOff: string;\n @Input() isNewPcipalOff: string;\n\n\n bsPaymentDcnNumber: string;\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n viewStatus = 'main';\n currentFee: IFee;\n totalFee: number;\n payhubHtml: SafeHtml;\n service: string = \"\";\n platForm: string = \"\";\n upPaymentErrorMessage: string;\n selectedOption:string;\n isBackButtonEnable: boolean = true;\n outStandingAmount: number;\n isFeeAmountZero: boolean = false;\n totalAfterRemission: number = 0;\n isConfirmationBtnDisabled: boolean = false;\n isRemoveBtnDisabled: boolean = false;\n isPaymentExist: boolean = false;\n isRemissionsExist: Boolean = false;\n isRemissionsMatch = false;\n isStrategicFixEnable: boolean;\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private location: Location,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private OrderslistService: OrderslistService\n ) {}\n\n ngOnInit() {\n this.viewStatus = 'main';\n this.caseType = this.paymentLibComponent.CASETYPE;\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.setCaseType(this.paymentLibComponent.CASETYPE);\n if ((!this.isOldPcipalOff && this.isNewPcipalOff)) {\n this.platForm = '8x8';\n } else if ((this.isOldPcipalOff && !this.isNewPcipalOff)) {\n this.platForm = 'Antenna';\n } else if ((this.isOldPcipalOff && this.isNewPcipalOff)){\n this.platForm = '8x8';\n }\n\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n if (this.bsPaymentDcnNumber) {\n this.getUnassignedPaymentlist();\n }\n this.getPaymentGroup();\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.paymentLibComponent.DCN_NUMBER).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error';\n }\n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error'; \n } \n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n }\n\n }\n\n getRemissionByFeeCode(feeCode: string): IRemission {\n if (this.paymentGroup && this.paymentGroup.remissions && this.paymentGroup.remissions.length > 0) {\n for (const remission of this.paymentGroup.remissions) {\n if (remission.fee_code === feeCode) {\n return remission;\n }\n }\n }\n return null;\n }\n\n addRemission(fee: IFee) {\n this.currentFee = fee;\n this.viewStatus = 'add_remission';\n }\n\n getPaymentGroup() {\n let fees = [];\n this.paymentViewService.getPaymentGroupDetails(this.paymentGroupRef).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n this.isPaymentExist = paymentGroup.payments ? paymentGroup.payments.length > 0 : false;\n this.isRemissionsExist = paymentGroup.remissions ? paymentGroup.remissions.length > 0 : false;\n\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.totalAfterRemission = this.totalAfterRemission + fee.net_amount;\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true;\n }\n this.isRemissionsMatch = false;\n paymentGroup.remissions.forEach(rem => {\n if(rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n \n if(!this.isRemissionsMatch) {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees;\n }\n\n this.outStandingAmount = this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n\n confirmRemoveFee(fee: IFee){\n this.isRemoveBtnDisabled = false;\n this.currentFee = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n removeFee(fee: any){\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n if (this.paymentGroup.fees && this.paymentGroup.fees.length > 1){\n this.totalAfterRemission = 0;\n this.getPaymentGroup();\n this.viewStatus = 'main';\n return;\n }\n this.loadCaseTransactionPage();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n loadCaseTransactionPage() {\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n\n let partUrl = `selectedOption=${this.paymentLibComponent.SELECTED_OPTION}`;\n partUrl +=this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl +=this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl +=this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n\n let url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=true&${partUrl}`;\n this.router.navigateByUrl(url);\n }\n cancelRemission() {\n this.viewStatus = 'main';\n }\n redirectToFeeSearchPage(event: any, page?: string) {\n event.preventDefault();\n let partUrl =this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl +=this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl +=this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n\n if(this.viewStatus === 'feeRemovalConfirmation' || this.viewStatus === 'add_remission') {\n this.viewStatus = 'main';\n return;\n }\n let url = `/fee-search?ccdCaseNumber=${this.ccdCaseNumber}&selectedOption=${this.paymentLibComponent.SELECTED_OPTION}&paymentGroupRef=${this.paymentGroupRef}${partUrl}`;\n this.router.navigateByUrl(url);\n }\n takePayment() {\n this.isConfirmationBtnDisabled = true;\n const requestBody = new PaymentToPayhubRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType),\n antennaReqBody = new PayhubAntennaRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType);\n\n if(this.platForm === '8x8') {\n this.paymentViewService.postPaymentToPayHub(requestBody, this.paymentGroupRef).subscribe(\n response => {\n this.location.go(`payment-history?view=fee-summary`);\n this.payhubHtml = response;\n this.viewStatus = 'payhub_view';\n this.isBackButtonEnable=false;\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.router.navigateByUrl('/pci-pal-failure');\n }\n );\n } else if(this.platForm === 'Antenna') {\n\n this.paymentViewService.postPaymentAntennaToPayHub(antennaReqBody, this.paymentGroupRef).subscribe(\n response => {\n this.isBackButtonEnable=false;\n window.location.href = '/makePaymentByTelephoneyProvider';\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.router.navigateByUrl('/pci-pal-failure');\n }\n );\n }\n\n }\n\n goToAllocatePage(outStandingAmount: number, isFeeAmountZero: Boolean) {\n if (outStandingAmount > 0 || (outStandingAmount === 0 && isFeeAmountZero)) {\n this.paymentLibComponent.paymentGroupReference = this.paymentGroupRef;\n this.paymentLibComponent.viewName = 'allocate-payments';\n } else {\n this.loadCaseTransactionPage();\n }\n }\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\n\n\n\n@Component({\n selector: 'ccpay-error-banner',\n templateUrl: './error-banner.component.html',\n styleUrls: ['./error-banner.component.scss']\n})\n\nexport class ErrorBannerComponent implements OnInit {\n @Input('errorMessage') errorMessage;\n\n constructor(\n ) {}\n\n ngOnInit() {\n\n }\n}\n","\nexport class UnidentifiedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n unidentified_reason: string;\n\n constructor(payment_group_reference: string, payment_reference : string, unidentified_reason: any) {\n this.payment_allocation_status = {\n description: '',\n name: \"Unidentified\"\n };\n this.payment_group_reference = payment_group_reference ;\n this.payment_reference= payment_reference;\n this.unidentified_reason= unidentified_reason;\n\n }\n\n\n\n}\n","import { IBSPayments } from \"./IBSPayments\";\n\nexport class AllocatePaymentRequest {\n amount: Number;\n banked_date: String;\n ccd_case_number: String;\n exception_record: string;\n currency: String;\n document_control_number: String;\n external_provider: String;\n giro_slip_no: String;\n payer_name: String;\n payment_channel: Object;\n payment_status: Object;\n payment_method: String;\n case_type: String;\n payment_allocation_dto?: {\n allocation_reason: String,\n allocation_status: String,\n explanation: String,\n payment_allocation_status: Object,\n payment_group_reference: String,\n payment_reference: String,\n reason: String,\n receiving_office: String,\n unidentified_reason: String,\n user_id: String,\n user_name: String,\n case_type: String\n }\n\n constructor(ccd_case_number : string, unAllocatedPayment: IBSPayments, caseType: string, exceptionRecord: string, allocatedRequest?: any) {\n this.amount = unAllocatedPayment.amount;\n this.banked_date = unAllocatedPayment.date_banked;\n this.ccd_case_number = ccd_case_number;\n this.exception_record = exceptionRecord;\n this.currency= unAllocatedPayment.currency;\n this.document_control_number = unAllocatedPayment.dcn_reference;\n this.external_provider = 'exela';\n this.giro_slip_no = unAllocatedPayment.bgc_reference;\n this.payer_name = unAllocatedPayment.payer_name;\n this.payment_channel = {\n description: '',\n name: 'bulk scan'\n };\n this.payment_status ={\n description: 'bulk scan payment completed',\n name: 'success'\n }\n this.payment_method = unAllocatedPayment.payment_method;\n this.case_type= caseType;\n if(allocatedRequest) {\n this.payment_allocation_dto = allocatedRequest;\n }\n\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\n\n@Component({\n selector: 'app-mark-unidentified-payment',\n templateUrl: './mark-unidentified-payment.component.html',\n styleUrls: ['./mark-unidentified-payment.component.scss']\n})\nexport class MarkUnidentifiedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnidentifiedForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n isInvesticationDetailEmpty: boolean = false;\n investicationDetailHasError: boolean = false;\n investicationDetailMinHasError: boolean = false;\n investicationDetailMaxHasError: boolean = false;\n errorMessage = this.getErrorMessage(false);\n unassignedRecord:IBSPayments;\n siteID: string = null;\n investigationComment: string;\n isConfirmButtondisabled:Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n isStrategicFixEnable: boolean = true;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.markPaymentUnidentifiedForm = this.formBuilder.group({\n investicationDetail: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ]))\n });\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.getErrorMessage(false);\n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n saveAndContinue() {\n this.resetForm([false, false, false, false]);\n const investicationField = this.markPaymentUnidentifiedForm.controls.investicationDetail;\n const formerror = investicationField.errors;\n if (this.markPaymentUnidentifiedForm.dirty && this.markPaymentUnidentifiedForm.valid) {\n this.investigationComment = this.markPaymentUnidentifiedForm.controls.investicationDetail.value;\n this.viewStatus = 'unidentifiedContinueConfirm';\n }else {\n if(investicationField.value == '' ) {\n this.resetForm([true, false, false, false]);\n }\n if(investicationField.value != '' && investicationField.invalid ) {\n this.resetForm([false, true, false, false]);\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false, false, true, false]);\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, true]);\n }\n }\n }\n resetForm(val) {\n this.isInvesticationDetailEmpty = val[0];\n this.investicationDetailHasError = val[1];\n this.investicationDetailMinHasError = val[2];\n this.investicationDetailMaxHasError = val[3];\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const reason = this.markPaymentUnidentifiedForm.get('investicationDetail').value;\n\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Unidentified',\n payment_allocation_status: {\n description: '',\n name: 'Unidentified'\n },\n unidentified_reason: reason,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnidentifiedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, reason);\n if (response2.success) {\n this.paymentViewService.postBSUnidentifiedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n cancelMarkUnidentifiedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.markPaymentUnidentifiedForm.get('investicationDetail').value!==\"\"){\n this.viewStatus = 'unidentifiedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.viewStatus = 'mainForm';\n }\n }\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","\nexport class UnsolicitedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n receiving_office: string;\n receiving_email_address: string;\n sending_email_address: string;\n unidentified_reason: string;\n constructor(payment_group_reference: string, payment_reference : string, reason: string,responsible_office: string, responsible_person:string,email_id: string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Transferred\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.unidentified_reason= reason;\n this.receiving_office= responsible_office;\n this.receiving_email_address= email_id;\n this.sending_email_address= responsible_person;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\n\n\n@Component({\n selector: 'app-mark-unsolicited-payment',\n templateUrl: './mark-unsolicited-payment.component.html',\n styleUrls: ['./mark-unsolicited-payment.component.scss']\n})\nexport class MarkUnsolicitedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnsolicitedForm: FormGroup;\n viewStatus: string;\n reasonHasError: boolean = false;\n isReasonEmpty: boolean = false;\n reasonMinHasError: boolean = false;\n reasonMaxHasError: boolean = false;\n responsibleOfficeHasError: boolean = false;\n isResponsibleOfficeEmpty: boolean = false;\n errorMessage = this.getErrorMessage(false);\n ccdCaseNumber: string;\n bspaymentdcn: string;\n unassignedRecord: IBSPayments;\n siteID: string = null;\n reason: string;\n responsiblePerson: string;\n responsibleOffice: string;\n emailId: string;\n isConfirmButtondisabled: Boolean = false;\n isContinueButtondisabled: Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n selectedSiteId: string;\n selectedSiteName: string;\n isStrategicFixEnable: boolean = true;\n siteIDList;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.resetForm([false,false,false,false,false,false], 'all');\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.paymentViewService.getSiteID().subscribe(\n siteids => {\n this.isContinueButtondisabled = false;\n this.errorMessage = this.getErrorMessage(false);\n this.siteIDList = JSON.parse(siteids);\n },\n err => {\n window.scrollTo(0, 0);\n this.isContinueButtondisabled = true;\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n \n this.markPaymentUnsolicitedForm = this.formBuilder.group({\n reason: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n responsibleOffice: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s\\\\n,\\\\.-:]*)$')\n ])),\n responsiblePerson: new FormControl(''),\n emailId: new FormControl('')\n });\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const controls = this.markPaymentUnsolicitedForm.controls;\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Transferred',\n payment_allocation_status: {\n description: '',\n name: 'Transferred'\n },\n unidentified_reason: controls.reason.value,\n receiving_office: this.selectedSiteId,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n // controls.responsibleOffice.setValue('P219');\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const response1 = JSON.parse(res1),\n requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnsolicitedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, controls.reason.value, this.selectedSiteId, controls.responsiblePerson.value, controls.emailId.value);\n if (response2.success) {\n this.paymentViewService.postBSUnsolicitedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n saveAndContinue() {\n this.resetForm([false,false,false,false,false,false], 'all');\n const formerror = this.markPaymentUnsolicitedForm.controls.reason.errors;\n const reasonField = this.markPaymentUnsolicitedForm.controls.reason;\n //const officeIdField = this.selectedSiteId;\n const officeIdField = this.markPaymentUnsolicitedForm.controls.responsibleOffice;\n if (this.markPaymentUnsolicitedForm.dirty && this.markPaymentUnsolicitedForm.valid) {\n const controls = this.markPaymentUnsolicitedForm.controls;\n this.emailId = controls.emailId.value;\n this.responsibleOffice = officeIdField.value;\n this.responsiblePerson = controls.responsiblePerson.value;\n this.reason = controls.reason.value;\n this.viewStatus = 'unsolicitedContinueConfirm';\n }else {\n if( reasonField.value == '' ) {\n this.resetForm([true,false,false,false,false,false], 'reason');\n }\n if(reasonField.value != '' && this.markPaymentUnsolicitedForm.controls.reason.invalid ) {\n this.resetForm([false,true,false,false,false,false], 'reason');\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false,false,true,false,false,false], 'reason');\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false,false,false,true,false,false], 'reason');\n }\n if(officeIdField.value == '') {\n this.resetForm([false,false,false,false,true,false], 'responsibleOffice');\n }\n if(officeIdField.value != '' && officeIdField.invalid) {\n this.resetForm([false,false,false,false,false,true],'responsibleOffice');\n }\n }\n }\n resetForm(val, field) {\n if(field==='reason' || field==='all') {\n this.isReasonEmpty = val[0];\n this.reasonHasError = val[1];\n this.reasonMinHasError = val[2];\n this.reasonMaxHasError = val[3];\n }\n if(field==='responsibleOffice' || field==='all') {\n this.isResponsibleOfficeEmpty = val[4];\n this.responsibleOfficeHasError = val[5];\n }\n }\n\ncancelMarkUnsolicitedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.checkingFormValue()){\n this.viewStatus = 'unsolicitedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.markPaymentUnsolicitedForm.controls.responsibleOffice.setValue('');\n this.viewStatus = 'mainForm';\n }\n }\n checkingFormValue(){\n const formFields = this.markPaymentUnsolicitedForm.value;\n let valueExists = false;\n\n for (var field in formFields) {\n if (formFields.hasOwnProperty(field) && formFields[field] !==\"\") {\n valueExists = true;\n break;\n }\n }\n return valueExists;\n }\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n \n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n\n getErrorMessage(isErrorExist) {\n return {\n title: \"Something went wrong.\",\n body: \"Please try again later.\",\n showError: isErrorExist\n };\n }\n\n selectchange(args){ \n this.selectedSiteId = args.target.value; \n this.selectedSiteName = args.target.options[args.target.selectedIndex].text; \n } \n\n}\n","import { Component, OnInit, Output,Input, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport {Router} from '@angular/router';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-app-unprocessed-payments',\n templateUrl: './unprocessed-payments.component.html',\n styleUrls: ['./unprocessed-payments.component.scss']\n})\nexport class UnprocessedPaymentsComponent implements OnInit {\n\n @Input('FEE_RECORDS_EXISTS') FEE_RECORDS_EXISTS: boolean;\n @Input('PAYMENTREF') PAYMENTREF: string;\n @Input('ISTURNOFF') ISTURNOFF: boolean;\n @Input('IS_BUTTON_ENABLE') IS_BUTTON_ENABLE: boolean;\n @Input('IS_OS_AMT_AVAILABLE') IS_OS_AMT_AVAILABLE: boolean;\n @Input('ISNEWPCIPALOFF') ISNEWPCIPALOFF: boolean;\n @Input('ISOLDPCIPALOFF') ISOLDPCIPALOFF: boolean;\n @Input('ISSFENABLE') ISSFENABLE: boolean;\n @Input('PAYMENTSLENGTH') PAYMENTSLENGTH:Number;\n @Input('LEVEL')LEVEL:Number;\n\n @Output() selectedUnprocessedFeeEvent: EventEmitter<string> = new EventEmitter();\n @Output() getUnprocessedFeeCount: EventEmitter<string> = new EventEmitter();\n\n viewStatus = 'main';\n unassignedRecordList: IBSPayments;\n upPaymentErrorMessage: string = null;\n ccdCaseNumber: string;\n recordId: string = null;\n isRecordExist: boolean = false;\n dcnNumber: string = null;\n selectedOption: string;\n isUnprocessedRecordSelected: boolean = true;\n isAllocateToExistingFeebtnEnabled: boolean = false;\n isMarkAsUnidentifiedbtnEnabled: boolean = false;\n isAllocatedToNewFeebtnEnabled: boolean = false;\n isExceptionCase: boolean = false;\n serviceId: string = null;\n isBulkScanEnable;\n isNewpcipaloff;\n isOldpcipaloff;\n isTurnOff: boolean = true;\n isStFixEnable;\n unassignedRecordSelectedList: IBSPayments;\n unassignedRecordListLength: number = 0;\n showContent: boolean;\n\n constructor(private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private OrderslistService: OrderslistService\n ) { }\n\n ngOnInit() {\n // Todo ...\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isNewpcipaloff = this.paymentLibComponent.ISNEWPCIPALOFF;\n this.isOldpcipaloff = this.paymentLibComponent.ISOLDPCIPALOFF;\n this.isStFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.getFeeExists().subscribe( (data) => this.FEE_RECORDS_EXISTS = data);\n this.getUnassignedPaymentlist();\n\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.dcnNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n }\n\n }\n\n setValuesForUnassignedRecord(unassignedPayments) {\n \n this.unassignedRecordList = unassignedPayments.payments;\n if(this.unassignedRecordList){\n this.unassignedRecordListLength = unassignedPayments.payments.length\n }\n this.serviceId = unassignedPayments.responsible_service_id;\n if (unassignedPayments['ccd_reference'] === undefined) {\n this.isExceptionCase = true;\n }\n // this.isRecordExist = this.unassignedRecordList.length === 0;\n this.getUnprocessedFeeCount.emit(<any>this.unassignedRecordList.length);\n this.unprocessedPaymentSelectEvent(this.unassignedRecordList);\n }\n\n formatUnassignedRecordId(ID: Number) {\n return `unassignrecord-${ID}`;\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n\n redirectToFeeSearchPage(event: any, dcn_reference:any) {\n event.preventDefault();\n this.recordId = dcn_reference;\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n url += this.isOldpcipaloff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n url += this.isNewpcipaloff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}&dcn=${this.recordId}${url}`);\n }\n\n loadUnsolicitedPage(viewName: string, dcn_reference:any) {\n this.recordId = dcn_reference;\n this.paymentLibComponent.bspaymentdcn = this.recordId;\n this.paymentLibComponent.viewName = viewName;\n }\n\n unprocessedPaymentSelectEvent(selectedRecordReference: any) {\n this.isUnprocessedRecordSelected = true;\n this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit(selectedRecordReference);\n }\n\n resetButtons() {\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n }\n\n goToAllocatePage(dcn_reference:any) {\n this.paymentLibComponent.bspaymentdcn = dcn_reference;\n this.paymentLibComponent.unProcessedPaymentServiceId = this.serviceId\n this.paymentLibComponent.isTurnOff = this.ISTURNOFF;\n this.paymentLibComponent.isNewPcipalOff = this.ISNEWPCIPALOFF;\n this.paymentLibComponent.isOldPcipalOff = this.ISOLDPCIPALOFF;\n this.paymentLibComponent.ISSFENABLE = this.isStFixEnable;\n\n if(this.ISTURNOFF) {\n this.paymentLibComponent.paymentGroupReference = this.PAYMENTREF;\n this.paymentLibComponent.viewName = 'fee-summary';\n }else {\n this.paymentLibComponent.paymentGroupReference = null;\n this.paymentLibComponent.viewName = 'allocate-payments';\n }\n\n }\n\n validateButtons() {\n if ( this.isUnprocessedRecordSelected && this.isExceptionCase) {\n this.isMarkAsUnidentifiedbtnEnabled = true;\n } else if ( this.isUnprocessedRecordSelected && !this.isExceptionCase && !this.FEE_RECORDS_EXISTS) {\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = true;\n } else if( this.isUnprocessedRecordSelected && !this.isExceptionCase && this.FEE_RECORDS_EXISTS ) {\n if(!this.ISTURNOFF) {\n this.isAllocateToExistingFeebtnEnabled = true;\n this.isAllocatedToNewFeebtnEnabled = false;\n } else {\n this.isAllocateToExistingFeebtnEnabled = this.IS_OS_AMT_AVAILABLE;\n this.isAllocatedToNewFeebtnEnabled = true;\n }\n }\n }\n\n unprocessedPaymentUnSelectEvent(event: any) {\n event.preventDefault();\n this.recordId = null;\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n //this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit('');\n }\n\n showDetailRow(event: any,obj: any, i: any) {\n event.preventDefault();\n \n this.unassignedRecordSelectedList = obj;\n \n }\n}\n","import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport {IPayment} from '../../interfaces/IPayment';\nimport {Router} from '@angular/router';\n\n@Component({\n selector: 'ccpay-app-processed-payments',\n templateUrl: './processed-payments.component.html',\n styleUrls: ['./processed-payments.component.scss']\n})\nexport class ProcessedPaymentsComponent implements OnInit {\n\n @Input('NONPAYMENTS') NONPAYMENTS: IPayment[];\n @Output() goToPaymentViewComponent: EventEmitter<any> = new EventEmitter();\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService\n ) { }\n ngOnInit() {\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n redirectToPaymentViewPage(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent.emit({paymentGroupReference, paymentReference, paymentMethod});\n }\n}\n","\nexport class IAllocationPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n reason: string;\n explanation: string;\n user_name: string;\n constructor(payment_group_reference: string, payment_reference : string, reason? : string, explanation? : string, userName? : string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Allocated\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.reason = reason ? reason : null;\n this.explanation = explanation ? explanation : null;\n this.user_name = userName ? userName : null;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {CaseTransactionsService} from '../../services/case-transactions/case-transactions.service'; \nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport {IBSPayments} from '../../interfaces/IBSPayments';\nimport {AllocatePaymentRequest} from '../../interfaces/AllocatePaymentRequest';\nimport {IAllocationPaymentsRequest} from '../../interfaces/IAllocationPaymentsRequest';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n\n\n@Component({\n selector: 'app-allocate-payments',\n templateUrl: './allocate-payments.component.html',\n styleUrls: ['./allocate-payments.component.scss']\n})\nexport class AllocatePaymentsComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() caseType: string;\n\n overUnderPaymentForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n recordId:string;\n feedbackUrlLabel:string;\n unAllocatedPayment: IBSPayments = {\n amount: 0\n };\n siteID: string = null;\n errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n paymentGroup: IPaymentGroup;\n paymentGroups: IPaymentGroup[] = [];\t\n remainingAmount: number;\n isRemainingAmountGtZero: boolean;\n isMoreDetailsBoxHide: boolean = true;\n isRemainingAmountLtZero: boolean;\n afterFeeAllocateOutstanding: number;\n amountForAllocation: number;\n isConfirmButtondisabled: boolean = false;\n isContinueButtondisabled: boolean = true;\n otherPaymentExplanation: string = null;\n selectedOption: string = null;\n isFeeAmountZero: boolean = false;\t\n\n paymentReasonHasError: boolean = false;\n paymentExplanationHasError: boolean = false;\n isPaymentDetailsEmpty: boolean = false;\n isPaymentDetailsInvalid: boolean = false;\n paymentDetailsMinHasError: boolean = false;\n paymentDetailsMaxHasError: boolean = false;\n isUserNameEmpty: boolean = false;\n isUserNameInvalid: boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n paymentReason: string = null;\n paymentExplanation: string = null;\n userName: string = null;\n paymentSectionLabel: any;\n paymentRef: string = null;\n isStrategicFixEnable: boolean = true;\n orderLevelFees: IOrderReferenceFee[] = [];\n cookieUserName: string[] = [];\n enCookieUserName: any;\n userNameField: string = null;\n\n reasonList: { [key: string]: { [key: string]: string } }= {\n overPayment: {\n hwfReward: 'Help with Fees (HWF) awarded. Please include the HWF reference number in the explanatory note',\n wrongFee: 'Incorrect payment received',\n notIssueCase: 'Unable to issue case',\n otherDeduction: 'Other'\n },\n shortFall: {\n helpWithFee: 'Help with Fees (HWF) application declined',\n wrongFee: 'Incorrect payment received',\n other: 'Other'\n }\n }\n explanationList = {\n overPayment: {\n referRefund: 'Details in case notes. Refund due',\n noRefund: 'Details in case notes. No refund due',\n noCase: 'No case created. Refund due',\n other: 'Other'\n },\n shortFall: {\n holdCase: 'I have put a stop on the case and contacted the applicant requesting the balance of payment',\n heldCase: 'I have put a stop on the case. The applicant needs to be contacted to request the balance of payment',\n other: 'Other'\n }\n }\n\n refund = {\n reason: {\n duplicate: 'Duplicate payment',\n humanerror: 'Human error',\n caseWithdrawn: 'Case withdrawn',\n other: 'Other'\n }\n }\n\n\n constructor(\n private errorHandlerService: ErrorHandlerService,\n private caseTransactionsService: CaseTransactionsService,\n private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n if (this.paymentLibComponent.paymentGroupReference !== null) {\n this.viewStatus = 'allocatePaymentConfirmation';\n }\n \n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.paymentRef = this.paymentLibComponent.paymentGroupReference;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.isTurnOff = this.paymentLibComponent.isTurnOff;\n this.overUnderPaymentForm = this.formBuilder.group({\n moreDetails: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n userName: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s]*)$')\n ])),\n });\n this.OrderslistService.getOrdersList().subscribe( (data) =>\n this.orderLevelFees = data.filter(data => data.orderStatus !== 'Paid'));\n this.OrderslistService.getCaseType().subscribe( (data) => this.caseType = data);\n this.getUnassignedPayment();\n }\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n }\n\n getPaymentGroupDetails(){\n\n if(!this.isTurnOff){\n this.paymentViewService.getPaymentGroupDetails(this.paymentRef).subscribe(\n paymentGroup => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.paymentGroup = paymentGroup;\n this.saveAndContinue();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.paymentGroups = paymentGroups['payment_groups'].filter(paymentGroup => {\n paymentGroup.fees.forEach(fee => {\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true\n }\n });\n let fstCon = this.getGroupOutstandingAmount(<IPaymentGroup>paymentGroup),\n scndCn = fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero) && paymentGroup.payment_group_reference === this.paymentRef;\n return this.paymentRef ? scndCn : fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero);\n });\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }\n\n }\n\n selectedPaymentGroup(paymentGroup: IPaymentGroup) {\t\n this.isContinueButtondisabled = false;\t\n this.paymentGroup = paymentGroup;\t\n }\t\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n\n gotoSummaryPage(event: any) { \n event.preventDefault();\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n\n cancelAllocatePayment(event: any){\n event.preventDefault();\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n if(!this.isTurnOff){\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n } else {\n this.viewStatus = 'mainForm';\t\n }\n }\n confirmAllocatePayement(){\n this.enCookieUserName = document.cookie.split(\";\").find(row => row.includes(\"user-info\")).split(\"=\")[1].split(\";\");\n this.cookieUserName = JSON.parse(decodeURIComponent(this.enCookieUserName));\n \n const fullName = this.cookieUserName['forename'] + ' ' + this.cookieUserName['surname'];\n\n const paymentDetailsField = this.overUnderPaymentForm.controls.moreDetails,\n paymentFormError = this.overUnderPaymentForm.controls.moreDetails.errors,\n userNameField = fullName,\n isEmptyCondtion = this.paymentReason && this.paymentExplanation,\n isOtherOptionSelected = this.paymentExplanation === 'Other';\n\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n if ( (!this.isRemainingAmountGtZero && !this.isRemainingAmountLtZero) || isEmptyCondtion && (!isOtherOptionSelected && userNameField.length > 0 || isOtherOptionSelected && userNameField.length > 0 && paymentDetailsField.valid)) {\n this.isConfirmButtondisabled = true;\n this.otherPaymentExplanation = this.paymentExplanation === 'Other' ? paymentDetailsField.value : this.paymentExplanation;\n this.userName = userNameField;\n this.finalServiceCall();\n }else {\n if(!this.paymentReason) {\n this.resetForm([true, false, false, false, false, false, false, false], 'reason');\n }\n if(!this.paymentExplanation) {\n this.resetForm([false, true, false, false, false, false, false, false], 'explanation');\n }\n if(this.paymentExplanation && isOtherOptionSelected) {\n if(paymentDetailsField.value == '' ) {\n this.resetForm([false, false, true, false, false, false, false, false], 'other');\n }\n if(paymentDetailsField.value != '' && paymentDetailsField.invalid ) {\n this.resetForm([false, false, false, true, false, false, false, false], 'other');\n }\n if(paymentFormError && paymentFormError.minlength && paymentFormError.minlength.actualLength < 3 ) {\n this.resetForm([false, false, false, false, true, false, false, false], 'other');\n }\n if(paymentFormError && paymentFormError.maxlength && paymentFormError.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, false, false, true, false, false], 'other');\n }\n }\n if(userNameField.length === 0) {\n this.resetForm([false, false, false, false, false, false, true, false], 'username');\n }\n }\n }\n resetForm(vals, field) {\n if(field==='reason' || field==='all') {\n this.paymentReasonHasError = vals[0];\n }\n if(field==='explanation' || field==='all') {\n this.paymentExplanationHasError = vals[1];\n }\n if(field==='other' || field==='all') {\n this.isPaymentDetailsEmpty = vals[2];\n this.isPaymentDetailsInvalid = vals[3];\n this.paymentDetailsMinHasError = vals[4];\n this.paymentDetailsMaxHasError = vals[5];\n }\n if(field==='username' || field==='all') {\n this.isUserNameEmpty = vals[6];\n this.isUserNameInvalid = vals[7];\n }\n }\n finalServiceCall() {\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n reason: this.paymentReason,\n allocation_status:'Allocated',\n explanation: this.otherPaymentExplanation,\n payment_allocation_status: {\n description: '',\n name: 'Allocated'\n },\n payment_group_reference: this.paymentGroup.payment_group_reference,\n case_type: this.caseType,\n user_name: this.userName\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unAllocatedPayment, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSPaymentStrategic(postStrategicBody , this.paymentGroup.payment_group_reference).subscribe(\n res => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n });\n\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response1 = JSON.parse(res1);\n if (response1.success) {\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unAllocatedPayment, this.siteID, this.exceptionReference);\n this.bulkScaningPaymentService.postBSAllocatePayment(requestBody, this.paymentGroup.payment_group_reference).subscribe(\n res2 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response2 = JSON.parse(res2);\n const reqBody = new IAllocationPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, this.paymentReason, this.otherPaymentExplanation, this.userName);\n if (response2.success) {\n this.paymentViewService.postBSAllocationPayments(reqBody).subscribe(\n \n res3 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n ); \n }\n }\n\n saveAndContinue(){\n if(this.paymentGroup) {\n this.isMoreDetailsBoxHide = true;\n this.overUnderPaymentForm.get('moreDetails').reset();\n this.overUnderPaymentForm.get('moreDetails').setValue('');\n this.overUnderPaymentForm.get('userName').reset();\n this.overUnderPaymentForm.get('userName').setValue('');\n this.paymentReason = '';\n this.paymentExplanation = '';\n let GroupOutstandingAmount = this.getGroupOutstandingAmount(this.paymentGroup);\n const remainingToBeAssigned = this.unAllocatedPayment.amount - GroupOutstandingAmount;\n this.isRemainingAmountGtZero = remainingToBeAssigned > 0;\n this.isRemainingAmountLtZero = remainingToBeAssigned < 0;\n this.paymentSectionLabel = this.isRemainingAmountGtZero ? { \n title: 'There is an Over payment of',\n reason: 'Provide a reason. This will be used in the Refund process.',\n }: this.isRemainingAmountLtZero ? { \n title: 'There is an Under payment of',\n reason: 'Provide a reason',\n }: { \n title:'Amount left to be allocated',\n reason:'',\n };\n this.feedbackUrlLabel = this.isRemainingAmountGtZero ? 'CONFIRMALLOCATION_SURPLUS' : this.isRemainingAmountLtZero ? 'CONFIRMALLOCATION_SHORTFALL' : 'CONFIRMALLOCATION';\n this.remainingAmount = this.isRemainingAmountGtZero ? remainingToBeAssigned : this.isRemainingAmountLtZero ? remainingToBeAssigned * -1 : 0;\n this.afterFeeAllocateOutstanding = remainingToBeAssigned >= 0 ? 0 : (remainingToBeAssigned * -1);\n this.amountForAllocation = GroupOutstandingAmount >= this.unAllocatedPayment.amount ? this.unAllocatedPayment.amount : GroupOutstandingAmount;\n if(this.isTurnOff){\n this.viewStatus = 'allocatePaymentConfirmation';\t\n }\n }\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.unAllocatedPayment = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n this.getPaymentGroupDetails();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }\n selectRadioButton(key, type) {\n this.isMoreDetailsBoxHide = true;\n if( type === 'explanation' && key === 'other' ){\n this.isPaymentDetailsEmpty = false;\n this.isPaymentDetailsInvalid = false;\n this.paymentDetailsMinHasError = false;\n this.paymentDetailsMaxHasError = false;\n this.isMoreDetailsBoxHide = false;\n }\n }\n OrderListSelectEvent(orderef: any){\n this.isContinueButtondisabled = false;\n this.recordId= orderef;\n }\n\n redirectToOrderFeeSearchPage() {\n // this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = this.recordId;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n}\n}\n","import { IFee } from './IFee';\n\nexport class AddRemissionRequest {\n beneficiary_name: string;\n ccd_case_number: string;\n fee: IFee;\n hwf_amount: number;\n hwf_reference: string;\n payment_group_reference: string;\n case_type: string;\n\n constructor(ccd_case_number: string, fee: IFee, hwf_amount: number, hwf_reference: string, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.fee = fee;\n this.hwf_amount = hwf_amount;\n this.hwf_reference = hwf_reference;\n this.case_type = caseType;\n }\n}\n","export class AddRetroRemissionRequest {\n hwf_amount: number;\n hwf_reference: string;\n\n constructor(hwf_amount: number, hwf_reference: string) {\n this.hwf_amount = hwf_amount;\n this.hwf_reference = hwf_reference;\n }\n}\n","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 refund_amount: any;\n fees: any[];\n contact_details: IRefundContactDetails\n \n constructor(ccd_case_number: string, payment_reference : string, refund_reason : string, refund_amount: any, fees: any[],contact_details:any) {\n\t this.ccd_case_number = ccd_case_number;\n this.payment_reference= payment_reference;\n this.refund_reason = refund_reason;\n\t this.refund_amount = refund_amount;\n\t this.fees = fees;\n this.contact_details = contact_details;\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';\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() 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 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\n if(this.isFromServiceRequestPage) {\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.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');\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 if(this.orderDetail !== undefined){\n this.fees = this.orderDetail[0].fees;\n this.paymentReference = this.orderDetail[0].payments[0].reference;\n }\n\n }\n\n refundFeesList() {\n const creds = this.remissionForm.controls.feesList as FormArray;\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 amounttorefund : [''],\n selected:[''] ,\n updatedVolume: ''\n }));\n }\n this.cd.detectChanges();\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.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 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('amounttorefund').setValue(AppAmt);\n formArray.at(i).get('volume').setValue(Volume);\n formArray.at(i).get('selected').setValue(true);\n formArray.at(i).get('updatedVolume').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.remissionForm.value.feesList.find(x=>x=v1)['amounttorefund'] = AppAmt;\n this.cd.detectChanges(); \n } else {\n this.errorMsg = []; \n document.getElementById('feeAmount_'+v1).setAttribute(\"disabled\", \"true\"); \n this.remissionForm.value.feesList[i][\"amounttorefund\"] = ''; \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 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.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 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 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.amounttorefund * 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.amounttorefund * 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.amounttorefund * 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(){\n\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)['amounttorefund'] = 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.amounttorefund * c.selected, 0);\n this.viewStatus = 'checkissuerefundpage'\n this.viewCompStatus = '';\n return;\n }\n this.viewCompStatus = 'issuerefundpage1';\n this.getRefundReasons();\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('amounttorefund').setValue(amtToRefund);\n // (<HTMLInputElement>document.getElementById('feeAmount_'+i)).value = +amtToRefund;\n // const formControl = this.remissionForm.controls.feesList['amounttorefund'].at(index);\n // formControl.setValue(amtToRefund);\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() {\n this.isConfirmationBtnDisabled = true;\n this.errorMessage = '';\n this.errorMsg = [];\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n this.fees = this.remissionForm.value.feesList.filter(value => value.selected===true);\n \n const requestBody = new PostRefundRetroRemission(this.ccdCaseNumber, this.payment.reference, this.refundReason, \n this.totalRefundAmount, this.fees, this.contactDetailsObj);\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 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 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 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.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 this.errorMsg = [];\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 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}","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'ccdHyphens'\n})\nexport class CcdHyphensPipe implements PipeTransform {\n constructor() {}\n transform(value: any, args?: any): any {\n const pattern = /^([0-9]{4})+([0-9]{4})+([0-9]{4})+([0-9]{4})$/;\n if ( value.match(pattern)) {\n return value.replace(pattern,'$1-$2-$3-$4') \n }\n return value;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'capitalize'\n})\nexport class CapitalizePipe implements PipeTransform {\n constructor() { }\n transform(s: any, args?: any): any {\n return s && s[0].toUpperCase() + s.slice(1) || \"\";\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'keyValue'\n})\nexport class keyValuePipe implements PipeTransform {\n constructor() {}\n transform(input: any): any {\n let keys = [];\n for (let key in input) {\n if (input.hasOwnProperty(key)) {\n keys.push({ key: key, value: input[key]});\n }\n }\n return keys;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\nimport { DomSanitizer, SafeHtml } from '@angular/platform-browser';\n\n@Pipe({ name: 'sanitizeHtml' })\nexport class SanitizeHtmlPipe implements PipeTransform {\n constructor(private sanitizer: DomSanitizer) {}\n transform(value: any): SafeHtml {\n return this.sanitizer.bypassSecurityTrustHtml(value);\n }\n}\n","import { Injectable } from '@angular/core';\nimport * as FileSaver from 'file-saver';\nimport * as XLSX from 'xlsx';\nimport * as XLSXStyle from 'xlsx-style';\n\n\nconst EXCEL_TYPE = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8';\nconst EXCEL_EXTENSION = '.xlsx';\n\n@Injectable()\nexport class XlFileService {\n\n constructor() { }\n\n public exportAsExcelFile(json: any[], excelFileName: string): void {\n let worksheet: XLSX.WorkSheet; \n let workbook: XLSX.WorkBook; \n\n if(excelFileName.match('Data_Loss')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['loss_resp','payment_asset_dcn','env_ref','env_item','resp_service_id','resp_service_name','date_banked','bgc_batch','payment_method','amount']});\n worksheet = this.setDataLossReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Unprocessed')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','exception_ref','ccd_ref','date_banked','bgc_batch','payment_asset_dcn','env_ref','env_item','payment_method','amount']});\n worksheet = this.setUnprocessedReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Processed_Unallocated')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','allocation_status','receiving_office','allocation_reason','ccd_exception_reference','ccd_case_reference','payment_asset_dcn','env_ref','env_item','date_banked','bgc_batch','payment_method','amount']});\n worksheet = this.setProcessedUnallocatedReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else {\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','surplus_shortfall','balance','payment_amount','ccd_case_reference', 'ccd_exception_reference', 'processed_date', 'reason', 'explanation', 'user_name']});\n worksheet = this.setShortFallReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n }\n workbook = { Sheets: { 'data': worksheet }, SheetNames: ['data'] };\n const excelBuffer: any = XLSX.write(workbook, { bookType: 'xlsx', type: 'array' });\n this.saveAsExcelFile(excelBuffer, excelFileName);\n }\n\n\nprivate autoFitColumns (worksheet: XLSX.WorkSheet,json:any) : XLSX.WorkSheet {\n let objectMaxLength = []; \n let ColWidth = [];\n let obj = <any>Object;\n for (let i = 0; i < json.length; i++) {\n let value = obj.values(json[i]);\n let key = obj.keys(json[i]);\n for (let j = 0; j < value.length; j++) {\n if(value[j] === null){\n value[j] = '';\n }\n objectMaxLength[j] =\n key[j].length >= value[j].length\n ? key[j].length+2\n : value[j].length+1;\n if( value[j].length === undefined){\n objectMaxLength[j] = key[j].length+2;\n }\n ColWidth.push({'width': +objectMaxLength[j]});\n }\n }\n worksheet['!cols'] = ColWidth;\n return worksheet;\n}\n\n\nprivate setDataLossReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Loss_Resp\";\n worksheet.B1.v = \"Payment_Asset_DCN\";\n worksheet.C1.v = \"Envelope_Ref\";\n worksheet.D1.v = \"Envelope_Item\";\n worksheet.E1.v = \"Resp_Service ID\";\n worksheet.F1.v = \"Resp_Service Name\";\n worksheet.G1.v = \"Date_Banked\";\n worksheet.H1.v = \"BGC_Batch\";\n worksheet.I1.v = \"Payment_Method\";\n worksheet.J1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setUnprocessedReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Exception_Ref\";\n worksheet.D1.v = \"CCD_Ref\";\n worksheet.E1.v = \"Date_Banked\";\n worksheet.F1.v = \"BGC_Batch\";\n worksheet.G1.v = \"Payment_Asset_DCN\";\n worksheet.H1.v = \"Envelope_Ref\";\n worksheet.I1.v = \"Envelope_Item\";\n worksheet.J1.v = \"Payment_Method\";\n worksheet.K1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setProcessedUnallocatedReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Allocation_Status\";\n worksheet.D1.v = \"Receiving_Office\";\n worksheet.E1.v = \"Allocation_Reason\";\n worksheet.F1.v = \"CCD_Exception_Ref\";\n worksheet.G1.v = \"CCD_Case_Ref\";\n worksheet.H1.v = \"Payment_Asset_DCN\";\n worksheet.I1.v = \"Envelope_Ref\";\n worksheet.J1.v = \"Envelope_Item\";\n worksheet.K1.v = \"Date_Banked\";\n worksheet.L1.v = \"BGC_Batch\";\n worksheet.M1.v = \"Payment_Method\";\n worksheet.N1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setShortFallReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Over Payment_Under Payment\";\n worksheet.D1.v = \"Balance\";\n worksheet.E1.v = \"Payment_Amount\";\n worksheet.F1.v = \"CCD_Case_Ref\";\n worksheet.G1.v = \"Exception_Ref\";\n worksheet.H1.v = \"Processed_Date\";\n worksheet.I1.v = \"Reason\";\n worksheet.J1.v = \"Explanation\";\n worksheet.K1.v = \"Updated Name\";\n return worksheet;\n}\n\nprivate saveAsExcelFile(buffer: any, fileName: string): void {\n const data: Blob = new Blob([buffer], {\n type: EXCEL_TYPE\n });\n FileSaver.saveAs(data, fileName + EXCEL_EXTENSION);\n }\n}\n","import { Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormGroup, FormControl } from '@angular/forms';\nimport { formatDate } from \"@angular/common\";\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {XlFileService} from '../../services/xl-file/xl-file.service';\n\n@Component({\n selector: 'ccpay-reports',\n templateUrl: './reports.component.html',\n styleUrls: ['./reports.component.scss']\n})\nexport class ReportsComponent implements OnInit {\n reportsForm: FormGroup;\n startDate: string;\n endDate: string;\n ccdCaseNumber: string;\n isDownLoadButtondisabled:Boolean = false;\n isStartDateLesthanEndDate: Boolean = false;\n isDateRangeBetnWeek: Boolean = false;\n errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n paymentGroups: IPaymentGroup[] = [];\n\n constructor(\n private xlFileService: XlFileService,\n private errorHandlerService: ErrorHandlerService,\n private formBuilder: FormBuilder,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private paymentViewService: PaymentViewService) { }\n \n\n ngOnInit() {\n this.fromValidation();\n\n }\n\n getToday(): string {\n return new Date().toISOString().split('T')[0];\n }\n\n getSelectedFromDate(): void {\n this.validateDates(this.reportsForm.get('selectedreport').value);\n }\n\n validateDates(reportName){\n const selectedStartDate = this.tranformDate(this.reportsForm.get('startDate').value),\n selectedEndDate = this.tranformDate(this.reportsForm.get('endDate').value);\n const isDateRangeMoreThanWeek = (<any>new Date(selectedStartDate) - <any>new Date(selectedEndDate))/(1000 * 3600 * -24) > 7;\n if(new Date(selectedStartDate) > new Date(selectedEndDate) && selectedEndDate !== ''){\n this.reportsForm.get('startDate').setValue('');\n this.isDateRangeBetnWeek = false;\n this.isStartDateLesthanEndDate = true;\n } else if(reportName && reportName ==='SURPLUS_AND_SHORTFALL' && isDateRangeMoreThanWeek ) {\n this.isDateRangeBetnWeek = true;\n this.isStartDateLesthanEndDate = false;\n } else {\n this.isDateRangeBetnWeek = false;\n this.isStartDateLesthanEndDate = false;\n }\n\n }\n\n fromValidation() {\n this.reportsForm = this.formBuilder.group({\n selectedreport: new FormControl('') ,\n startDate: new FormControl(''),\n endDate: new FormControl('') \n });\n}\n\ndownloadReport(){\n this.isDownLoadButtondisabled = true;\n const dataLossRptDefault = [{loss_resp:'',payment_asset_dcn:'',env_ref:'',env_item:'',resp_service_id:'',resp_service_name:'',date_banked:'',bgc_batch:'',payment_method:'',amount:''}],\n unProcessedRptDefault = [{resp_service_id:'',resp_service_name:'',exception_ref:'',ccd_ref:'',date_banked:'',bgc_batch:'',payment_asset_dcn:'',env_ref:'',env_item:'',payment_method:'',amount:''}],\n processedUnallocated =[{resp_service_id:'',resp_service_name:'',allocation_status:'',receiving_office:'',allocation_reason:'',ccd_exception_ref:'',ccd_case_ref:'',payment_asset_dcn:'',env_ref:'',env_item:'',date_banked:'',bgc_batch:'',payment_method:'',amount:'',updated_by:''}],\n shortFallsRptDefault = [{resp_service_id:'',resp_service_name:'',surplus_shortfall:'',balance:'',payment_amount:'',ccd_case_reference:'',ccd_exception_reference:'',processed_date:'', reason:'', explanation:'', user_name:''}],\n selectedReportName = this.reportsForm.get('selectedreport').value,\n selectedStartDate = this.tranformDate(this.reportsForm.get('startDate').value),\n selectedEndDate = this.tranformDate(this.reportsForm.get('endDate').value);\n\n if(selectedReportName === 'PROCESSED_UNALLOCATED' || selectedReportName === 'SURPLUS_AND_SHORTFALL' ){\n this.paymentViewService.downloadSelectedReport(selectedReportName,selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n const result = JSON.parse(response);\n let res= {data: this.applyDateFormat(result)};\n if(res['data'].length === 0 && selectedReportName === 'PROCESSED_UNALLOCATED' ){\n res.data= processedUnallocated;\n } else if(res['data'].length === 0 && selectedReportName === 'SURPLUS_AND_SHORTFALL' ) {\n res.data= shortFallsRptDefault;\n } \n if(result['data'].length > 0) {\n for( var i=0; i< res['data'].length; i++) {\n if(res['data'][i][\"payment_asset_dcn\"] !== undefined) {\n res['data'][i]['env_ref'] = res['data'][i][\"payment_asset_dcn\"].substr(0,13);\n res['data'][i]['env_item'] = res['data'][i][\"payment_asset_dcn\"].substr(13,21);\n }\n if(res['data'][i][\"amount\"] !== undefined) {\n res['data'][i]['amount'] = this.convertToFloatValue(res['data'][i]['amount']);\n }\n if(res['data'][i][\"balance\"] !== undefined) {\n res['data'][i]['balance'] = this.convertToFloatValue(res['data'][i][\"balance\"]);\n }\n let Op = res['data'][i][\"surplus_shortfall\"];\n if(Op !== undefined) {\n res['data'][i]['surplus_shortfall'] = Op ==\"Surplus\" ? \"Over payment\":\"Under payment\";\n }\n if(res['data'][i][\"payment_amount\"] !== undefined) {\n res['data'][i]['payment_amount'] = this.convertToFloatValue(res['data'][i]['payment_amount']);\n }\n }\n } \n this.isDownLoadButtondisabled = false;\n this.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate));\n },\n (error: any) => {\n this.isDownLoadButtondisabled = false;\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n })\n } else {\n this.bulkScaningPaymentService.downloadSelectedReport(selectedReportName,selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n const result = JSON.parse(response);\n let res = {data: this.applyDateFormat(result)};\n if(res['data'].length === 0 && selectedReportName === 'DATA_LOSS' ){\n res.data= dataLossRptDefault;\n } else if(res['data'].length === 0 && selectedReportName === 'UNPROCESSED'){\n res.data = unProcessedRptDefault;\n }\n if(result['data'].length > 0) {\n for( var i=0; i< res['data'].length; i++) {\n if(res['data'][i][\"amount\"] !== undefined) {\n res['data'][i]['amount'] = this.convertToFloatValue(res['data'][i]['amount']);\n }\n if(res['data'][i][\"payment_asset_dcn\"] !== undefined) {\n res['data'][i]['env_ref'] = res['data'][i][\"payment_asset_dcn\"].substr(0,13);\n res['data'][i]['env_item'] = res['data'][i][\"payment_asset_dcn\"].substr(13,21);\n }\n }\n }\n this.isDownLoadButtondisabled = false;\n this.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate ));\n },\n (error: any) => {\n this.isDownLoadButtondisabled = false;\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n })\n }\n }\n\n getFileName(selectedOption: string, startDate: string, endDate: string ) {\n const loc = 'en-US',\n stDt = formatDate(startDate, 'ddMMyy', loc),\n enDt = formatDate(endDate, 'ddMMyy', loc),\n now = new Date(),\n currentDate = formatDate(now, 'ddMMyy', loc),\n timestamp = `${currentDate}_${this.getTwodigit(now.getHours())}${this.getTwodigit(now.getMinutes())}${this.getTwodigit(now.getSeconds())}`,\n selectedOptionTxt = this.getCamelCaseString(selectedOption);\n \n return selectedOptionTxt+'_'+stDt+'_To_'+enDt+'_Run_'+ timestamp;\n } \n tranformDate(strDate: string) {\n let result = '';\n if (strDate) {\n let parts = strDate.split('-');\n result = `${parts[1]}/${parts[2]}/${parts[0]}`;\n }\n return result;\n }\n getTwodigit(input: number){\n return (\"0\" + input).slice(-2);\n }\n getCamelCaseString(selectedOption) {\n let result;\n switch(selectedOption) { \n case 'UNPROCESSED': { \n result = 'Unprocessed';\n break; \n } \n case 'DATA_LOSS': { \n result = 'Data_Loss';\n break; \n } \n case 'PROCESSED_UNALLOCATED': { \n result = 'Processed_Unallocated';\n break; \n } \n case 'SURPLUS_AND_SHORTFALL': { \n result = 'Over Payment_Under Payment';\n break; \n } \n default: { \n result = selectedOption;\n break; \n } \n } \n return result;\n }\n applyDateFormat(res) {\n const fmt = 'dd/MM/yyyy',\n loc = 'en-US';\n return res['data'].map(value => {\n if (value['date_banked']) {\n value['date_banked'] = formatDate(value['date_banked'], fmt, loc);\n }\n return value;\n });\n }\n \n convertToFloatValue(amt) {\n return amt ? Number.parseFloat(amt).toFixed(2): '0.00';\n }\n}\n","import {Component, ViewChild, Input, ChangeDetectorRef} from '@angular/core';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport { MatTableDataSource} from '@angular/material/table';\nimport {MatSort } from '@angular/material/sort';\nimport {Sort } from '@angular/material/sort';\nimport {MatPaginator } from '@angular/material/paginator';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { THIS_EXPR } from '@angular/compiler/src/output/output_ast';\nimport { ActivatedRoute,Router } from '@angular/router';\n@Component({\n selector: 'ccpay-table',\n templateUrl: './table.component.html',\n styleUrls: ['./table.component.css']\n})\nexport class TableComponent {\n @Input('DATASOURCE') DATASOURCE: any[];\n @Input('STATUS') STATUS: string;\n @Input('errorMessage') errorMessage: string;\n isApprovalFlow: boolean;\n // displayedColumns = ['ccdCaseNumber', 'refundReference', 'reason', 'createBy', 'updateDate', 'Action'];\n displayedColumns = ['ccd_case_number', 'refund_reference', 'user_full_name','date_created', 'date_updated', 'Action'];\n \n dataSource: MatTableDataSource<any>;\n userLst;\n 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}","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 { NotificationService } from '../../services/notification/notification.service';\nimport { FormBuilder, FormGroup, Validators, FormControl, RequiredValidator } 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';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-refund-status',\n templateUrl: './refund-status.component.html',\n styleUrls: ['./refund-status.component.css']\n})\nexport class RefundStatusComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[] = [];\n @Input() isOldPcipalOff: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: boolean;\n @Input() orderParty: string;\n refundStatusForm: FormGroup;\n selectedRefundReason: string;\n rejectedRefundList: IRefundList[] = [];\n notificationList: IRefundsNotifications;\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 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\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 this.refundService.getRefundStatusList(this.ccdCaseNumber).subscribe(\n refundList => {\n this.rejectedRefundList = refundList['refund_list'];\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n }\n\n\n this.refundStatusForm = this.formBuilder.group({\n amount: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[0-9]+(\\.[0-9]{1,2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl()\n });\n\n if(this.refundlist !== undefined) {\n this.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 check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n getRefundsStatusHistoryList() {\n if(this.refundlist !== undefined) {\n this.refundService.getRefundStatusHistory(this.refundlist.refund_reference).subscribe(\n statusHistoryList => {\n this.refundStatusHistories = statusHistoryList.status_history_dto_list;\n this.isLastUpdatedByCurrentUser = statusHistoryList.last_updated_by_current_user;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n }; \n }\n }\n\n 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() {\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 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 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\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 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 // 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, feeId: number): 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 && remission.fee_id === feeId) {\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, fee.id)) {\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 { 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","unProcessedPayment","orderPendingPayments","ErrorHandlerService","handleError","err","errorMessage","error","Error","message","status","undefined","JSON","parse","statusCode","messsage","stringify","_throw","getServerErrorMessage","isErrorExist","title","body","showError","LoggerService","invokeConsoleMethod","type","PaymentListService","getPaymentByCcdCaseNumber","paymentMethod","logger","info","http","get","withCredentials","pipe","catchError","errorHandlerService","HttpClient","PaymentListComponent","_this","paymentListService","paymentLibComponent","CCD_CASE_NUMBER","PAYMENT_METHOD","subscribe","payments","loadPaymentViewComponent","paymentReference","__values","o","s","Symbol","iterator","m","i","call","value","done","TypeError","WebComponentHttpClient","post","url","options","opts","addHeaders","put","delete","patch","csrfToken","meta","getTag","headers","forEach","element","document","cookie","split","find","row","startsWith","content","HttpHeaders","responseType","Meta","PaymentViewService","getPaymentDetails","getPaymentGroupDetails","getApportionPaymentDetails","getPBAaccountDetails","postWays2PayCardPayment","serviceRef","rurl","replace","https","postPBAaccountPayment","randomKey","Math","random","toString","join","postBSPayments","postBSUnidentifiedPayments","postBSUnsolicitedPayments","postBSAllocationPayments","postPaymentGroupWithRemissions","feeId","deleteFeeFromPaymentGroup","postPaymentToPayHub","paymentGroupRef","postPaymentAntennaToPayHub","downloadSelectedReport","reportName","startDate","endDate","getBSfeature","getSiteID","getPartyDetails","caseNumber","postRefundsReason","postPaymentGroupWithRetroRemissions","postRefundRetroRemission","PaymentViewComponent","selectedOption","SELECTED_OPTION","dcnNumber","isTurnOff","ISTURNOFF","serviceReference","viewStatus","paymentViewService","paymentGroup","fees","fee","isRemissionsMatch","remissions","rem","fee_code","code","push","paymentFees","filter","paymentGroupObj","includes","paymentAllocation","payment_allocation","isStatusAllocated","allocation_status","defineProperty","method","channel","goToPaymentList","goToCaseTransationPage","event","preventDefault","data","ISBSENABLE","resetOrderData","addRemission","chkForAddRemission","id","reference","payment","isFromPaymentDetailPage","isRefundRemission","checkForFees","processRefund","gotoAddressPage","note","notification","contact_details","notification_type","viewCompStatus","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","fee_id","selectPymentOption","paymentType","isContinueBtnDisabled","continuePayment","gotoPaymentSelectPage","getContactDetails","obj","contactDetailsObj","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","putResendOrEdit","refundRef","notificationType","patchResubmitRefund","refund_reference","ProcessRefundComponent","refundActionList","getErrorMessage","processRefundForm","formBuilder","group","refundActionField","FormControl","Validators","compose","required","refundRejectReasonField","sendMeBackField","minLength","maxLength","pattern","enterReasonField","refundlistsource","ccd_case_number","response","cpoDetails","isCPODown","isFromRefundListPage","checkRefundActions","refundActionsHasError","isReasonFieldEmpty","isReasonEmpty","isReasonInvalid","refundRejectReasonHasError","isConfirmButtondisabled","isSendMeBackClicked","isRejectClicked","isOtherClicked","refundRejectReasonList","processRefundSubmit","processRefundRequest","resetForm","controls","processFormError","errors","dirty","valid","reason","isSuccesspageEnable","successMsg","invalid","minlength","actualLength","maxlength","errorMsg","bodyTxt","loadRefundListPage","navigationpage","isRefundStatusView","loadRefundsHomePage","redirecttoRefundListPage","vals","field","isReasonFieldInvalid","reasonFieldMinHasError","reasonFieldMaxHasError","goToCaseReview","router","navigate","relativeTo","activeRoute","FormBuilder","Router","ActivatedRoute","sendmeback","RefundListComponent","userLst","isAuthorized","isApproveTableVisible","tableApprovalHeader","tableRejectedHeader","refundService","approvalStatus","submittedRefundList","rejectStatus","rejectedRefundList","isRejectTableVisible","CardDetailsService","getCardDetails","CardDetailsComponent","cardDetailsService","cardDetails","pageTitle","PageNotFoundComponent","StatusHistoryService","getPaymentStatusesByReference","StatusHistoryComponent","statusHistoryService","statuses","NotificationService","getRefundNotification","getAddressByPostcode","postcode","ContactDetailsComponent","emailAddressForm","email","postCodeForm","manualAddressForm","addressl1","addressl2","townorcity","county","mpostcode","country","addressObj","setEditDetails","isEmailSAddressClicked","isPostcodeClicked","isManualAddressClicked","setValue","patchValue","address_line","city","postal_code","selectContactOption","isLinkedClied","finalFormSubmit","fieldCtrls","emailField","assignContactDetails","emit","postcodeValidation","str","postcodeField","notificationService","refundsNotification","addressPostcodeList","isShowPickAddress","postcodeAddress","isAddressBoxEmpty","addressLine","addressArray","ADDRESS","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","calculated_amount","toUpperCase","amount","hwf_amount","removeUnwantedString","input","replaceText","CaseTransactionsComponent","paymentView","payment_group_reference","goToPayementView","isGrpOutstandingAmtPositive","CASETYPE","EXC_REFERENCE","excReference","takePayment","servicerequest","SERVICEREQUEST","serviceRequestValue","isBulkScanEnable","isNewPcipalOff","ISNEWPCIPALOFF","isOldPcipalOff","ISOLDPCIPALOFF","isStrategicFixEnable","ISSFENABLE","caseTransactionsService","paymentGroups","isAnyFeeGroupAvilable","calculateAmounts","calculateOrderFeesAmounts","totalRefundAmount","calculateRefundAmount","setDefaults","goToOrderViewDetailSection","checkForExceptionRecord","totalPayments","totalRemissions","totalNonOffPayments","totalFees","getAllocationStatus","bulkScaningPaymentService","recordData","exception_record_reference","ccd_reference","isExceptionRecord","case_reference","resetOrderVariables","overPaymentAmount","over_payment","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","goToServiceRequestPage","window","location","reload","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","isInvesticationDetailEmpty","investicationDetailHasError","investicationDetailMinHasError","investicationDetailMaxHasError","confirmPayments","postStrategicBody","res1","res2","response2","reqBody","res3","gotoCasetransationPage","user_id","res","cancelMarkUnidentifiedPayments","UnsolicitedPaymentsRequest","responsible_office","responsible_person","email_id","receiving_office","receiving_email_address","sending_email_address","MarkUnsolicitedPaymentComponent","siteids","isContinueButtondisabled","siteIDList","scrollTo","markPaymentUnsolicitedForm","responsibleOffice","responsiblePerson","emailId","selectedSiteId","reasonField","officeIdField","reasonHasError","reasonMinHasError","reasonMaxHasError","isResponsibleOfficeEmpty","responsibleOfficeHasError","cancelMarkUnsolicitedPayments","checkingFormValue","formFields","valueExists","hasOwnProperty","selectchange","target","selectedSiteName","selectedIndex","text","UnprocessedPaymentsComponent","isNewpcipaloff","isOldpcipaloff","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","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","refund_amount","PostIssueRefundRetroRemission","remissionReference","contactDeatils","AddRemissionComponent","default","pattern1","pattern2","volume","remessionPayment","isPaymentSuccess","option","remissionForm","remissionCode","refundReason","refundDDReason","feeAmount","feesList","array","onlySelf","refundFeesList","refundReasons","recently_used","commonRefundReasons","sort","localeCompare","creds","apportion_amount","version","amounttorefund","selected","updatedVolume","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","refundAmount","gotoIssueRefundConfirmation","reduce","c","refundHasError","displayRefundReason","gotoIssueRefundPage","gotoIssuePage","checkboxs","getElementsByTagName","quantity","amountToRefund","apportionAmount","j","fullRefund","elementId","getErrorClass","quantityUpdated","refundAmtForFeeVolumes","innerText","allowedRefundAmount","calAmtToRefund","amtToRefund","gotoContactDetailsPage","add","changeIssueRefundReason","confirmIssueRefund","gotoRefundReasonPage","localStorage","setItem","isRefundReasonsSelected","showReasonText","reasonLength","gotoPartialFeeRefundScreen","gotoServiceRequestPage","sendOrderDetail","sendOrderRef","gotoRemissionSuccess","gotoCasetransationPageCancelBtnClicked","changeRefundAmount","getFormattedCurrency","concat","hasErrors","class","Array","CcdHyphensPipe","transform","match","Pipe","CapitalizePipe","slice","keyValuePipe","keys","SanitizeHtmlPipe","sanitizer","bypassSecurityTrustHtml","DomSanitizer","XlFileService","exportAsExcelFile","json","excelFileName","worksheet","XLSX.utils","json_to_sheet","header","setDataLossReportHeaders","setUnprocessedReportHeaders","setProcessedUnallocatedReportHeaders","setShortFallReportHeaders","autoFitColumns","excelBuffer","XLSX.write","Sheets","SheetNames","bookType","saveAsExcelFile","objectMaxLength","ColWidth","values","width","A1","v","B1","C1","D1","E1","F1","G1","H1","I1","J1","K1","L1","M1","N1","buffer","fileName","Blob","FileSaver.saveAs","ReportsComponent","fromValidation","getToday","toISOString","getSelectedFromDate","validateDates","reportsForm","selectedStartDate","tranformDate","selectedEndDate","isDateRangeMoreThanWeek","isDateRangeBetnWeek","isStartDateLesthanEndDate","selectedreport","downloadReport","isDownLoadButtondisabled","dataLossRptDefault","loss_resp","payment_asset_dcn","env_ref","env_item","resp_service_id","resp_service_name","bgc_batch","unProcessedRptDefault","exception_ref","ccd_ref","processedUnallocated","allocation_reason","ccd_exception_ref","ccd_case_ref","updated_by","shortFallsRptDefault","surplus_shortfall","balance","payment_amount","ccd_case_reference","ccd_exception_reference","processed_date","selectedReportName","applyDateFormat","substr","convertToFloatValue","Op","xlFileService","getFileName","loc","stDt","formatDate","enDt","now","timestamp","getTwodigit","getHours","getMinutes","getSeconds","getCamelCaseString","strDate","parts","map","amt","Number","parseFloat","TableComponent","STATUS","toLowerCase","isApprovalFlow","DATASOURCE","dataSource","MatTableDataSource","actualcount","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","RefundStatusComponent","refundlist","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","gotoReviewRefundConfirmationPage","resubmitRequest","gotoEditAddressDetails","isEditDetailsClicked","addressDetails","gotoEditDetailsPage","submitEditDetail","isResendOperationSuccess","resendRequest","putResend","Event","isEditAddressDeatilsClicked","ServiceRequestComponent","isServiceRequest","goToServiceRquestComponent","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","e","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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"}