@hmcts/ccpay-web-component 5.0.1-beta98 → 5.0.2-beta1

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