@hmcts/ccpay-web-component 5.0.5-beta01 → 5.0.5-beta02

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 (94) hide show
  1. package/bundles/hmcts-ccpay-web-component.umd.js +2144 -626
  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 +715 -122
  7. package/esm2015/lib/components/case-transactions/case-transactions.component.js +39 -17
  8. package/esm2015/lib/components/contact-details/contact-details.component.js +447 -0
  9. package/esm2015/lib/components/fee-summary/fee-summary.component.js +59 -16
  10. package/esm2015/lib/components/payment-view/payment-view.component.js +194 -106
  11. package/esm2015/lib/components/process-refund/process-refund.component.js +49 -28
  12. package/esm2015/lib/components/refund-list/refund-list.component.js +3 -3
  13. package/esm2015/lib/components/refund-status/refund-status.component.js +217 -30
  14. package/esm2015/lib/components/service-request/service-request.component.js +243 -146
  15. package/esm2015/lib/components/table/table.component.js +24 -9
  16. package/esm2015/lib/components/unprocessed-payments/unprocessed-payments.component.js +17 -1
  17. package/esm2015/lib/interfaces/IFee.js +13 -1
  18. package/esm2015/lib/interfaces/IPayment.js +7 -1
  19. package/esm2015/lib/interfaces/IPutNotificationRequest.js +25 -0
  20. package/esm2015/lib/interfaces/IRefundContactDetails.js +25 -0
  21. package/esm2015/lib/interfaces/IRefundFee.js +21 -0
  22. package/esm2015/lib/interfaces/IRefundList.js +7 -1
  23. package/esm2015/lib/interfaces/IRefundsNotifications.js +21 -0
  24. package/esm2015/lib/interfaces/IRemission.js +7 -1
  25. package/esm2015/lib/interfaces/IResubmitRefundRequest.js +10 -2
  26. package/esm2015/lib/interfaces/PostIssueRefundRetroRemission.js +6 -2
  27. package/esm2015/lib/interfaces/PostRefundRetroRemission.js +20 -2
  28. package/esm2015/lib/payment-lib.component.js +24 -4
  29. package/esm2015/lib/payment-lib.module.js +3 -1
  30. package/esm2015/lib/payment-lib.service.js +16 -1
  31. package/esm2015/lib/services/notification/notification.service.js +85 -0
  32. package/esm2015/lib/services/refunds/refunds.service.js +10 -1
  33. package/esm2015/lib/services/shared/httpclient/webcomponent.http.client.js +1 -1
  34. package/esm5/hmcts-ccpay-web-component.js +33 -31
  35. package/esm5/lib/components/add-remission/add-remission.component.js +837 -127
  36. package/esm5/lib/components/case-transactions/case-transactions.component.js +39 -17
  37. package/esm5/lib/components/contact-details/contact-details.component.js +472 -0
  38. package/esm5/lib/components/fee-summary/fee-summary.component.js +59 -16
  39. package/esm5/lib/components/payment-view/payment-view.component.js +225 -124
  40. package/esm5/lib/components/process-refund/process-refund.component.js +52 -78
  41. package/esm5/lib/components/refund-list/refund-list.component.js +3 -3
  42. package/esm5/lib/components/refund-status/refund-status.component.js +253 -28
  43. package/esm5/lib/components/service-request/service-request.component.js +284 -176
  44. package/esm5/lib/components/table/table.component.js +27 -9
  45. package/esm5/lib/components/unprocessed-payments/unprocessed-payments.component.js +17 -1
  46. package/esm5/lib/interfaces/IFee.js +13 -1
  47. package/esm5/lib/interfaces/IPayment.js +7 -1
  48. package/esm5/lib/interfaces/IPutNotificationRequest.js +23 -0
  49. package/esm5/lib/interfaces/IRefundContactDetails.js +25 -0
  50. package/esm5/lib/interfaces/IRefundFee.js +21 -0
  51. package/esm5/lib/interfaces/IRefundList.js +7 -1
  52. package/esm5/lib/interfaces/IRefundsNotifications.js +21 -0
  53. package/esm5/lib/interfaces/IRemission.js +7 -1
  54. package/esm5/lib/interfaces/IResubmitRefundRequest.js +8 -2
  55. package/esm5/lib/interfaces/PostIssueRefundRetroRemission.js +5 -2
  56. package/esm5/lib/interfaces/PostRefundRetroRemission.js +16 -2
  57. package/esm5/lib/payment-lib.component.js +19 -2
  58. package/esm5/lib/payment-lib.module.js +3 -1
  59. package/esm5/lib/payment-lib.service.js +23 -1
  60. package/esm5/lib/services/notification/notification.service.js +89 -0
  61. package/esm5/lib/services/refunds/refunds.service.js +16 -1
  62. package/esm5/lib/services/shared/httpclient/webcomponent.http.client.js +1 -1
  63. package/fesm2015/hmcts-ccpay-web-component.js +1889 -491
  64. package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
  65. package/fesm5/hmcts-ccpay-web-component.js +2137 -576
  66. package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
  67. package/hmcts-ccpay-web-component.d.ts +32 -30
  68. package/hmcts-ccpay-web-component.metadata.json +1 -1
  69. package/lib/components/add-remission/add-remission.component.d.ts +47 -3
  70. package/lib/components/case-transactions/case-transactions.component.d.ts +4 -1
  71. package/lib/components/contact-details/contact-details.component.d.ts +49 -0
  72. package/lib/components/fee-summary/fee-summary.component.d.ts +2 -0
  73. package/lib/components/payment-view/payment-view.component.d.ts +25 -6
  74. package/lib/components/process-refund/process-refund.component.d.ts +6 -1
  75. package/lib/components/refund-status/refund-status.component.d.ts +36 -6
  76. package/lib/components/service-request/service-request.component.d.ts +30 -9
  77. package/lib/components/table/table.component.d.ts +1 -0
  78. package/lib/components/unprocessed-payments/unprocessed-payments.component.d.ts +4 -0
  79. package/lib/interfaces/IFee.d.ts +6 -0
  80. package/lib/interfaces/IPayment.d.ts +3 -0
  81. package/lib/interfaces/IPutNotificationRequest.d.ts +6 -0
  82. package/lib/interfaces/IRefundContactDetails.d.ts +9 -0
  83. package/lib/interfaces/IRefundFee.d.ts +7 -0
  84. package/lib/interfaces/IRefundList.d.ts +4 -0
  85. package/lib/interfaces/IRefundsNotifications.d.ts +16 -0
  86. package/lib/interfaces/IRemission.d.ts +3 -0
  87. package/lib/interfaces/IResubmitRefundRequest.d.ts +5 -1
  88. package/lib/interfaces/PostIssueRefundRetroRemission.d.ts +3 -1
  89. package/lib/interfaces/PostRefundRetroRemission.d.ts +7 -1
  90. package/lib/payment-lib.component.d.ts +6 -0
  91. package/lib/payment-lib.service.d.ts +3 -0
  92. package/lib/services/notification/notification.service.d.ts +15 -0
  93. package/lib/services/refunds/refunds.service.d.ts +2 -0
  94. package/package.json +5 -1
@@ -1 +1 @@
1
- {"version":3,"sources":["ng://@hmcts/ccpay-web-component/lib/payment-lib.service.ts","ng://@hmcts/ccpay-web-component/lib/services/orderslist.service.ts","ng://@hmcts/ccpay-web-component/lib/payment-lib.component.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/error-handler.service.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/logger/logger.service.ts","ng://@hmcts/ccpay-web-component/lib/services/payment-list/payment-list.service.ts","ng://@hmcts/ccpay-web-component/lib/components/payment-list/payment-list.component.ts","node_modules/tslib/tslib.es6.js","ng://@hmcts/ccpay-web-component/lib/services/shared/httpclient/webcomponent.http.client.ts","ng://@hmcts/ccpay-web-component/lib/services/payment-view/payment-view.service.ts","ng://@hmcts/ccpay-web-component/lib/components/payment-view/payment-view.component.ts","ng://@hmcts/ccpay-web-component/lib/services/refunds/refunds.service.ts","ng://@hmcts/ccpay-web-component/lib/components/process-refund/process-refund.component.ts","ng://@hmcts/ccpay-web-component/lib/components/refund-list/refund-list.component.ts","ng://@hmcts/ccpay-web-component/lib/services/card-details/card-details.service.ts","ng://@hmcts/ccpay-web-component/lib/components/card-details/card-details.component.ts","ng://@hmcts/ccpay-web-component/lib/components/page-not-found.component.ts","ng://@hmcts/ccpay-web-component/lib/services/status-history/status-history.service.ts","ng://@hmcts/ccpay-web-component/lib/components/status-history/status-history.component.ts","ng://@hmcts/ccpay-web-component/lib/components/pba-details/pba-details.component.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/logger/console-logger.service.ts","ng://@hmcts/ccpay-web-component/lib/services/case-transactions/case-transactions.service.ts","ng://@hmcts/ccpay-web-component/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.ts","ng://@hmcts/ccpay-web-component/lib/components/case-transactions/case-transactions.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PaymentToPayhubRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PayhubAntennaRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/fee-summary/fee-summary.component.ts","ng://@hmcts/ccpay-web-component/lib/components/error-banner/error-banner.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/UnidentifiedPaymentsRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/AllocatePaymentRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/UnsolicitedPaymentsRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.ts","ng://@hmcts/ccpay-web-component/lib/components/unprocessed-payments/unprocessed-payments.component.ts","ng://@hmcts/ccpay-web-component/lib/components/processed-payments/processed-payments.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IAllocationPaymentsRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/allocate-payments/allocate-payments.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/AddRemissionRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/AddRetroRemissionRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PostRefundRetroRemission.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PostIssueRefundRetroRemission.ts","ng://@hmcts/ccpay-web-component/lib/components/add-remission/add-remission.component.ts","ng://@hmcts/ccpay-web-component/lib/pipes/ccd-hyphens.pipe.ts","ng://@hmcts/ccpay-web-component/lib/pipes/capitalize.pipe.ts","ng://@hmcts/ccpay-web-component/lib/pipes/key-value.pipe.ts","ng://@hmcts/ccpay-web-component/lib/pipes/sanitize-html.pipe.ts","ng://@hmcts/ccpay-web-component/lib/services/xl-file/xl-file.service.ts","ng://@hmcts/ccpay-web-component/lib/components/reports/reports.component.ts","ng://@hmcts/ccpay-web-component/lib/components/table/table.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IResubmitRefundRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/refund-status/refund-status.component.ts","ng://@hmcts/ccpay-web-component/lib/components/service-request/service-request.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IserviceRequestCardPayment.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IserviceRequestPbaPayment.ts","ng://@hmcts/ccpay-web-component/lib/components/pba-payment/pba-payment.component.ts","ng://@hmcts/ccpay-web-component/lib/payment-lib.module.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\n\nexport class PaymentLibService {\n API_ROOT: string;\n BULKSCAN_API_ROOT: string;\n REFUNDS_API_ROOT: string;\n CARDPAYMENTRETURNURL: string;\n\n constructor() { }\n\n setApiRootUrl(apiRoot: string): void {\n this.API_ROOT = apiRoot;\n }\n\n getApiRootUrl(): string {\n return this.API_ROOT;\n }\n\n setBulkScanApiRootUrl(bulkscanapiRoot: string): void {\n this.BULKSCAN_API_ROOT = bulkscanapiRoot;\n }\n\n getBulkScanApiRootUrl(): string {\n return this.BULKSCAN_API_ROOT;\n }\n\n setRefundndsApiRootUrl(refundsapiRoot: string): void {\n this.REFUNDS_API_ROOT = refundsapiRoot;\n }\n\n getRefundsApiRootUrl(): string {\n return this.REFUNDS_API_ROOT;\n }\n setCardPaymentReturnUrl(cardPaymentReturnUrl: string):void {\n this.CARDPAYMENTRETURNURL = cardPaymentReturnUrl;\n }\n getCardPaymentReturnUrl(): string {\n return this.CARDPAYMENTRETURNURL;\n }\n}\n","import { Injectable } from '@angular/core';\nimport { Observable, BehaviorSubject } from 'rxjs';\nimport {IOrderReferenceFee} from '../interfaces/IOrderReferenceFee';\nimport { IRefundList } from '../interfaces/IRefundList';\nimport { IPaymentView } from '../interfaces/IPaymentView'; \n\n@Injectable({\n providedIn: 'root'\n})\nexport class OrderslistService {\n private ordersList: BehaviorSubject<IOrderReferenceFee[]> = new BehaviorSubject<IOrderReferenceFee[]>(null);\n private refundView: BehaviorSubject<IRefundList> = new BehaviorSubject<IRefundList>(null);\n private caseType = new BehaviorSubject(\"\");\n getcaseType = this.caseType.asObservable();\n private feeExists = new BehaviorSubject<boolean>(null);\n getFeeExist = this.feeExists.asObservable();\n private ccdCaseNumber = new BehaviorSubject(\"\");\n getCCDCaseNumberforRefund = this.ccdCaseNumber.asObservable();\n private isFromServiceRequestPage = new BehaviorSubject<boolean>(null);\n getisFromServiceRequestPage = this.isFromServiceRequestPage.asObservable();\n private OrderRefId = new BehaviorSubject(\"\");\n getOrderRefId = this.OrderRefId.asObservable();\n private navigationPage = new BehaviorSubject(\"\");\n getnavigationPage = this.navigationPage.asObservable();\n\n private orderRef = new BehaviorSubject(\"\");\n getorderRef = this.orderRef.asObservable();\n private orderCCDEvent = new BehaviorSubject(\"\");\n getorderCCDEvent = this.caseType.asObservable();\n private orderCreated = new BehaviorSubject<Date>(null);\n getorderCreated = this.orderCreated.asObservable();\n private orderParty = new BehaviorSubject(\"\");\n getorderParty = this.orderParty.asObservable();\n private orderRemissionTotal = new BehaviorSubject<number>(null);\n getorderRemissionTotal = this.orderRemissionTotal.asObservable();\n private orderFeesTotal = new BehaviorSubject<number>(null);\n getorderFeesTotal = this.orderFeesTotal.asObservable();\n private orderTotalPayments = new BehaviorSubject<number>(null);\n getorderTotalPayments = this.orderTotalPayments.asObservable();\n private rolesList: BehaviorSubject<any[]> = new BehaviorSubject<any[]>(null);\n\n private orderDetail: BehaviorSubject<any[]> = new BehaviorSubject<any[]>(null);\n\n private paymentPageView: BehaviorSubject<IPaymentView> = new BehaviorSubject<IPaymentView>(null);\n\n constructor() { }\n\n setOrdersList(orderLevelFees: IOrderReferenceFee[]): void {\n this.ordersList.next(Object.assign([], orderLevelFees));\n }\n getOrdersList() {\n return this.ordersList;\n }\n\n setRefundView(refundList: IRefundList): void {\n this.refundView.next(Object.assign([], refundList));\n }\n getRefundView() {\n return this.refundView;\n }\n\n setCaseType(caseType: string){\n this.caseType.next(caseType);\n }\n getCaseType(){\n return this.caseType;\n }\n\n setCCDCaseNumber(ccdCaseNumber: string){\n this.ccdCaseNumber.next(ccdCaseNumber);\n }\n getCCDCaseNumber(){\n return this.ccdCaseNumber;\n }\n\n setFeeExists(feeExists: boolean){\n this.feeExists.next(feeExists);\n }\n getFeeExists(){\n return this.feeExists;\n } \n\n setisFromServiceRequestPage(isFromServiceRequestPage: boolean){\n this.isFromServiceRequestPage.next(isFromServiceRequestPage);\n }\n getisFromServiceRequestPages(){\n return this.isFromServiceRequestPage;\n }\n\n setOrderRefId(OrderRefId: string){\n this.OrderRefId.next(OrderRefId);\n }\n getSelectedOrderRefId(){\n return this.OrderRefId;\n }\n\n setnavigationPage(navigationPage: string){\n this.navigationPage.next(navigationPage);\n }\n getnavigationPageValue(){\n return this.navigationPage;\n }\n\n setpaymentPageView(paymentpageList: IPaymentView): void {\n this.paymentPageView.next(Object.assign([], paymentpageList));\n }\n getpaymentPageView() {\n return this.paymentPageView;\n }\n\n setUserRolesList(rolesList:any[]): void {\n this.rolesList.next(Object.assign([], rolesList));\n }\n getUserRolesList() {\n return this.rolesList;\n }\n\n setorderDetail(orderDetail:any[]): void {\n this.orderDetail.next(Object.assign([], orderDetail));\n }\n getorderDetail() {\n return this.orderDetail;\n }\n\n setOrderRef(orderRef: string){\n this.orderRef.next(orderRef);\n }\n getorderRefs(){\n return this.orderRef;\n }\n\n setorderCCDEvent(orderCCDEvent: string){\n this.orderCCDEvent.next(orderCCDEvent);\n }\n getorderCCDEvents(){\n return this.orderCCDEvent;\n }\n\n setorderCreated(orderCreated: Date){\n this.orderCreated.next(orderCreated);\n }\n getorderCreateds(){\n return this.orderCreated;\n }\n\n setorderParty(orderParty: string){\n this.orderParty.next(orderParty);\n }\n getorderPartys(){\n return this.orderParty;\n }\n\n setorderRemissionTotal(orderRemissionTotal: number){\n this.orderRemissionTotal.next(orderRemissionTotal);\n }\n getorderRemissionTotals(){\n return this.orderRemissionTotal;\n }\n\n setorderFeesTotal(orderFeesTotal: number){\n this.orderFeesTotal.next(orderFeesTotal);\n }\n getorderFeesTotals(){\n return this.orderFeesTotal;\n }\n\n setorderTotalPayments(orderTotalPayments: number){\n this.orderTotalPayments.next(orderTotalPayments);\n }\n getoorderTotalPaymentss(){\n return this.orderTotalPayments;\n }\n}\n","import { ChangeDetectorRef, Component, Input, OnInit } from '@angular/core';\nimport { PaymentLibService } from './payment-lib.service';\nimport { IBSPayments } from './interfaces/IBSPayments';\nimport { OrderslistService } from './services/orderslist.service';\nimport { IPayment } from './interfaces/IPayment';\n\n@Component({\n selector: 'ccpay-payment-lib',\n template: `\n <ccpay-refund-list [USERID]=\"USERID\" [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" [LOGGEDINUSEREMAIL]=\"LOGGEDINUSEREMAIL\" *ngIf=\"viewName === 'refund-list'\"></ccpay-refund-list>\n <ccpay-payment-list *ngIf=\"viewName === 'payment-list'\"></ccpay-payment-list>\n <ccpay-refund-status\n [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\"\n [API_ROOT]=\"API_ROOT\"\n *ngIf=\"viewName === 'refundstatuslist'\"> </ccpay-refund-status >\n <ccpay-payment-view [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'payment-view'\"\n [isTurnOff]=\"ISTURNOFF\" [isTakePayment]=\"TAKEPAYMENT\" [caseType]=\"CASETYPE\"\n ></ccpay-payment-view>\n\n <ccpay-process-refund *ngIf=\"viewName === 'process-refund'\"\n [refundReference]=\"refundReference\"\n [refundlistsource]=\"refundlistsource\"\n ></ccpay-process-refund>\n <ccpay-pba-payment *ngIf=\"viewName === 'pba-payment'\"\n [pbaPayOrderRef]=\"pbaPayOrderRef\"\n ></ccpay-pba-payment>\n <ccpay-case-transactions [isTakePayment]=\"isTakePayment\" [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'case-transactions'\"></ccpay-case-transactions>\n <app-mark-unidentified-payment *ngIf=\"viewName === 'unidentifiedPage'\"\n [caseType]=\"CASETYPE\"></app-mark-unidentified-payment>\n <app-mark-unsolicited-payment *ngIf=\"viewName === 'unsolicitedPage'\"\n [caseType]=\"CASETYPE\"></app-mark-unsolicited-payment>\n <app-allocate-payments *ngIf=\"viewName === 'allocate-payments'\"\n [isTurnOff]=\"ISTURNOFF\"\n [caseType]=\"CASETYPE\"\n ></app-allocate-payments>\n <ccpay-fee-summary *ngIf=\"viewName === 'fee-summary'\"\n [ccdCaseNumber]=\"CCD_CASE_NUMBER\"\n [paymentGroupRef]=\"paymentGroupReference\"\n [isTurnOff]=\"ISTURNOFF\"\n [caseType]=\"CASETYPE\"\n ></ccpay-fee-summary>\n <ccpay-reports *ngIf=\"viewName === 'reports'\"></ccpay-reports>\n `\n})\n\nexport class PaymentLibComponent implements OnInit {\n @Input('API_ROOT') API_ROOT: string;\n @Input('BULKSCAN_API_ROOT') BULKSCAN_API_ROOT: string;\n @Input('REFUNDS_API_ROOT') REFUNDS_API_ROOT: string;\n @Input('CARDPAYMENTRETURNURL') CARDPAYMENTRETURNURL: string;\n @Input('CCD_CASE_NUMBER') CCD_CASE_NUMBER: string;\n @Input('EXC_REFERENCE') EXC_REFERENCE: string;\n @Input('PAYMENT_METHOD') PAYMENT_METHOD: string;\n @Input('VIEW') VIEW: string;\n @Input('VIEWSERVICE') VIEWSERVICE: string;\n @Input('PAYMENT_GROUP_REF') PAYMENT_GROUP_REF?: string;\n @Input('TAKEPAYMENT') TAKEPAYMENT: boolean;\n @Input('SERVICEREQUEST') SERVICEREQUEST: string;\n @Input('DCN_NUMBER') DCN_NUMBER: string;\n @Input('SELECTED_OPTION') SELECTED_OPTION: string;\n @Input('ISBSENABLE') ISBSENABLE: Boolean;\n @Input('ISSFENABLE') ISSFENABLE: boolean;\n @Input('ISTURNOFF') ISTURNOFF: boolean;\n @Input('CASETYPE') CASETYPE: string;\n @Input('rootUrl') rootUrl: boolean;\n @Input('REFUNDLIST') REFUNDLIST: string;\n @Input('USERID') USERID: string;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: any[];\n @Input('LOGGEDINUSEREMAIL') LOGGEDINUSEREMAIL: string;\n @Input('isFromServiceRequestPage') isFromServiceRequestPage: boolean;\n\n paymentMethod: string;\n bspaymentdcn: string;\n unProcessedPaymentServiceId: string = null;\n paymentGroupReference: string;\n paymentReference: string;\n refundReference: string;\n refundlistsource: any;\n viewName: string;\n isTurnOff: boolean;\n caseType: string;\n unProcessedPayment: IBSPayments = null;\n isRefundStatusView: boolean;\n isRedirectFromCaseTransactionPage: string;\n isCallFromRefundList: boolean;\n isFromRefundStatusPage: boolean;\n iscancelClicked : boolean;\n isFromPaymentDetailPage: boolean;\n pbaPayOrderRef: IPayment;\n isTakePayment: boolean;\n\n orderDetail: any[];\n orderRef: string;\n orderStatus: string;\n orderParty: string;\n orderCreated: Date;\n orderCCDEvent: string;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n orderFeesTotal: number = 0.00;\n orderRemissionTotal: number = 0.00;\n orderTotalPayments: number = 0.00;\n orderPendingPayments: number = 0.00;\n\n constructor(private paymentLibService: PaymentLibService,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) { }\n ngAfterContentChecked(): void {\n this.cd.detectChanges();\n }\n\n\n ngOnInit() {\n this.paymentLibService.setApiRootUrl(this.API_ROOT);\n this.paymentLibService.setBulkScanApiRootUrl(this.BULKSCAN_API_ROOT);\n this.paymentLibService.setRefundndsApiRootUrl(this.REFUNDS_API_ROOT);\n this.paymentLibService.setCardPaymentReturnUrl(this.CARDPAYMENTRETURNURL);\n\n if(this.LOGGEDINUSERROLES.length > 0) {\n this.OrderslistService.setUserRolesList(this.LOGGEDINUSERROLES);\n }\n if (this.PAYMENT_GROUP_REF) {\n this.paymentGroupReference = this.PAYMENT_GROUP_REF;\n }\n if (this.DCN_NUMBER) {\n this.bspaymentdcn = this.DCN_NUMBER;\n }\n if (this.REFUNDLIST === \"true\") {\n this.VIEW = 'refund-list';\n this.viewName = this.VIEW;\n }\n if (this.VIEW === 'fee-summary') {\n this.viewName = 'fee-summary';\n } else if (this.VIEW !== 'reports' && this.VIEW !== 'refund-list') {\n this.viewName = 'case-transactions';\n } else {\n this.viewName = this.VIEW;\n }\n\n if (this.isTakePayment) {\n this.TAKEPAYMENT = true;\n }\n }\n}\n","import { Injectable } from '@angular/core';\nimport { _throw } from 'rxjs/observable/throw';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { HttpErrorResponse } from '@angular/common/http';\nimport { stringify } from '@angular/core/src/util';\n\n@Injectable({\n providedIn: 'root'\n})\n\n\nexport class ErrorHandlerService {\n\n constructor() { }\n\n\n handleError(err: HttpErrorResponse): Observable<any> {\n let errorMessage: string;\n if (err.error instanceof Error) {\n // A client-side or network error occurred.\n errorMessage = `An error occurred: ${err.error.message}`;\n } else {\n // The backend returned an unsuccessful response code.\n if (err.status === 404) {\n\n if (typeof err.error === 'string' && err.error !== undefined) {\n \n if(err.error.length > 60) {\n if (JSON.parse(err.error).statusCode !== undefined && JSON.parse(err.error).statusCode === 500)\n {\n errorMessage = 'Internal server error';\n } else {\n if(err.error.length > 60) {\n errorMessage = JSON.parse(err.error).error;\n } else {\n errorMessage = err.error;\n }\n \n }\n } else {\n errorMessage = err.error;\n }\n } else {\n errorMessage = JSON.parse(err.error).error;\n }\n \n }\n else if (err.status === 500) {\n errorMessage = 'Internal server error';\n } else if (err.error.messsage === undefined) {\n if( typeof err.error === 'object') {\n errorMessage = JSON.parse(JSON.stringify(err.error)).error;\n } else {\n if (typeof err.error === 'string' && err.error !== undefined) {\n \n if(err.error.length > 60) {\n if (JSON.parse(err.error).statusCode !== undefined && JSON.parse(err.error).statusCode === 500)\n {\n errorMessage = 'Internal server error';\n } else {\n if(err.error.length > 60) {\n errorMessage = JSON.parse(err.error).error;\n } else {\n errorMessage = err.error;\n }\n \n }\n } else {\n errorMessage = err.error;\n }\n } else {\n errorMessage = JSON.parse(err.error).error;\n }\n \n }\n \n } else {\n if (err.error.message !== undefined) {\n errorMessage = `${err.error.message}`;\n } else {\n errorMessage = `${err.error}`;\n }\n \n }\n }\n return _throw(errorMessage);\n }\n\n\n getServerErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","import { Injectable } from '@angular/core';\n\nconst noop = (): any => undefined;\n\nexport abstract class Logger {\n\n info: any;\n warn: any;\n error: any;\n}\n\n@Injectable({\n providedIn: 'root'\n})\nexport class LoggerService implements Logger {\n\n info: any;\n warn: any;\n error: any;\n\n invokeConsoleMethod(type: string, args?: any): void {}\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\n\nimport { Observable } from 'rxjs/internal/Observable';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { IPayments } from '../../interfaces/IPayments';\nimport { catchError } from 'rxjs/operators';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PaymentListService {\n payments: IPayments;\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n\n getPaymentByCcdCaseNumber(ccdCaseNumber: string, paymentMethod: string): Observable<IPayments> {\n this.logger.info('Payment-list-service getPaymentByCcdCaseNumber for: ', ccdCaseNumber);\n\n return this.http.get<IPayments>(`${this.paymentLibService.API_ROOT}/cases/${ccdCaseNumber}/payments`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import {Component, OnInit} from '@angular/core';\n\nimport {PaymentListService} from '../../services/payment-list/payment-list.service';\nimport {IPayments} from '../../interfaces/IPayments';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport {IStatusHistory} from '../../interfaces/IStatusHistory';\n\n@Component({\n selector: 'ccpay-payment-list',\n templateUrl: './payment-list.component.html',\n styleUrls: ['./payment-list.component.css']\n})\nexport class PaymentListComponent implements OnInit {\n payments: IPayments;\n errorMessage: string;\n code: string;\n\n constructor(private paymentListService: PaymentListService,\n private paymentLibComponent: PaymentLibComponent) {\n }\n\n ngOnInit() {\n this.paymentListService.getPaymentByCcdCaseNumber(this.paymentLibComponent.CCD_CASE_NUMBER, this.paymentLibComponent.PAYMENT_METHOD)\n .subscribe(\n payments => this.payments = payments,\n (error: any) => this.errorMessage = <any>error\n );\n }\n\n loadPaymentViewComponent(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.paymentLibComponent.paymentMethod = paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n}\n","/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Meta } from '@angular/platform-browser';\nimport { Observable } from 'rxjs';\n\n@Injectable()\nexport class WebComponentHttpClient {\n constructor(\n private http: HttpClient,\n private meta: Meta\n ) { }\n\n post(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.post(url, body, opts);\n }\n\n put(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.put(url, body, opts);\n }\n\n get(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.get(url, opts);\n }\n\n delete(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.delete(url, opts);\n }\n \n patch(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.patch(url, body, opts);\n }\n\n addHeaders(options: any): any {\n const csrfToken = this.meta.getTag('name=csrf-token');\n const headers = {};\n \n if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n if (csrfToken === null) {\n if( document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')) !== undefined ) {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')).split('=')[1]; \n } else {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith(' XSRF-TOKEN')).split('=')[1];\n }\n } else {\n headers['CSRF-Token'] = csrfToken.content;\n }\n options.headers = new HttpHeaders(headers);\n options.responseType = 'text';\n return options;\n }\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { v4 as uuidv4 } from 'uuid';\nimport {IPayment} from '../../interfaces/IPayment';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { catchError } from 'rxjs/operators';\nimport { LoggerService } from '../shared/logger/logger.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { PayhubAntennaRequest } from '../../interfaces/PayhubAntennaRequest';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { Meta } from '@angular/platform-browser';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { IAllocationPaymentsRequest } from '../../interfaces/IAllocationPaymentsRequest';\nimport {IOrderReferenceFee} from '../../interfaces/IOrderReferenceFee';\nimport { BehaviorSubject } from 'rxjs';\nimport { IserviceRequestPbaPayment } from '../../interfaces/IserviceRequestPbaPayment';\nimport { IserviceRequestCardPayment } from '../../interfaces/IserviceRequestCardPayment';\nimport { RefundsRequest } from '../../interfaces/RefundsRequest';\nimport { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\nimport { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';\nimport { error } from '@angular/compiler/src/util';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PaymentViewService {\n private ordersList = <BehaviorSubject<IOrderReferenceFee[]>>new BehaviorSubject([]);\n\n private meta: Meta;\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getPaymentDetails(paymentReference: string, paymentMethod: string): Observable<IPayment> {\n this.logger.info('Payment-view-service getPaymentDetails for: ', paymentReference);\n\n return this.http.get<IPayment>(paymentMethod === 'card' || paymentMethod === 'cash' || paymentMethod === 'cheque' || paymentMethod === 'postal order' ?\n `${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}` :\n `${this.paymentLibService.API_ROOT}/credit-account-payments/${paymentReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getPaymentGroupDetails(paymentGroupReference: string): Observable<IPaymentGroup> {\n this.logger.info('Payment-view-service getPaymentGroupDetails for: ', paymentGroupReference);\n\n return this.http.get<IPayment>(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getApportionPaymentDetails(paymentReference: string): Observable<IPaymentGroup> {\n this.logger.info('Payment-view-service getPaymentGroupDetails for: ', paymentReference);\n\n return this.http.get<IPayment>(`${this.paymentLibService.API_ROOT}/payment-groups/fee-pay-apportion/${paymentReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getPBAaccountDetails(): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/pba-accounts`;\n return this.http.get(url, { withCredentials: true }).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postWays2PayCardPayment(serviceRef: string, body: IserviceRequestCardPayment): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/service-request/${serviceRef}/card-payments`;\n const rurl = this.paymentLibService.CARDPAYMENTRETURNURL.replace('.prod', '');\n body['return-url'] = `${rurl}/payment`;\n return this.https.post(url, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n \n postPBAaccountPayment(serviceRef: string, body: IserviceRequestPbaPayment): Observable<any> {\n let randomKey = 'idam-key-' + Math.random().toString().split('.').join('-');\n body['idempotency_key'] = randomKey; \n const url = `${this.paymentLibService.API_ROOT}/service-request/${serviceRef}/pba-payments`;\n return this.https.post(url, body);\n }\n\n postBSPayments(body: AllocatePaymentRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/bulk-scan-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSUnidentifiedPayments(body: UnidentifiedPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSUnsolicitedPayments(body: UnsolicitedPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSAllocationPayments(body: IAllocationPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postPaymentGroupWithRemissions(paymentGroupReference: string, feeId: number, body: AddRemissionRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}/fees/${feeId}/remissions`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n deleteFeeFromPaymentGroup(feeId: number): Observable<any> {\n this.logger.info('Payment-view-service deleteFeeFromPaymentGroup for: ', feeId);\n return this.https.delete(`${this.paymentLibService.API_ROOT}/fees/${feeId}`).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postPaymentToPayHub(body: PaymentToPayhubRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/card-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postPaymentAntennaToPayHub(body: PayhubAntennaRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/telephony-card-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n downloadSelectedReport(reportName: string, startDate: string, endDate:string): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/report/data?date_from=${startDate}&date_to=${endDate}&report_type=${reportName}`;\n return this.https.get(url, { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getBSfeature(): Observable<any> {\n return this.https.get('api/payment-history/bulk-scan-feature', { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getSiteID(): Observable<any> {\n return this.https.get('api/payment-history/refdata/legacy-sites', { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getPartyDetails(caseNumber: string): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/case-payment-orders?case_ids=${caseNumber}`;\n return this.https.get(url, { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n \n setOrdersList(orderLevelFees: IOrderReferenceFee[]): void {\n this.ordersList.next(Object.assign([], orderLevelFees));\n}\n getOrdersList() {\n return this.ordersList;\n }\n\n //issue refund\n postRefundsReason(body: PostRefundRetroRemission): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/refund-for-payment`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n // retro remissions\n postPaymentGroupWithRetroRemissions(paymentGroupReference: string, feeId: number, body: AddRetroRemissionRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}/fees/${feeId}/retro-remission`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postRefundRetroRemission(body:PostIssueRefundRetroRemission) {\n return this.https.post(`${this.paymentLibService.API_ROOT}/refund-retro-remission`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\nimport { ChangeDetectorRef } from '@angular/core';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-payment-view',\n templateUrl: './payment-view.component.html',\n styleUrls: ['./payment-view.component.css']\n})\nexport class PaymentViewComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() isTakePayment: boolean;\n @Input() caseType: boolean;\n @Input() orderRef: string;\n @Input() orderStatus: string;\n @Input() orderTotalPayments: number;\n @Input() payment: IPayment;\n @Input() LOGGEDINUSERROLES: string[];\n @Input() orderParty: string;\n @Input() orderCreated: Date;\n @Input() orderCCDEvent: string;\n @Input() orderFeesTotal: number;\n @Input() orderRemissionTotal: number;\n @Input() orderDetail: any[];\n @Input(\"isServiceRequest\") isServiceRequest: string;\n\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n ccdCaseNumber: string;\n selectedOption: string;\n dcnNumber: string;\n isStatusAllocated: boolean;\n isRemissionsMatch: boolean;\n feeId: IFee;\n viewStatus: string;\n isRefundRemission: boolean = false;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n remissions: IRemission[] = [];\n remissionFeeAmt: number;\n isRefundRemissionBtnEnable: boolean;\n serviceReference: string;\n isFromServiceRequestPage: boolean;\n isFromPaymentDetailPage: boolean;\n\n constructor(private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) {\n }\n\n ngAfterContentChecked(): void {\n this.cd.detectChanges();\n }\n\n ngOnInit() {\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION;\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.serviceReference = this.paymentLibComponent.paymentGroupReference;\n this.viewStatus = 'paymentview';\n this.paymentViewService.getApportionPaymentDetails(this.paymentLibComponent.paymentReference).subscribe(\n paymentGroup => {\n let fees = [];\n paymentGroup.fees.forEach(fee => {\n this.isRemissionsMatch = false;\n\n paymentGroup.remissions.forEach(rem => {\n if (rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n if (!this.isRemissionsMatch) {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n\n },\n (error: any) => this.errorMessage = error\n );\n\n }\n\n get isCardPayment(): boolean {\n return this.paymentGroup.payments[0].method === 'card';\n }\n\n get isTelephonyPayment(): boolean {\n return this.paymentGroup.payments[0].channel === 'telephony';\n }\n\n public goToPaymentList(): void {\n this.paymentLibComponent.viewName = 'payment-list';\n }\n goToServiceRequestPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = false;\n this.paymentLibComponent.SERVICEREQUEST = 'true';\n this.paymentLibComponent.isFromServiceRequestPage = true;\n window.location.reload();\n }\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n if (!this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.resetOrderData();\n } else {\n this.OrderslistService.getorderRefs().subscribe((data) => this.orderRef = data);\n this.OrderslistService.getorderCCDEvents().subscribe((data) => this.orderCCDEvent = data);\n this.OrderslistService.getorderCreateds().subscribe((data) => this.orderCreated = data);\n this.OrderslistService.getorderDetail().subscribe((data) => this.orderDetail = data);\n this.OrderslistService.getorderPartys().subscribe((data) => this.orderParty = data);\n this.OrderslistService.getorderRemissionTotals().subscribe((data) => this.orderRemissionTotal = data);\n this.OrderslistService.getorderFeesTotals().subscribe((data) => this.orderFeesTotal = data);\n this.OrderslistService.getoorderTotalPaymentss().subscribe((data) => this.orderTotalPayments = data);\n this.viewStatus = 'order-full-view';\n }\n\n }\n\n addRemission(fee: IFee) {\n if(this.chkForAddRemission(fee.code)) {\n this.feeId = fee;\n this.paymentViewService.getApportionPaymentDetails(this.paymentGroup.payments[0].reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n this.paymentLibComponent.isFromPaymentDetailPage = true;\n this.viewStatus = 'addremission';\n this.isRefundRemission = true;\n this.cd.detectChanges();\n },\n (error: any) => this.errorMessage = error\n );\n }\n }\n\n checkForFees(paymentGroup: any) {\n if(paymentGroup !== null && paymentGroup !== undefined)\n {\n if (paymentGroup.fees !== null && paymentGroup.fees !== undefined) {\n return true;\n }\n\n }\n return false;\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n if(this.chkIsRefundRemissionBtnEnable()) {\n this.payment = payment;\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.payment.reference));\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n this.viewStatus = 'addrefundforremission';\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n if (this.paymentGroup !== null && this.paymentGroup !== undefined) {\n this.paymentGroup.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n issueRefund(paymentgrp: IPaymentGroup) {\n if (paymentgrp !== null && paymentgrp !== undefined) {\n if(this.chkIssueRefundBtnEnable(paymentgrp.payments[0])) {\n this.paymentGroup = paymentgrp;\n this.viewStatus = 'issuerefund';\n this.isRefundRemission = true;\n this.paymentLibComponent.isFromPaymentDetailPage = true;\n this.isFromPaymentDetailPage = true;\n this.isFromServiceRequestPage = this.paymentLibComponent.isFromServiceRequestPage;\n }\n }\n }\n\n getRemissionByFeeCode(feeCode: string, remissions: IRemission[]): IRemission {\n if (remissions && remissions.length > 0) {\n for (const remission of remissions) {\n if (remission.fee_code === feeCode) {\n return remission;\n }\n }\n }\n return null;\n }\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n this.isIssueRefunfBtnEnable = true;\n }\n if (this.isIssueRefunfBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n\n chkForPBAPayment(): boolean {\n if (this.paymentGroup !== null && this.paymentGroup !== undefined) {\n let payment = this.paymentGroup.payments[0];\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n return true;\n }\n return false;\n }\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(this.paymentGroup.payments[0])) {\n if (this.paymentGroup.remissions && this.paymentGroup.remissions.length > 0) {\n for (const remission of this.paymentGroup.remissions) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n return true;\n }\n return true;\n\n } else {\n return false;\n }\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n if(payment !== null && payment !== undefined) {\n let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\n }\n }\n\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n}\n","import { Injectable } from '@angular/core';\nimport {HttpClient, HttpHeaders} from '@angular/common/http';\nimport { Meta } from '@angular/platform-browser';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {catchError} from 'rxjs/operators';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { IPatchRefundAction } from '../../interfaces/IPatchRefundAction';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { IssueRefundRequest } from '../../interfaces/IssueRefundRequest';\nimport { IResubmitRefundRequest } from '../../interfaces/IResubmitRefundRequest';\nimport { IRefundStatusHistory } from '../../interfaces/IRefundStatusHistory';\n@Injectable({\n providedIn: 'root'\n})\nexport class RefundsService {\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService,\n private meta: Meta\n ) { }\n\n getRefundReasons(): Observable<IRefundReasons[]> {\n return this.http.get<IRefundReasons[]>(`${this.paymentLibService.REFUNDS_API_ROOT}/reasons`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getRefundRejectReasons(): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/rejection-reasons`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getRefundActions(refundReference: string): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/${refundReference}/actions`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\npatchRefundActions(body:IPatchRefundAction, refundReference: string, reviewerAction: string): Observable<any> {\n // const opts = this.addHeaders({});\n return this.https.patch(`${this.paymentLibService.REFUNDS_API_ROOT}/${refundReference}/action/${reviewerAction}`, body)\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundList(refundstatus?: string, selfexclusive?:boolean): Observable<IRefundList[]> {\n return this.http.get<IRefundList[]>(`${this.paymentLibService.REFUNDS_API_ROOT}?status=${refundstatus}&excludeCurrentUser=${selfexclusive}`, \n {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundStatusHistory(reference?: string) {\n return this.http.get<IRefundStatusHistory>(`${this.paymentLibService.REFUNDS_API_ROOT}/${reference}/status-history`, \n {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundStatusList(ccdCaseNumber:string): Observable<IRefundList[]> {\n return this.http.get<IRefundList[]>(`${this.paymentLibService.REFUNDS_API_ROOT}?ccdCaseNumber=${ccdCaseNumber}`, {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetUserDetails(): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/get-user-details`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n \npostIssueRefund(body: IssueRefundRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.REFUNDS_API_ROOT}/refund`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\npatchResubmitRefund(body: IResubmitRefundRequest, refund_reference: string): Observable<any> {\n // const opts = this.addHeaders({});\n return this.https.patch(`${this.paymentLibService.REFUNDS_API_ROOT}/resubmit/${refund_reference}`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\naddHeaders(options: any): any {\n const csrfToken = this.meta.getTag('name=csrf-token');\n const headers = {};\n if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n if (csrfToken.content === null) {\n if( document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')) !== undefined ) {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')).split('=')[1]; \n } else {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith(' XSRF-TOKEN')).split('=')[1];\n }\n } else {\n headers['CSRF-Token'] = csrfToken.content;\n }\n options.headers = new HttpHeaders(headers);\n options.responseType = 'text';\n return options;\n}\n}\n","import {Component, OnInit, Input} from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport {RefundsService} from '../../services/refunds/refunds.service';\nimport { IRefundAction } from '../../interfaces/IRefundAction';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { IRefundRejectReason } from '../../interfaces/IRefundRejectReason';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { ActivatedRoute,Router } from '@angular/router';\n\n@Component({\n selector: 'ccpay-process-refund',\n templateUrl: './process-refund.component.html',\n styleUrls: ['./process-refund.component.css']\n})\nexport class ProcessRefundComponent implements OnInit {\n @Input() refundReference: string;\n @Input() refundlistsource: IRefundList;\n\n processRefundForm: FormGroup;\n\n errorMessage = this.getErrorMessage(false, '', '', '');\n sendmeback: string = null;\n viewStatus: string;\n refundActionList: IRefundAction[] = []; \n refundRejectReasonList: IRefundRejectReason[] = []; \n isSendMeBackClicked: boolean = false;\n isRejectClicked: boolean = false;\n isOtherClicked: boolean = false;\n isSuccesspageEnable: boolean = false;\n\n refundActionsHasError: boolean = false;\n refundRejectReasonHasError: boolean = false;\n isReasonFieldEmpty: boolean = false;\n isReasonFieldInvalid: boolean = false;\n reasonFieldMinHasError: boolean = false;\n reasonFieldMaxHasError: boolean = false;\n isReasonEmpty: boolean = false;\n isReasonInvalid: boolean = false;\n successMsg: string = null;\n navigationpage: string;\n ccdCaseNumber: string;\n isFromRefundListPage: boolean;\n\n isConfirmButtondisabled: boolean = true;\n constructor(private RefundsService: RefundsService,\n private formBuilder: FormBuilder,\n private OrderslistService: OrderslistService,\n private paymentLibComponent: PaymentLibComponent,\n private router: Router,\n private activeRoute: ActivatedRoute) {\n }\n\n ngOnInit() {\n this.viewStatus = 'RefundProcess';\n this.RefundsService.getRefundActions(this.refundReference).subscribe(\n refundActionList => {\n this.refundActionList = <any>refundActionList;\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err, err);\n }\n );\n this.processRefundForm = this.formBuilder.group({\n refundActionField: new FormControl('', Validators.compose([\n Validators.required\n ])),\n refundRejectReasonField: new FormControl('', Validators.compose([\n Validators.required\n ])),\n sendMeBackField: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$'),\n\n ])),\n enterReasonField: new FormControl('', Validators.compose([\n Validators.required,\n Validators.maxLength(30),\n Validators.pattern('^([a-zA-Z0-9.\\\\s]*)$'),\n ])),\n });\n this.ccdCaseNumber = this.refundlistsource.ccd_case_number;\n\n if((typeof this.paymentLibComponent.TAKEPAYMENT === 'string' && this.paymentLibComponent.TAKEPAYMENT === 'false') || (typeof this.paymentLibComponent.TAKEPAYMENT === 'boolean' && !this.paymentLibComponent.TAKEPAYMENT) ) {\n this.isFromRefundListPage = true;\n }\n }\n checkRefundActions(code: string) {\n this.refundActionsHasError = false;\n this.isReasonFieldEmpty = false;\n this.isReasonEmpty = false;\n this.isReasonInvalid = false;\n this.refundRejectReasonHasError = false;\n if(code === 'Return to caseworker') {\n this.isConfirmButtondisabled = true;\n this.isSendMeBackClicked = true;\n this.isRejectClicked = false;\n this.isOtherClicked = false;\n\n } else if (code === 'Approve') {\n this.isSendMeBackClicked = false;\n this.isConfirmButtondisabled = false;\n this.isRejectClicked = false;\n this.isOtherClicked = false;\n\n } else if (code === 'Reject') {\n this.isRejectClicked = true;\n this.isSendMeBackClicked = false;\n this.isOtherClicked = false;\n this.RefundsService.getRefundRejectReasons().subscribe(\n refundRejectReasonList => {\n this.refundRejectReasonList = <any>refundRejectReasonList;\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err, err);\n }\n );\n } else if (code === 'RE005') {\n this.isOtherClicked = true;\n } else if (code !== 'RE005') {\n this.isOtherClicked = false;\n }\n }\n processRefundSubmit() {\n let processRefundRequest;\n let status;\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n const controls = this.processRefundForm.controls;\n const processFormError = controls.sendMeBackField.errors;\n\n if (this.processRefundForm.dirty && controls.refundActionField.valid \n && (controls.refundActionField.value == 'Approve'\n || (controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.valid && controls.refundRejectReasonField.value != 'RE005')\n || (controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.value == 'RE005' && controls.enterReasonField.valid)\n || (controls.refundActionField.value == 'Return to caseworker' && controls.sendMeBackField.valid))) {\n if (controls.refundActionField.value === 'Approve'){\n status = 'APPROVE';\n processRefundRequest = {\n code:'',\n reason: ''\n };\n } else if (controls.refundActionField.value === 'Reject') {\n status = 'REJECT';\n\n processRefundRequest = {\n code: controls.refundRejectReasonField.value ? controls.refundRejectReasonField.value : '',\n reason: controls.refundRejectReasonField.value == 'RE005' ? controls.enterReasonField.value : ''\n };\n } else if (controls.refundActionField.value === 'Return to caseworker') {\n status = 'SENDBACK';\n\n processRefundRequest = {\n code: '',\n reason: controls.sendMeBackField.value\n };\n }\n this.RefundsService.patchRefundActions(processRefundRequest, this.refundReference, status).subscribe(\n response => {\n this.isSuccesspageEnable = true;\n // this.successMsg = JSON.parse(response)['data'];\n this.successMsg = response.replace(/['\"]+/g, '');\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err, err);\n }\n );\n } else {\n if(controls.refundActionField.value == \"\") {\n this.resetForm([true, false, false, false, false, false, false, false], 'action');\n }\n if(controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.value == \"\") {\n this.resetForm([false, true, false, false, false, false, false, false], 'rejectReason');\n }\n if(controls.refundActionField.value == 'Return to caseworker') {\n if(controls.sendMeBackField.value == '' ) {\n this.resetForm([false, false, true, false, false, false, false, false], 'addAreason');\n }\n if(controls.sendMeBackField.value != '' && controls.sendMeBackField.invalid ) {\n this.resetForm([false, false, false, true, false, false, false, false], 'addAreason');\n }\n if(processFormError && processFormError.minlength && processFormError.minlength.actualLength < 3 ) {\n this.resetForm([false, false, false, false, true, false, false, false], 'addAreason');\n }\n if(processFormError && processFormError.maxlength && processFormError.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, false, false, true, false, false], 'addAreason');\n }\n }\n if(controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.value == 'RE005') {\n if(controls.enterReasonField.value === \"\") {\n this.resetForm([false, false, false, false, false, false, true, false], 'enterReason');\n }\n if(controls.enterReasonField.value!== \"\" && controls.enterReasonField.invalid) {\n this.resetForm([false, false, false, false, false, false, false, true], 'enterReason');\n }\n }\n }\n\n }\n getErrorMessage(isErrorExist, status, errorMsg, err) {\n let bodyTxt = 'Please try again later';\n if (status !== 500) {\n if (errorMsg !== undefined) {\n bodyTxt = errorMsg;\n } else {\n bodyTxt = err;\n }\n \n }\n return {\n title: 'Something went wrong',\n body: bodyTxt,\n showError: isErrorExist\n };\n }\n loadRefundListPage() {\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n if (this.navigationpage === 'casetransactions') {\n // window.location.href='/refund-list?takePayment=false&refundlist=true';\n // // this.OrderslistService.setnavigationPage('casetransactions');\n // // this.OrderslistService.setisFromServiceRequestPage(false);\n // // this.paymentLibComponent.VIEW ='case-transactions';\n // // this.paymentLibComponent.viewName = 'case-transactions';\n // // this.paymentLibComponent.ISBSENABLE = true;\n // // this.paymentLibComponent.isRefundStatusView = false;\n this.paymentLibComponent.viewName = 'refundstatuslist';\n this.paymentLibComponent.isRefundStatusView = true;\n } else {\n this.paymentLibComponent.viewName = 'refundstatuslist';\n this.paymentLibComponent.isRefundStatusView = true;\n }\n }\n loadRefundsHomePage() {\n if(typeof this.paymentLibComponent.TAKEPAYMENT === 'string' && this.paymentLibComponent.TAKEPAYMENT === 'false') {\n //window.location.href='/refund-list?takePayment=false&refundlist=true';\n this.paymentLibComponent.viewName = 'refund-list';\n }\n else {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.VIEW ='case-transactions';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n }\n }\n redirecttoRefundListPage() {\n if((typeof this.paymentLibComponent.TAKEPAYMENT === 'string' && this.paymentLibComponent.TAKEPAYMENT === 'false') || (typeof this.paymentLibComponent.TAKEPAYMENT === 'boolean' && !this.paymentLibComponent.TAKEPAYMENT) ) {\n // window.location.href='/refund-list?takePayment=false&refundlist=true';\n this.paymentLibComponent.viewName = 'refund-list';\n }\n else {\n this.loadRefundListPage();\n }\n }\n // loadCaseTransactionPage() {\n // this.paymentLibComponent.isRefundStatusView = false;\n // this.paymentLibCo}mponent.TAKEPAYMENT = true;\n // this.paymentLibComponent.viewName = 'case-transactions';\n // this.paymentViewService.getBSfeature().subscribe(\n // features => {\n // let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n // this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n // },\n // err => {\n // this.paymentLibComponent.ISBSENABLE = false;\n // }\n // );\n\n // let partUrl = `selectedOption=${this.paymentLibComponent.SELECTED_OPTION}`;\n // partUrl += this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n // partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n // partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n // partUrl += this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n // partUrl += `&caseType=${this.paymentLibComponent.CASETYPE}`;\n // partUrl += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n // partUrl += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n // let url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=true&${partUrl}`;\n // this.router.navigateByUrl(url);\n // }\n\n resetForm(vals, field) {\n if(field==='action' || field==='all') {\n this.refundActionsHasError = vals[0];\n }\n if(field==='rejectReason' || field==='all') {\n this.refundRejectReasonHasError = vals[1];\n }\n if(field==='addAreason' || field==='all') {\n this.isReasonFieldEmpty = vals[2];\n this.isReasonFieldInvalid = vals[3];\n this.reasonFieldMinHasError = vals[4];\n this.reasonFieldMaxHasError = vals[5];\n }\n if(field==='enterReason' || field==='all') {\n this.isReasonEmpty = vals[6];\n this.isReasonInvalid = vals[7];\n }\n }\n\n goToCaseReview() {\n this.router.navigate([`/cases/case-details/${this.ccdCaseNumber}`], {relativeTo: this.activeRoute});\n }\n}\n","import {Component, OnInit, Input} from '@angular/core';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { IRefundList } from '../../interfaces/IRefundList';\n\n@Component({\n selector: 'ccpay-refund-list',\n templateUrl: './refund-list.component.html',\n styleUrls: ['./refund-list.component.css']\n})\nexport class RefundListComponent implements OnInit {\n @Input('USERID') USERID: string;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: any[];\n @Input('LOGGEDINUSEREMAIL') LOGGEDINUSEREMAIL:string;\n\n constructor(private refundService: RefundsService) {\n }\n\n tableApprovalHeader: string;\n tableRejectedHeader: string;\n submittedRefundList: IRefundList[] = [];\n rejectedRefundList: IRefundList[] = [];\n approvalStatus = 'Sent for approval';\n rejectStatus = 'Update required';\n // approvalStatus = 'sent for approval';\n // rejectStatus = 'sent back';\n errorMessage = null;\n isApproveTableVisible:boolean;\n isRejectTableVisible:boolean;\n dropdownvalue: string;\n isAuthorized: boolean = true;\n userLst\n ngOnInit() {\n \n this.userLst = this.LOGGEDINUSERROLES;\n\n \n if(this.LOGGEDINUSERROLES.some(i =>i.includes('payments-refund-approver'))){\n this.isAuthorized = true;\n } else {\n this.isApproveTableVisible = false;\n this.isAuthorized = false;\n }\n\n \n this.tableApprovalHeader = 'Refunds to be approved';\n this.tableRejectedHeader = 'Refunds returned to caseworker';\n\n if(this.isAuthorized) {\n this.refundService.getRefundList(this.approvalStatus,true).subscribe(\n refundList => {\n this.submittedRefundList = refundList['refund_list'];\n this.isApproveTableVisible = true;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n }\n\n this.refundService.getRefundList(this.rejectStatus,false).subscribe(\n refundList => {\n this.rejectedRefundList = refundList['refund_list'];\n this.isRejectTableVisible = true;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n\n }\n \n}","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {Observable} from 'rxjs/internal/Observable';\n\nimport {ICardDetails} from '../../interfaces/ICardDetails';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { catchError } from 'rxjs/operators';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class CardDetailsService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getCardDetails(paymentReference: string): Observable<ICardDetails> {\n this.logger.info('Card-detail-service getCardDetails for: ', paymentReference);\n\n return this.http.get<ICardDetails>(`${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}/details`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit } from '@angular/core';\nimport { CardDetailsService } from '../../services/card-details/card-details.service';\nimport {ICardDetails} from '../../interfaces/ICardDetails';\nimport { PaymentLibComponent } from '../../payment-lib.component';\n\n@Component({\n selector: 'ccpay-card-details',\n templateUrl: './card-details.component.html',\n styleUrls: ['./card-details.component.css']\n})\nexport class CardDetailsComponent implements OnInit {\n pageTitle: string = 'Card details';\n cardDetails: ICardDetails;\n paymentReference: string;\n errorMessage: string;\n\n constructor(private cardDetailsService: CardDetailsService,\n private paymentLibComponent: PaymentLibComponent) { }\n\n ngOnInit() {\n this.cardDetailsService.getCardDetails(this.paymentLibComponent.paymentReference).subscribe(\n cardDetails => this.cardDetails = cardDetails,\n (error: any) => this.errorMessage = <any>error\n );\n }\n\n get getPaymentReference(): string {\n return this.paymentReference;\n }\n\n}\n","import { Component } from '@angular/core';\n\n@Component({\n template: `\n <h1>This is not the page you were looking for!</h1>\n `\n})\nexport class PageNotFoundComponent { }\n","import { Injectable } from '@angular/core';\nimport { PaymentLibService } from '../../payment-lib.service';\nimport { HttpClient } from '@angular/common/http';\nimport { IStatusHistories } from '../../interfaces/IStatusHistories';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { catchError } from 'rxjs/operators';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class StatusHistoryService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getPaymentStatusesByReference(paymentReference: string, paymentMethod: string): Observable<IStatusHistories> {\n this.logger.info('Status-history-service getPaymentStatusesByReference for: ', paymentReference);\n\n return this.http.get<IStatusHistories>(paymentMethod === 'card' || paymentMethod === 'cash' || paymentMethod === 'cheque' || paymentMethod === 'postal order' ?\n `${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}/statuses` :\n `${this.paymentLibService.API_ROOT}/credit-account-payments/${paymentReference}/statuses`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { IStatusHistories } from '../../interfaces/IStatusHistories';\nimport { StatusHistoryService } from '../../services/status-history/status-history.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\n\n@Component({\n selector: 'ccpay-payment-statuses',\n templateUrl: './status-history.component.html',\n styleUrls: ['./status-history.component.css']\n})\nexport class StatusHistoryComponent implements OnInit {\n @Input() isTakePayment: boolean;\n pageTitle: string = 'Payment status history';\n statuses: IStatusHistories;\n errorMessage: string;\n\n constructor(private statusHistoryService: StatusHistoryService,\n private paymentLibComponent: PaymentLibComponent) { }\n\n ngOnInit() {\n this.statusHistoryService.getPaymentStatusesByReference(this.paymentLibComponent.paymentReference, this.paymentLibComponent.paymentMethod).subscribe(\n statuses => this.statuses = statuses,\n (error: any) => this.errorMessage = <any>error.replace(/\"/g,\"\")\n );\n \n }\n\n}\n","import { Component, Input, OnInit } from '@angular/core';\nimport { IPayment } from '../../interfaces/IPayment';\n\n@Component({\n selector: 'ccpay-pba-details',\n templateUrl: './pba-details.component.html',\n styleUrls: ['./pba-details.component.css']\n})\nexport class PbaDetailsComponent implements OnInit {\n @Input() payment: IPayment;\n\n constructor() { }\n\n ngOnInit() {\n }\n\n}\n","import { Injectable } from '@angular/core';\nimport { Logger } from './logger.service';\n\nexport let isDebugMode = false;\n\nconst noop = (): any => undefined;\n\n@Injectable({\n providedIn: 'root'\n})\nexport class ConsoleLoggerService implements Logger {\n\n get info() {\n if (isDebugMode) {\n return console.info.bind(console);\n } else {\n return noop;\n }\n }\n\n get warn() {\n if (isDebugMode) {\n return console.warn.bind(console);\n } else {\n return noop;\n }\n }\n\n get error() {\n if (isDebugMode) {\n return console.error.bind(console);\n } else {\n return noop;\n }\n }\n\n invokeConsoleMethod(type: string, args?: any): void {\n const logFn: Function = (console)[type] || console.log || noop;\n logFn.apply(console, [args]);\n }\n}\n","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {LoggerService} from '../shared/logger/logger.service';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport {catchError} from 'rxjs/operators';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class CaseTransactionsService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService\n ) { }\n\n getPaymentGroups(ccdCaseNumber: string): Observable<IPaymentGroup[]> {\n this.logger.info('Case-transactions-service getPaymentGroups for: ', ccdCaseNumber);\n\n return this.http.get<IPaymentGroup[]>(`${this.paymentLibService.API_ROOT}/cases/${ccdCaseNumber}/paymentgroups`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {catchError} from 'rxjs/operators';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class BulkScaningPaymentService {\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService\n ) { }\n\n getBSPaymentsByCCD(ccdCaseNumber: string): Observable<IBSPayments> {\n return this.http.get<IBSPayments>(`${this.paymentLibService.BULKSCAN_API_ROOT}/cases/${ccdCaseNumber}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getBSPaymentsByDCN(dcn: string): Observable<IBSPayments> {\n return this.http.get<IBSPayments>(`${this.paymentLibService.BULKSCAN_API_ROOT}/cases?document_control_number=${dcn}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSAllocatePayment(body: AllocatePaymentRequest, paymentRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentRef}/bulk-scan-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSPaymentStrategic(body: AllocatePaymentRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/bulk-scan-payments-strategic`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSWoPGStrategic(body: AllocatePaymentRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/bulk-scan-payments-strategic`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n patchBSChangeStatus(dcnNumber: string, status: string): Observable<any> {\n return this.https.patch(`${this.paymentLibService.API_ROOT}/bulk-scan-payments/${dcnNumber}/status/${status}`, status).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n calculateOutStandingAmount(paymentGroup: IPaymentGroup): number {\n let feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00;\n\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n });\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n } \n return (feesTotal - remissionsTotal) - paymentsTotal;\n }\n\n removeUnwantedString(input: string, replaceText: string) {\n const pattern = /[\\_]/gi;\n return input.replace(pattern, replaceText);\n }\n\n downloadSelectedReport(reportName: string, startDate: string, endDate:string): Observable<any> {\n return this.https.get(`${this.paymentLibService.BULKSCAN_API_ROOT}/report/data?date_from=${startDate}&date_to=${endDate}&report_type=${reportName}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { CaseTransactionsService } from '../../services/case-transactions/case-transactions.service';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IPaymentView } from '../../interfaces/IPaymentView';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { Router } from '@angular/router';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-case-transactions',\n templateUrl: './case-transactions.component.html',\n styleUrls: ['./case-transactions.component.css']\n})\nexport class CaseTransactionsComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input() isTakePayment: boolean;\n takePayment: boolean;\n ccdCaseNumber: string;\n excReference: string;\n paymentGroups: any[] = [];\n payments: IPayment[] = [];\n nonPayments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n fees: IFee[] = [];\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalNonOffPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n paymentRef: string;\n isTurnOff: boolean;\n isRefundRemission: boolean = true;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = true;\n isExceptionRecord: boolean = false;\n isUnprocessedRecordSelected: boolean = false;\n exceptionRecordReference: string;\n isAnyFeeGroupAvilable: boolean = true;\n isHistoricGroupAvailable: boolean = false;\n isBulkScanEnable;\n isRemissionsMatch: boolean;\n viewStatus = 'main';\n isRemoveBtnDisabled: boolean = false;\n feeId: IFee;\n clAmountDue: number = 0;\n unprocessedRecordCount: number;\n isFeeRecordsExist: boolean = false;\n isGrpOutstandingAmtPositive: boolean = false;\n totalRefundAmount: Number;\n caseType: String;\n // lsCcdNumber: any = ls.get<any>('ccdNumber');\n payment: IPayment;\n paymentGroup: IPaymentGroup;\n paymentView: IPaymentView;\n\n //Order changes\n orderDetail: any[] = [];\n\n isAddRemissionEnable: boolean = false;\n orderRemissionDetails: any[] = [];\n orderLevelFees: IOrderReferenceFee[] = [];\n ispaymentGroupApisuccess: boolean = false;\n cpoDetails: any = null;\n orderRef: string;\n orderStatus: string;\n orderParty: string;\n orderCreated: Date;\n orderCCDEvent: string;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n orderFeesTotal: number = 0.00;\n orderRemissionTotal: number = 0.00;\n orderTotalPayments: number = 0.00;\n orderPendingPayments: number = 0.00;\n isCPODown: boolean;\n test: boolean;\n isPBA: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n isAddRemissionBtnEnabled: boolean = false;\n isRefundRemissionBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n isEligible4PBAPayment = ['pui-finance-manager', 'pui-user-manager', 'pui-organisation-manager', 'pui-case-manager'];\n currentDate = new Date();\n isFromServiceRequestPage: boolean;\n navigationpage: string;\n remissionFeeAmt: number;\n constructor(private router: Router,\n private paymentViewService: PaymentViewService,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private caseTransactionsService: CaseTransactionsService,\n private paymentLibComponent: PaymentLibComponent,\n private OrderslistService: OrderslistService\n ) { }\n\n ngOnInit() {\n this.navigationpage = '';\n if(this.OrderslistService.getpaymentPageView() !== null) {\n this.OrderslistService.getpaymentPageView().subscribe((data) => this.paymentView = data);\n }\n if((this.LOGGEDINUSERROLES === undefined || this.LOGGEDINUSERROLES.length === 0 )&&this.OrderslistService.getUserRolesList() !== null) {\n this.OrderslistService.getUserRolesList().subscribe((data) => this.LOGGEDINUSERROLES = data);\n }\n if(this.OrderslistService.getnavigationPageValue() !== null) {\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n }\n\n\n if (this.paymentView !== undefined && this.paymentView !== null && this.paymentView.payment_group_reference !== undefined && this.navigationpage === 'paymentdetailspage') {\n this.goToPayementView(this.paymentView.payment_group_reference, this.paymentView.reference, this.paymentView.method);\n }\n this.isGrpOutstandingAmtPositive = false;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.caseType = this.paymentLibComponent.CASETYPE;\n if (this.paymentLibComponent.CCD_CASE_NUMBER === '') {\n this.ccdCaseNumber = this.paymentLibComponent.EXC_REFERENCE;\n }\n this.excReference = this.paymentLibComponent.EXC_REFERENCE;\n this.takePayment = this.paymentLibComponent.TAKEPAYMENT;\n \n const serviceRequest = this.paymentLibComponent.SERVICEREQUEST;\n if ( serviceRequest !== undefined && serviceRequest.toString() === 'true' ) {\n this.serviceRequestValue = 'true';\n } else {\n this.serviceRequestValue = 'false';\n }\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n if (!this.isTurnOff) {\n // if (this.lsCcdNumber !== this.ccdCaseNumber) {\n // this.router.navigateByUrl(`/ccd-search?takePayment=true`);\n // }\n\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.isAnyFeeGroupAvilable =true;\n this.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts();\n this.calculateOrderFeesAmounts();\n this.calculateRefundAmount();\n if (this.isFromServiceRequestPage) {\n this.OrderslistService.getSelectedOrderRefId().subscribe((data) => this.orderRef = data);\n this.goToOrderViewDetailSection(this.orderRef);\n } else {\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).content[0];\n\n },\n (error: any) => {\n this.errorMessage = <any>error ? error.replace(/\"/g,\"\") : \"\";\n this.isCPODown = true;\n }\n );\n\n }\n\n\n },\n (error: any) => {\n this.errorMessage = <any>error ? error.replace(/\"/g,\"\") : \"\";\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n } else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.isAnyFeeGroupAvilable =true;\n this.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts();\n this.calculateOrderFeesAmounts();\n this.totalRefundAmount = this.calculateRefundAmount();\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).content[0];\n\n },\n (error: any) => {\n this.errorMessage = <any>error ? error.replace(/\"/g,\"\") : \"\";\n this.setDefaults();\n this.isCPODown = true;\n }\n );\n\n },\n (error: any) => {\n this.errorMessage = <any>error ? error.replace(/\"/g,\"\") : \"\";\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n }\n\n if( this.paymentGroups !== undefined) {\n this.checkForExceptionRecord();\n }\n\n if(this.OrderslistService.getisFromServiceRequestPages() !== null) {\n this.OrderslistService.getisFromServiceRequestPages().subscribe((data) => this.isFromServiceRequestPage = data);\n }\n\n }\n\n setDefaults(): void {\n this.totalPayments = 0.00;\n this.totalRemissions = 0.00;\n this.totalNonOffPayments = 0.00;\n this.totalFees = 0.00;\n }\n\n getAllocationStatus(payments: any) {\n\n let paymentAllocation = payments.payment_allocation,\n isAllocationStatusExist = paymentAllocation.length > 0;\n return isAllocationStatusExist ? paymentAllocation[0].allocation_status : '-';\n //return \"-\";\n\n }\n\n checkForExceptionRecord(): void {\n\n if (this.paymentGroups.length === 0 && (this.selectedOption.toLocaleLowerCase() === 'ccdorexception' || this.selectedOption.toLocaleLowerCase() === 'rc')) {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n recordData => {\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length > 0 && recordData['data'].ccd_reference > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length > 0 && recordData['data'].ccd_reference === undefined) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n }\n\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length === undefined && recordData['data'].ccd_reference > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n });\n }\n\n if (this.paymentGroups.length === 0 && this.selectedOption.toLocaleLowerCase() === 'dcn') {\n if (this.paymentLibComponent.CCD_CASE_NUMBER.length > 0 && this.paymentLibComponent.EXC_REFERENCE.length > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n } else if (this.paymentLibComponent.CCD_CASE_NUMBER.length === 0 && this.paymentLibComponent.EXC_REFERENCE.length > 0) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n } else {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n }\n if (this.paymentGroups.length > 0)\n this.paymentGroups.forEach(paymentGroup => {\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.case_reference !== undefined && payment.ccd_case_number === undefined) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n } else {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n\n });\n }\n });\n }\n\n calculateOrderFeesAmounts(): void {\n let feesTotal = 0.00;\n this.paymentGroups.forEach(paymentGroup => {\n this.resetOrderVariables();\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.orderFeesTotal = this.orderFeesTotal + fee.calculated_amount\n }\n )\n }\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n this.orderRemissionTotal = this.orderRemissionTotal + remission.hwf_amount;\n });\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n this.orderTotalPayments = this.orderTotalPayments + payment.amount;\n }\n });\n }\n\n // this.orderPendingPayments = (this.orderFeesTotal - this.orderRemissionTotal) - this.orderTotalPayments;\n if (paymentGroup.service_request_status === 'Paid') {\n this.orderStatus = paymentGroup.service_request_status;\n this.orderAddBtnEnable = false;\n } else if (paymentGroup.service_request_status === 'Partially paid' || paymentGroup.service_request_status === 'Not paid') {\n this.orderStatus = paymentGroup.service_request_status;\n this.orderAddBtnEnable = true;\n }\n\n //this.orderLevelFees.push({orderRefId:paymentGroup['payment_group_reference'],orderTotalFees: this.orderFeesTotal,orderStatus: this.orderStatus,orderParty:'Santosh', orderCCDEvent:'Case Creation',orderCreated: new Date(), orderAddBtnEnable: this.orderAddBtnEnable}); this.cpoDetails['createdTimestamp']\n if (this.cpoDetails !== null) {\n this.orderLevelFees.push({ orderRefId: paymentGroup['payment_group_reference'], orderTotalFees: this.orderFeesTotal, orderStatus: this.orderStatus, orderParty: this.cpoDetails['responsibleParty'], orderCCDEvent: this.cpoDetails['action'], orderCreated: paymentGroup['date_created'], orderAddBtnEnable: this.orderAddBtnEnable });\n\n } else {\n this.orderLevelFees.push({ orderRefId: paymentGroup['payment_group_reference'], orderTotalFees: this.orderFeesTotal, orderStatus: this.orderStatus, orderParty: '', orderCCDEvent: '', orderCreated: paymentGroup['date_created'], orderAddBtnEnable: this.orderAddBtnEnable });\n }\n\n if (this.orderStatus !== 'Paid') {\n this.OrderslistService.setOrdersList(this.orderLevelFees);\n }\n });\n };\n\n resetOrderVariables(): void {\n this.orderFeesTotal = 0.00;\n this.orderTotalPayments = 0.00;\n this.orderRemissionTotal = 0.00;\n this.orderPendingPayments = 0.00;\n this.isAddFeeBtnEnabled = true;\n\n };\n\n goToOrderViewDetailSection(orderReferenceObj: any) {\n if (this.isFromServiceRequestPage) {\n this.OrderslistService.setOrderRefId(orderReferenceObj);\n this.orderRef = orderReferenceObj;\n } else {\n this.OrderslistService.setOrderRefId(orderReferenceObj.orderRefId);\n this.orderRef = orderReferenceObj.orderRefId;\n }\n\n this.orderFeesTotal = 0.00;\n this.orderRemissionTotal = 0.00;\n this.orderTotalPayments = 0.00;\n this.orderPendingPayments = 0.00;\n\n this.orderDetail = this.paymentGroups.filter(x => x.payment_group_reference === this.orderRef);\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.fees) {\n orderDetail.fees.forEach(fee => {\n this.orderFeesTotal = this.orderFeesTotal + fee.calculated_amount;\n });\n }\n if (orderDetail.remissions) {\n orderDetail.remissions.forEach(remission => {\n this.orderRemissionTotal = this.orderRemissionTotal + remission.hwf_amount;\n });\n if (orderDetail.payments) {\n this.payment = orderDetail.payments[0];\n orderDetail.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n this.orderTotalPayments = this.orderTotalPayments + payment.amount;\n }\n });\n }\n }\n this.orderStatus = orderDetail.service_request_status;\n });\n //this.orderPendingPayments = (this.orderFeesTotal - this.orderRemissionTotal) - this.orderTotalPayments;\n // this.orderRef = orderReferenceObj.orderRefId;\n // if (this.orderPendingPayments <= 0.00) {\n // this.orderStatus = 'Paid';\n // } else if (this.orderFeesTotal > 0 && (this.orderTotalPayments > 0 || this.orderRemissionTotal > 0) && (this.orderTotalPayments < this.orderPendingPayments)) {\n // this.orderStatus = 'Partially paid'\n // } else {\n // this.orderStatus = 'Not paid'\n // }\n\n\n if (this.cpoDetails !== null) {\n this.orderParty = this.cpoDetails['responsibleParty'];\n this.orderCreated = this.cpoDetails['createdTimestamp'];\n this.orderCCDEvent = this.cpoDetails['action'];\n } else {\n this.orderParty = '';\n this.orderCCDEvent = '';\n this.orderCreated = orderReferenceObj.orderCreated;\n }\n this.viewStatus = 'order-full-view';\n }\n\n redirectToOrderFeeSearchPage(event: any, orderef: any) {\n if(orderef.orderAddBtnEnable) {\n event.preventDefault();\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = orderef.orderRefId;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n }\n\n\n\n\n calculateAmounts(): void {\n let feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00,\n nonOffLinePayment = 0.00;\n\n this.paymentGroups.forEach(paymentGroup => {\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n if (fee.date_created) {\n let a = fee.amount_due === undefined;\n let b = fee.amount_due <= 0;\n this.clAmountDue = a ? this.clAmountDue + fee.net_amount : b ? this.clAmountDue + 0 : this.clAmountDue + fee.amount_due;\n }\n fee['payment_group_reference'] = paymentGroup['payment_group_reference'];\n this.fees.push(fee);\n } else {\n feesTotal = feesTotal + fee.calculated_amount;\n this.fees.push(fee);\n }\n\n });\n }\n if (this.isTurnOff) {\n this.totalFees = feesTotal;\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n let allocationLen = payment.payment_allocation;\n\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n if (allocationLen.length === 0 || allocationLen.length > 0 && allocationLen[0].allocation_status === 'Allocated') {\n nonOffLinePayment = nonOffLinePayment + payment.amount;\n }\n if (allocationLen.length > 0) {\n this.nonPayments.push(payment);\n }\n }\n if (allocationLen.length === 0) {\n this.payments.push(payment);\n }\n payment.paymentGroupReference = paymentGroup.payment_group_reference\n this.allPayments.push(payment);\n } else {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n this.payments.push(payment);\n }\n payment.paymentGroupReference = paymentGroup.payment_group_reference\n this.allPayments.push(payment);\n }\n });\n }\n this.totalPayments = paymentsTotal;\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n this.totalNonOffPayments = nonOffLinePayment;\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remisison => {\n remissionsTotal = remissionsTotal + remisison.hwf_amount;\n this.remissions.push(remisison);\n });\n }\n this.totalRemissions = remissionsTotal;\n });\n\n }\n\n calculateRefundAmount() {\n if (!this.isTurnOff) {\n let isNewPaymentGroup = false;\n\n this.paymentGroups.forEach((paymentGroup, index) => {\n let grpOutstandingAmount = 0.00,\n feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00,\n fees = [];\n\n if (paymentGroup.fees) {\n // this.isFeeRecordsExist = true;\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n\n this.isRemissionsMatch = false;\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(rem => {\n if (rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n // if(!fees.find(k => k.code=fee.code))\n // {\n fees.push(fee);\n //}\n }\n });\n }\n if (!this.isRemissionsMatch) {\n fees.push(fee);\n }\n\n if (fee.date_created) {\n isNewPaymentGroup = true;\n } else {\n this.isHistoricGroupAvailable = true;\n this.paymentGroups[index]['old'] = true;\n }\n });\n this.paymentGroups[index].fees = fees;\n }\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n }\n grpOutstandingAmount = (feesTotal - remissionsTotal) - paymentsTotal;\n if (grpOutstandingAmount > 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = true;\n this.isFeeRecordsExist = true;\n this.paymentRef = paymentGroup.payment_group_reference;\n }\n if (paymentGroup.fees && paymentGroup.fees.length > 0 && grpOutstandingAmount <= 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = false;\n }\n });\n if ((!isNewPaymentGroup && this.isHistoricGroupAvailable) || (!isNewPaymentGroup && !this.isHistoricGroupAvailable)) {\n this.isAnyFeeGroupAvilable = false;\n }\n } else {\n let totalRefundAmount = 0,\n isFeeAmountZero = false;\n this.paymentGroups.forEach(paymentGroup => {\n let grpOutstandingAmount = 0.00,\n feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00;\n if (paymentGroup.fees) {\n this.isFeeRecordsExist = true;\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n if (fee.calculated_amount === 0) {\n isFeeAmountZero = true\n }\n });\n\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n }\n grpOutstandingAmount = (feesTotal - remissionsTotal) - paymentsTotal;\n if (grpOutstandingAmount < 0) {\n if (totalRefundAmount === 0) {\n totalRefundAmount = grpOutstandingAmount;\n } else {\n totalRefundAmount = (totalRefundAmount + grpOutstandingAmount);\n }\n }\n else if (grpOutstandingAmount > 0 || (grpOutstandingAmount === 0 && isFeeAmountZero)) {\n this.isGrpOutstandingAmtPositive = true;\n }\n });\n return totalRefundAmount * -1;\n }\n }\n\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n }\n\n redirectToFeeSearchPage(event: any) {\n event.preventDefault();\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url += `&caseType=${this.caseType}`\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}${url}`);\n }\n\n addRemission(fee: IFee) {\n if(this.chkForAddRemission(fee.code)) {\n this.feeId = fee;\n this.viewStatus = 'addremission';\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error? error.replace(/\"/g,\"\") : \"\"\n );\n }\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n this.viewStatus = 'addrefundforremission';\n\n this.payment = payment;\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.payment.reference));\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n\n redirectToremissionPage(event: any) {\n event.preventDefault();\n this.paymentLibComponent.viewName = 'remission'\n }\n goToServiceRequestPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = false;\n this.paymentLibComponent.SERVICEREQUEST = 'true';\n this.paymentLibComponent.isFromServiceRequestPage = true;\n window.location.reload();\n }\n redirectToReportsPage(event: any) {\n event.preventDefault();\n this.router.navigateByUrl(`/reports?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}`);\n }\n\n loadFeeSummaryPage(paymentGroup: IPaymentGroup) {\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.payment_group_reference;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n\n goToPaymentViewComponent(paymentGroup: any) {\n this.paymentLibComponent.paymentMethod = paymentGroup.paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentGroup.paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n\n goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent({ paymentGroupReference, paymentReference, paymentMethod });\n }\n\n selectedUnprocessedFeeEvent(unprocessedRecordId: string) {\n if (unprocessedRecordId) {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = false;\n }\n this.isUnprocessedRecordSelected = true;\n } else {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = true;\n }\n this.isUnprocessedRecordSelected = false;\n }\n }\n\n getUnprocessedFeeCount(unProcessedRecordCount: number) {\n this.unprocessedRecordCount = unProcessedRecordCount;\n }\n\n calculateAmountDue(fee: IFee) {\n\n if (fee.date_created) {\n return fee.amount_due !== undefined ? fee.amount_due : fee.net_amount;\n } else {\n return \"0.00\";\n }\n }\n\n confirmRemoveFee(fee: IFee) {\n this.isRemoveBtnDisabled = false;\n this.feeId = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n cancelRemoval() {\n this.viewStatus = 'main';\n }\n\n removeFee(fee: any) {\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n window.location.reload();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n\n issueRefund(payment: IPayment) {\n if (payment !== null && payment !== undefined) {\n if(this.chkIssueRefundBtnEnable(payment)) {\n this.viewStatus = 'issuerefund';\n this.payment = payment;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.isRefundRemission = true;\n }\n }\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund()) {\n if (this.orderDetail[0]['remissions'].length > 0) {\n for (const remission of this.orderDetail[0]['remissions']) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n }\n return true;\n } else {\n return false;\n }\n }\n\n chkForPBAPayment(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isPBA = true;\n }\n });\n }\n });\n if (this.isPBA) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n this.isIssueRefunfBtnEnable = true;\n }\n if (this.isIssueRefunfBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n check4AllowedRoles2AccessPBApayment = (): boolean => {\n return this.isEligible4PBAPayment.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n if (payment !== null && payment !== undefined) {\n let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\n }\n }\n\n loadPBAAccountPage(orderRef: IPayment) {\n this.paymentLibComponent.pbaPayOrderRef = orderRef;\n this.paymentLibComponent.viewName = 'pba-payment';\n }\n}\n","export class PaymentToPayhubRequest {\n currency = 'GBP';\n description = 'PayBubble payment';\n channel = 'telephony';\n provider = 'pci pal';\n case_type: string;\n\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.case_type= caseType;\n }\n}\n","export class PayhubAntennaRequest {\n currency = 'GBP';\n case_type: string;\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.case_type= caseType;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IFee } from '../../interfaces/IFee';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { PayhubAntennaRequest } from '../../interfaces/PayhubAntennaRequest';\nimport { SafeHtml } from '@angular/platform-browser';\nimport {Router} from '@angular/router';\nimport {Location} from '@angular/common';\nimport { OrderslistService } from '../../services/orderslist.service';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-fee-summary',\n templateUrl: './fee-summary.component.html',\n styleUrls: ['./fee-summary.component.scss']\n})\n\nexport class FeeSummaryComponent implements OnInit {\n @Input() paymentGroupRef: string;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: string;\n @Input() caseType: string;\n\n\n bsPaymentDcnNumber: string;\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n viewStatus = 'main';\n currentFee: IFee;\n totalFee: number;\n payhubHtml: SafeHtml;\n service: string = \"\";\n platForm: string = \"\";\n upPaymentErrorMessage: string;\n selectedOption:string;\n isBackButtonEnable: boolean = true;\n outStandingAmount: number;\n isFeeAmountZero: boolean = false;\n totalAfterRemission: number = 0;\n isConfirmationBtnDisabled: boolean = false;\n isRemoveBtnDisabled: boolean = false;\n isPaymentExist: boolean = false;\n isRemissionsExist: Boolean = false;\n isRemissionsMatch = false;\n isStrategicFixEnable: boolean;\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private location: Location,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private OrderslistService: OrderslistService\n ) {}\n\n ngOnInit() {\n this.viewStatus = 'main';\n this.caseType = this.paymentLibComponent.CASETYPE;\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.setCaseType(this.paymentLibComponent.CASETYPE);\n\n this.platForm = 'Antenna';\n\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n if (this.bsPaymentDcnNumber) {\n this.getUnassignedPaymentlist();\n }\n this.getPaymentGroup();\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.paymentLibComponent.DCN_NUMBER).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error';\n }\n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error';\n }\n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n }\n\n }\n\n getRemissionByFeeCode(feeCode: string): IRemission {\n if (this.paymentGroup && this.paymentGroup.remissions && this.paymentGroup.remissions.length > 0) {\n for (const remission of this.paymentGroup.remissions) {\n if (remission.fee_code === feeCode) {\n return remission;\n }\n }\n }\n return null;\n }\n\n addRemission(fee: IFee) {\n this.currentFee = fee;\n this.viewStatus = 'add_remission';\n }\n\n getPaymentGroup() {\n let fees = [];\n this.paymentViewService.getPaymentGroupDetails(this.paymentGroupRef).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n this.isPaymentExist = paymentGroup.payments ? paymentGroup.payments.length > 0 : false;\n this.isRemissionsExist = paymentGroup.remissions ? paymentGroup.remissions.length > 0 : false;\n\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.totalAfterRemission = this.totalAfterRemission + fee.net_amount;\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true;\n }\n this.isRemissionsMatch = false;\n paymentGroup.remissions.forEach(rem => {\n if(rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n\n if(!this.isRemissionsMatch) {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees;\n }\n\n this.outStandingAmount = this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n\n confirmRemoveFee(fee: IFee){\n this.isRemoveBtnDisabled = false;\n this.currentFee = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n removeFee(fee: any){\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n if (this.paymentGroup.fees && this.paymentGroup.fees.length > 1){\n this.totalAfterRemission = 0;\n this.getPaymentGroup();\n this.viewStatus = 'main';\n return;\n }\n this.loadCaseTransactionPage();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n loadCaseTransactionPage() {\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n\n let partUrl = `selectedOption=${this.paymentLibComponent.SELECTED_OPTION}`;\n partUrl +=this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n\n let url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=true&${partUrl}`;\n this.router.navigateByUrl(url);\n }\n cancelRemission() {\n this.viewStatus = 'main';\n }\n redirectToFeeSearchPage(event: any, page?: string) {\n event.preventDefault();\n let partUrl =this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n\n if(this.viewStatus === 'feeRemovalConfirmation' || this.viewStatus === 'add_remission') {\n this.viewStatus = 'main';\n return;\n }\n let url = `/fee-search?ccdCaseNumber=${this.ccdCaseNumber}&selectedOption=${this.paymentLibComponent.SELECTED_OPTION}&paymentGroupRef=${this.paymentGroupRef}${partUrl}`;\n this.router.navigateByUrl(url);\n }\n takePayment() {\n this.isConfirmationBtnDisabled = true;\n const requestBody = new PaymentToPayhubRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType),\n antennaReqBody = new PayhubAntennaRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType);\n\n if(this.platForm === 'Antenna') {\n\n this.paymentViewService.postPaymentAntennaToPayHub(antennaReqBody, this.paymentGroupRef).subscribe(\n response => {\n this.isBackButtonEnable=false;\n window.location.href = '/makePaymentByTelephoneyProvider';\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.router.navigateByUrl('/pci-pal-failure');\n }\n );\n }\n\n }\n\n goToAllocatePage(outStandingAmount: number, isFeeAmountZero: Boolean) {\n if (outStandingAmount > 0 || (outStandingAmount === 0 && isFeeAmountZero)) {\n this.paymentLibComponent.paymentGroupReference = this.paymentGroupRef;\n this.paymentLibComponent.viewName = 'allocate-payments';\n } else {\n this.loadCaseTransactionPage();\n }\n }\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\n\n\n\n@Component({\n selector: 'ccpay-error-banner',\n templateUrl: './error-banner.component.html',\n styleUrls: ['./error-banner.component.scss']\n})\n\nexport class ErrorBannerComponent implements OnInit {\n @Input('errorMessage') errorMessage;\n\n constructor(\n ) {}\n\n ngOnInit() {\n\n }\n}\n","\nexport class UnidentifiedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n unidentified_reason: string;\n\n constructor(payment_group_reference: string, payment_reference : string, unidentified_reason: any) {\n this.payment_allocation_status = {\n description: '',\n name: \"Unidentified\"\n };\n this.payment_group_reference = payment_group_reference ;\n this.payment_reference= payment_reference;\n this.unidentified_reason= unidentified_reason;\n\n }\n\n\n\n}\n","import { IBSPayments } from \"./IBSPayments\";\n\nexport class AllocatePaymentRequest {\n amount: Number;\n banked_date: String;\n ccd_case_number: String;\n exception_record: string;\n currency: String;\n document_control_number: String;\n external_provider: String;\n giro_slip_no: String;\n payer_name: String;\n payment_channel: Object;\n payment_status: Object;\n payment_method: String;\n case_type: String;\n payment_allocation_dto?: {\n allocation_reason: String,\n allocation_status: String,\n explanation: String,\n payment_allocation_status: Object,\n payment_group_reference: String,\n payment_reference: String,\n reason: String,\n receiving_office: String,\n unidentified_reason: String,\n user_id: String,\n user_name: String,\n case_type: String\n }\n\n constructor(ccd_case_number : string, unAllocatedPayment: IBSPayments, caseType: string, exceptionRecord: string, allocatedRequest?: any) {\n this.amount = unAllocatedPayment.amount;\n this.banked_date = unAllocatedPayment.date_banked;\n this.ccd_case_number = ccd_case_number;\n this.exception_record = exceptionRecord;\n this.currency= unAllocatedPayment.currency;\n this.document_control_number = unAllocatedPayment.dcn_reference;\n this.external_provider = 'exela';\n this.giro_slip_no = unAllocatedPayment.bgc_reference;\n this.payer_name = unAllocatedPayment.payer_name;\n this.payment_channel = {\n description: '',\n name: 'bulk scan'\n };\n this.payment_status ={\n description: 'bulk scan payment completed',\n name: 'success'\n }\n this.payment_method = unAllocatedPayment.payment_method;\n this.case_type= caseType;\n if(allocatedRequest) {\n this.payment_allocation_dto = allocatedRequest;\n }\n\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\n\n@Component({\n selector: 'app-mark-unidentified-payment',\n templateUrl: './mark-unidentified-payment.component.html',\n styleUrls: ['./mark-unidentified-payment.component.scss']\n})\nexport class MarkUnidentifiedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnidentifiedForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n isInvesticationDetailEmpty: boolean = false;\n investicationDetailHasError: boolean = false;\n investicationDetailMinHasError: boolean = false;\n investicationDetailMaxHasError: boolean = false;\n errorMessage = this.getErrorMessage(false);\n unassignedRecord:IBSPayments;\n siteID: string = null;\n investigationComment: string;\n isConfirmButtondisabled:Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n isStrategicFixEnable: boolean = true;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.markPaymentUnidentifiedForm = this.formBuilder.group({\n investicationDetail: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ]))\n });\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.getErrorMessage(false);\n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n saveAndContinue() {\n this.resetForm([false, false, false, false]);\n const investicationField = this.markPaymentUnidentifiedForm.controls.investicationDetail;\n const formerror = investicationField.errors;\n if (this.markPaymentUnidentifiedForm.dirty && this.markPaymentUnidentifiedForm.valid) {\n this.investigationComment = this.markPaymentUnidentifiedForm.controls.investicationDetail.value;\n this.viewStatus = 'unidentifiedContinueConfirm';\n }else {\n if(investicationField.value == '' ) {\n this.resetForm([true, false, false, false]);\n }\n if(investicationField.value != '' && investicationField.invalid ) {\n this.resetForm([false, true, false, false]);\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false, false, true, false]);\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, true]);\n }\n }\n }\n resetForm(val) {\n this.isInvesticationDetailEmpty = val[0];\n this.investicationDetailHasError = val[1];\n this.investicationDetailMinHasError = val[2];\n this.investicationDetailMaxHasError = val[3];\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const reason = this.markPaymentUnidentifiedForm.get('investicationDetail').value;\n\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Unidentified',\n payment_allocation_status: {\n description: '',\n name: 'Unidentified'\n },\n unidentified_reason: reason,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnidentifiedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, reason);\n if (response2.success) {\n this.paymentViewService.postBSUnidentifiedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n cancelMarkUnidentifiedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.markPaymentUnidentifiedForm.get('investicationDetail').value!==\"\"){\n this.viewStatus = 'unidentifiedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.viewStatus = 'mainForm';\n }\n }\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","\nexport class UnsolicitedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n receiving_office: string;\n receiving_email_address: string;\n sending_email_address: string;\n unidentified_reason: string;\n constructor(payment_group_reference: string, payment_reference : string, reason: string,responsible_office: string, responsible_person:string,email_id: string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Transferred\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.unidentified_reason= reason;\n this.receiving_office= responsible_office;\n this.receiving_email_address= email_id;\n this.sending_email_address= responsible_person;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\n\n\n@Component({\n selector: 'app-mark-unsolicited-payment',\n templateUrl: './mark-unsolicited-payment.component.html',\n styleUrls: ['./mark-unsolicited-payment.component.scss']\n})\nexport class MarkUnsolicitedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnsolicitedForm: FormGroup;\n viewStatus: string;\n reasonHasError: boolean = false;\n isReasonEmpty: boolean = false;\n reasonMinHasError: boolean = false;\n reasonMaxHasError: boolean = false;\n responsibleOfficeHasError: boolean = false;\n isResponsibleOfficeEmpty: boolean = false;\n errorMessage = this.getErrorMessage(false);\n ccdCaseNumber: string;\n bspaymentdcn: string;\n unassignedRecord: IBSPayments;\n siteID: string = null;\n reason: string;\n responsiblePerson: string;\n responsibleOffice: string;\n emailId: string;\n isConfirmButtondisabled: Boolean = false;\n isContinueButtondisabled: Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n selectedSiteId: string;\n selectedSiteName: string;\n isStrategicFixEnable: boolean = true;\n siteIDList;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.resetForm([false,false,false,false,false,false], 'all');\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.paymentViewService.getSiteID().subscribe(\n siteids => {\n this.isContinueButtondisabled = false;\n this.errorMessage = this.getErrorMessage(false);\n this.siteIDList = JSON.parse(siteids);\n },\n err => {\n window.scrollTo(0, 0);\n this.isContinueButtondisabled = true;\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n \n this.markPaymentUnsolicitedForm = this.formBuilder.group({\n reason: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n responsibleOffice: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s\\\\n,\\\\.-:]*)$')\n ])),\n responsiblePerson: new FormControl(''),\n emailId: new FormControl('')\n });\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const controls = this.markPaymentUnsolicitedForm.controls;\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Transferred',\n payment_allocation_status: {\n description: '',\n name: 'Transferred'\n },\n unidentified_reason: controls.reason.value,\n receiving_office: this.selectedSiteId,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n // controls.responsibleOffice.setValue('P219');\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const response1 = JSON.parse(res1),\n requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnsolicitedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, controls.reason.value, this.selectedSiteId, controls.responsiblePerson.value, controls.emailId.value);\n if (response2.success) {\n this.paymentViewService.postBSUnsolicitedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n saveAndContinue() {\n this.resetForm([false,false,false,false,false,false], 'all');\n const formerror = this.markPaymentUnsolicitedForm.controls.reason.errors;\n const reasonField = this.markPaymentUnsolicitedForm.controls.reason;\n //const officeIdField = this.selectedSiteId;\n const officeIdField = this.markPaymentUnsolicitedForm.controls.responsibleOffice;\n if (this.markPaymentUnsolicitedForm.dirty && this.markPaymentUnsolicitedForm.valid) {\n const controls = this.markPaymentUnsolicitedForm.controls;\n this.emailId = controls.emailId.value;\n this.responsibleOffice = officeIdField.value;\n this.responsiblePerson = controls.responsiblePerson.value;\n this.reason = controls.reason.value;\n this.viewStatus = 'unsolicitedContinueConfirm';\n }else {\n if( reasonField.value == '' ) {\n this.resetForm([true,false,false,false,false,false], 'reason');\n }\n if(reasonField.value != '' && this.markPaymentUnsolicitedForm.controls.reason.invalid ) {\n this.resetForm([false,true,false,false,false,false], 'reason');\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false,false,true,false,false,false], 'reason');\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false,false,false,true,false,false], 'reason');\n }\n if(officeIdField.value == '') {\n this.resetForm([false,false,false,false,true,false], 'responsibleOffice');\n }\n if(officeIdField.value != '' && officeIdField.invalid) {\n this.resetForm([false,false,false,false,false,true],'responsibleOffice');\n }\n }\n }\n resetForm(val, field) {\n if(field==='reason' || field==='all') {\n this.isReasonEmpty = val[0];\n this.reasonHasError = val[1];\n this.reasonMinHasError = val[2];\n this.reasonMaxHasError = val[3];\n }\n if(field==='responsibleOffice' || field==='all') {\n this.isResponsibleOfficeEmpty = val[4];\n this.responsibleOfficeHasError = val[5];\n }\n }\n\ncancelMarkUnsolicitedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.checkingFormValue()){\n this.viewStatus = 'unsolicitedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.markPaymentUnsolicitedForm.controls.responsibleOffice.setValue('');\n this.viewStatus = 'mainForm';\n }\n }\n checkingFormValue(){\n const formFields = this.markPaymentUnsolicitedForm.value;\n let valueExists = false;\n\n for (var field in formFields) {\n if (formFields.hasOwnProperty(field) && formFields[field] !==\"\") {\n valueExists = true;\n break;\n }\n }\n return valueExists;\n }\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n \n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n\n getErrorMessage(isErrorExist) {\n return {\n title: \"Something went wrong.\",\n body: \"Please try again later.\",\n showError: isErrorExist\n };\n }\n\n selectchange(args){ \n this.selectedSiteId = args.target.value; \n this.selectedSiteName = args.target.options[args.target.selectedIndex].text; \n } \n\n}\n","import { Component, OnInit, Output,Input, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport {Router} from '@angular/router';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-app-unprocessed-payments',\n templateUrl: './unprocessed-payments.component.html',\n styleUrls: ['./unprocessed-payments.component.scss']\n})\nexport class UnprocessedPaymentsComponent implements OnInit {\n\n @Input('FEE_RECORDS_EXISTS') FEE_RECORDS_EXISTS: boolean;\n @Input('PAYMENTREF') PAYMENTREF: string;\n @Input('ISTURNOFF') ISTURNOFF: boolean;\n @Input('IS_BUTTON_ENABLE') IS_BUTTON_ENABLE: boolean;\n @Input('IS_OS_AMT_AVAILABLE') IS_OS_AMT_AVAILABLE: boolean;\n @Input('ISSFENABLE') ISSFENABLE: boolean;\n @Input('PAYMENTSLENGTH') PAYMENTSLENGTH:Number;\n @Input('LEVEL')LEVEL:Number;\n\n @Output() selectedUnprocessedFeeEvent: EventEmitter<string> = new EventEmitter();\n @Output() getUnprocessedFeeCount: EventEmitter<string> = new EventEmitter();\n\n viewStatus = 'main';\n unassignedRecordList: IBSPayments;\n upPaymentErrorMessage: string = null;\n ccdCaseNumber: string;\n recordId: string = null;\n isRecordExist: boolean = false;\n dcnNumber: string = null;\n selectedOption: string;\n isUnprocessedRecordSelected: boolean = true;\n isAllocateToExistingFeebtnEnabled: boolean = false;\n isMarkAsUnidentifiedbtnEnabled: boolean = false;\n isAllocatedToNewFeebtnEnabled: boolean = false;\n isExceptionCase: boolean = false;\n serviceId: string = null;\n isBulkScanEnable;\n isTurnOff: boolean = true;\n isStFixEnable;\n unassignedRecordSelectedList: IBSPayments;\n unassignedRecordListLength: number = 0;\n showContent: boolean;\n\n constructor(private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private OrderslistService: OrderslistService\n ) { }\n\n ngOnInit() {\n // Todo ...\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isStFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.getFeeExists().subscribe( (data) => this.FEE_RECORDS_EXISTS = data);\n this.getUnassignedPaymentlist();\n\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.dcnNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n }\n\n }\n\n setValuesForUnassignedRecord(unassignedPayments) {\n\n this.unassignedRecordList = unassignedPayments.payments;\n if(this.unassignedRecordList){\n this.unassignedRecordListLength = unassignedPayments.payments.length\n }\n this.serviceId = unassignedPayments.responsible_service_id;\n if (unassignedPayments['ccd_reference'] === undefined) {\n this.isExceptionCase = true;\n }\n // this.isRecordExist = this.unassignedRecordList.length === 0;\n this.getUnprocessedFeeCount.emit(<any>this.unassignedRecordList.length);\n this.unprocessedPaymentSelectEvent(this.unassignedRecordList);\n }\n\n formatUnassignedRecordId(ID: Number) {\n return `unassignrecord-${ID}`;\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n\n redirectToFeeSearchPage(event: any, dcn_reference:any) {\n event.preventDefault();\n this.recordId = dcn_reference;\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}&dcn=${this.recordId}${url}`);\n }\n\n loadUnsolicitedPage(viewName: string, dcn_reference:any) {\n this.recordId = dcn_reference;\n this.paymentLibComponent.bspaymentdcn = this.recordId;\n this.paymentLibComponent.viewName = viewName;\n }\n\n unprocessedPaymentSelectEvent(selectedRecordReference: any) {\n this.isUnprocessedRecordSelected = true;\n this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit(selectedRecordReference);\n }\n\n resetButtons() {\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n }\n\n goToAllocatePage(dcn_reference:any) {\n this.paymentLibComponent.bspaymentdcn = dcn_reference;\n this.paymentLibComponent.unProcessedPaymentServiceId = this.serviceId\n this.paymentLibComponent.isTurnOff = this.ISTURNOFF;\n this.paymentLibComponent.ISSFENABLE = this.isStFixEnable;\n\n if(this.ISTURNOFF) {\n this.paymentLibComponent.paymentGroupReference = this.PAYMENTREF;\n this.paymentLibComponent.viewName = 'fee-summary';\n }else {\n this.paymentLibComponent.paymentGroupReference = null;\n this.paymentLibComponent.viewName = 'allocate-payments';\n }\n\n }\n\n validateButtons() {\n if ( this.isUnprocessedRecordSelected && this.isExceptionCase) {\n this.isMarkAsUnidentifiedbtnEnabled = true;\n } else if ( this.isUnprocessedRecordSelected && !this.isExceptionCase && !this.FEE_RECORDS_EXISTS) {\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = true;\n } else if( this.isUnprocessedRecordSelected && !this.isExceptionCase && this.FEE_RECORDS_EXISTS ) {\n if(!this.ISTURNOFF) {\n this.isAllocateToExistingFeebtnEnabled = true;\n this.isAllocatedToNewFeebtnEnabled = false;\n } else {\n this.isAllocateToExistingFeebtnEnabled = this.IS_OS_AMT_AVAILABLE;\n this.isAllocatedToNewFeebtnEnabled = true;\n }\n }\n }\n\n unprocessedPaymentUnSelectEvent(event: any) {\n event.preventDefault();\n this.recordId = null;\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n //this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit('');\n }\n\n showDetailRow(event: any,obj: any, i: any) {\n event.preventDefault();\n\n this.unassignedRecordSelectedList = obj;\n\n }\n}\n","import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport {IPayment} from '../../interfaces/IPayment';\nimport {Router} from '@angular/router';\n\n@Component({\n selector: 'ccpay-app-processed-payments',\n templateUrl: './processed-payments.component.html',\n styleUrls: ['./processed-payments.component.scss']\n})\nexport class ProcessedPaymentsComponent implements OnInit {\n\n @Input('NONPAYMENTS') NONPAYMENTS: IPayment[];\n @Output() goToPaymentViewComponent: EventEmitter<any> = new EventEmitter();\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService\n ) { }\n ngOnInit() {\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n redirectToPaymentViewPage(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent.emit({paymentGroupReference, paymentReference, paymentMethod});\n }\n}\n","\nexport class IAllocationPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n reason: string;\n explanation: string;\n user_name: string;\n constructor(payment_group_reference: string, payment_reference : string, reason? : string, explanation? : string, userName? : string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Allocated\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.reason = reason ? reason : null;\n this.explanation = explanation ? explanation : null;\n this.user_name = userName ? userName : null;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {CaseTransactionsService} from '../../services/case-transactions/case-transactions.service'; \nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport {IBSPayments} from '../../interfaces/IBSPayments';\nimport {AllocatePaymentRequest} from '../../interfaces/AllocatePaymentRequest';\nimport {IAllocationPaymentsRequest} from '../../interfaces/IAllocationPaymentsRequest';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n\n\n@Component({\n selector: 'app-allocate-payments',\n templateUrl: './allocate-payments.component.html',\n styleUrls: ['./allocate-payments.component.scss']\n})\nexport class AllocatePaymentsComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() caseType: string;\n\n overUnderPaymentForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n recordId:string;\n feedbackUrlLabel:string;\n unAllocatedPayment: IBSPayments = {\n amount: 0\n };\n siteID: string = null;\n errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n paymentGroup: IPaymentGroup;\n paymentGroups: IPaymentGroup[] = [];\t\n remainingAmount: number;\n isRemainingAmountGtZero: boolean;\n isMoreDetailsBoxHide: boolean = true;\n isRemainingAmountLtZero: boolean;\n afterFeeAllocateOutstanding: number;\n amountForAllocation: number;\n isConfirmButtondisabled: boolean = false;\n isContinueButtondisabled: boolean = true;\n otherPaymentExplanation: string = null;\n selectedOption: string = null;\n isFeeAmountZero: boolean = false;\t\n\n paymentReasonHasError: boolean = false;\n paymentExplanationHasError: boolean = false;\n isPaymentDetailsEmpty: boolean = false;\n isPaymentDetailsInvalid: boolean = false;\n paymentDetailsMinHasError: boolean = false;\n paymentDetailsMaxHasError: boolean = false;\n isUserNameEmpty: boolean = false;\n isUserNameInvalid: boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n paymentReason: string = null;\n paymentExplanation: string = null;\n userName: string = null;\n paymentSectionLabel: any;\n paymentRef: string = null;\n isStrategicFixEnable: boolean = true;\n orderLevelFees: IOrderReferenceFee[] = [];\n cookieUserName: string[] = [];\n enCookieUserName: any;\n userNameField: string = null;\n\n reasonList: { [key: string]: { [key: string]: string } }= {\n overPayment: {\n hwfReward: 'Help with Fees (HWF) awarded. Please include the HWF reference number in the explanatory note',\n wrongFee: 'Incorrect payment received',\n notIssueCase: 'Unable to issue case',\n otherDeduction: 'Other'\n },\n shortFall: {\n helpWithFee: 'Help with Fees (HWF) application declined',\n wrongFee: 'Incorrect payment received',\n other: 'Other'\n }\n }\n explanationList = {\n overPayment: {\n referRefund: 'Details in case notes. Refund due',\n noRefund: 'Details in case notes. No refund due',\n noCase: 'No case created. Refund due',\n other: 'Other'\n },\n shortFall: {\n holdCase: 'I have put a stop on the case and contacted the applicant requesting the balance of payment',\n heldCase: 'I have put a stop on the case. The applicant needs to be contacted to request the balance of payment',\n other: 'Other'\n }\n }\n\n refund = {\n reason: {\n duplicate: 'Duplicate payment',\n humanerror: 'Human error',\n caseWithdrawn: 'Case withdrawn',\n other: 'Other'\n }\n }\n\n\n constructor(\n private errorHandlerService: ErrorHandlerService,\n private caseTransactionsService: CaseTransactionsService,\n private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n if (this.paymentLibComponent.paymentGroupReference !== null) {\n this.viewStatus = 'allocatePaymentConfirmation';\n }\n \n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.paymentRef = this.paymentLibComponent.paymentGroupReference;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.isTurnOff = this.paymentLibComponent.isTurnOff;\n this.overUnderPaymentForm = this.formBuilder.group({\n moreDetails: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n userName: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s]*)$')\n ])),\n });\n this.OrderslistService.getOrdersList().subscribe( (data) =>\n this.orderLevelFees = data.filter(data => data.orderStatus !== 'Paid'));\n this.OrderslistService.getCaseType().subscribe( (data) => this.caseType = data);\n this.getUnassignedPayment();\n }\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n }\n\n getPaymentGroupDetails(){\n\n if(!this.isTurnOff){\n this.paymentViewService.getPaymentGroupDetails(this.paymentRef).subscribe(\n paymentGroup => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.paymentGroup = paymentGroup;\n this.saveAndContinue();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.paymentGroups = paymentGroups['payment_groups'].filter(paymentGroup => {\n paymentGroup.fees.forEach(fee => {\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true\n }\n });\n let fstCon = this.getGroupOutstandingAmount(<IPaymentGroup>paymentGroup),\n scndCn = fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero) && paymentGroup.payment_group_reference === this.paymentRef;\n return this.paymentRef ? scndCn : fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero);\n });\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }\n\n }\n\n selectedPaymentGroup(paymentGroup: IPaymentGroup) {\t\n this.isContinueButtondisabled = false;\t\n this.paymentGroup = paymentGroup;\t\n }\t\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n\n gotoSummaryPage(event: any) { \n event.preventDefault();\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n\n cancelAllocatePayment(event: any){\n event.preventDefault();\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n if(!this.isTurnOff){\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n } else {\n this.viewStatus = 'mainForm';\t\n }\n }\n confirmAllocatePayement(){\n this.enCookieUserName = document.cookie.split(\";\").find(row => row.includes(\"user-info\")).split(\"=\")[1].split(\";\");\n this.cookieUserName = JSON.parse(decodeURIComponent(this.enCookieUserName));\n \n const fullName = this.cookieUserName['forename'] + ' ' + this.cookieUserName['surname'];\n\n const paymentDetailsField = this.overUnderPaymentForm.controls.moreDetails,\n paymentFormError = this.overUnderPaymentForm.controls.moreDetails.errors,\n userNameField = fullName,\n isEmptyCondtion = this.paymentReason && this.paymentExplanation,\n isOtherOptionSelected = this.paymentExplanation === 'Other';\n\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n if ( (!this.isRemainingAmountGtZero && !this.isRemainingAmountLtZero) || isEmptyCondtion && (!isOtherOptionSelected && userNameField.length > 0 || isOtherOptionSelected && userNameField.length > 0 && paymentDetailsField.valid)) {\n this.isConfirmButtondisabled = true;\n this.otherPaymentExplanation = this.paymentExplanation === 'Other' ? paymentDetailsField.value : this.paymentExplanation;\n this.userName = userNameField;\n this.finalServiceCall();\n }else {\n if(!this.paymentReason) {\n this.resetForm([true, false, false, false, false, false, false, false], 'reason');\n }\n if(!this.paymentExplanation) {\n this.resetForm([false, true, false, false, false, false, false, false], 'explanation');\n }\n if(this.paymentExplanation && isOtherOptionSelected) {\n if(paymentDetailsField.value == '' ) {\n this.resetForm([false, false, true, false, false, false, false, false], 'other');\n }\n if(paymentDetailsField.value != '' && paymentDetailsField.invalid ) {\n this.resetForm([false, false, false, true, false, false, false, false], 'other');\n }\n if(paymentFormError && paymentFormError.minlength && paymentFormError.minlength.actualLength < 3 ) {\n this.resetForm([false, false, false, false, true, false, false, false], 'other');\n }\n if(paymentFormError && paymentFormError.maxlength && paymentFormError.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, false, false, true, false, false], 'other');\n }\n }\n if(userNameField.length === 0) {\n this.resetForm([false, false, false, false, false, false, true, false], 'username');\n }\n }\n }\n resetForm(vals, field) {\n if(field==='reason' || field==='all') {\n this.paymentReasonHasError = vals[0];\n }\n if(field==='explanation' || field==='all') {\n this.paymentExplanationHasError = vals[1];\n }\n if(field==='other' || field==='all') {\n this.isPaymentDetailsEmpty = vals[2];\n this.isPaymentDetailsInvalid = vals[3];\n this.paymentDetailsMinHasError = vals[4];\n this.paymentDetailsMaxHasError = vals[5];\n }\n if(field==='username' || field==='all') {\n this.isUserNameEmpty = vals[6];\n this.isUserNameInvalid = vals[7];\n }\n }\n finalServiceCall() {\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n reason: this.paymentReason,\n allocation_status:'Allocated',\n explanation: this.otherPaymentExplanation,\n payment_allocation_status: {\n description: '',\n name: 'Allocated'\n },\n payment_group_reference: this.paymentGroup.payment_group_reference,\n case_type: this.caseType,\n user_name: this.userName\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unAllocatedPayment, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSPaymentStrategic(postStrategicBody , this.paymentGroup.payment_group_reference).subscribe(\n res => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n });\n\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response1 = JSON.parse(res1);\n if (response1.success) {\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unAllocatedPayment, this.siteID, this.exceptionReference);\n this.bulkScaningPaymentService.postBSAllocatePayment(requestBody, this.paymentGroup.payment_group_reference).subscribe(\n res2 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response2 = JSON.parse(res2);\n const reqBody = new IAllocationPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, this.paymentReason, this.otherPaymentExplanation, this.userName);\n if (response2.success) {\n this.paymentViewService.postBSAllocationPayments(reqBody).subscribe(\n \n res3 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n ); \n }\n }\n\n saveAndContinue(){\n if(this.paymentGroup) {\n this.isMoreDetailsBoxHide = true;\n this.overUnderPaymentForm.get('moreDetails').reset();\n this.overUnderPaymentForm.get('moreDetails').setValue('');\n this.overUnderPaymentForm.get('userName').reset();\n this.overUnderPaymentForm.get('userName').setValue('');\n this.paymentReason = '';\n this.paymentExplanation = '';\n let GroupOutstandingAmount = this.getGroupOutstandingAmount(this.paymentGroup);\n const remainingToBeAssigned = this.unAllocatedPayment.amount - GroupOutstandingAmount;\n this.isRemainingAmountGtZero = remainingToBeAssigned > 0;\n this.isRemainingAmountLtZero = remainingToBeAssigned < 0;\n this.paymentSectionLabel = this.isRemainingAmountGtZero ? { \n title: 'There is an Over payment of',\n reason: 'Provide a reason. This will be used in the Refund process.',\n }: this.isRemainingAmountLtZero ? { \n title: 'There is an Under payment of',\n reason: 'Provide a reason',\n }: { \n title:'Amount left to be allocated',\n reason:'',\n };\n this.feedbackUrlLabel = this.isRemainingAmountGtZero ? 'CONFIRMALLOCATION_SURPLUS' : this.isRemainingAmountLtZero ? 'CONFIRMALLOCATION_SHORTFALL' : 'CONFIRMALLOCATION';\n this.remainingAmount = this.isRemainingAmountGtZero ? remainingToBeAssigned : this.isRemainingAmountLtZero ? remainingToBeAssigned * -1 : 0;\n this.afterFeeAllocateOutstanding = remainingToBeAssigned >= 0 ? 0 : (remainingToBeAssigned * -1);\n this.amountForAllocation = GroupOutstandingAmount >= this.unAllocatedPayment.amount ? this.unAllocatedPayment.amount : GroupOutstandingAmount;\n if(this.isTurnOff){\n this.viewStatus = 'allocatePaymentConfirmation';\t\n }\n }\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.unAllocatedPayment = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n this.getPaymentGroupDetails();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }\n selectRadioButton(key, type) {\n this.isMoreDetailsBoxHide = true;\n if( type === 'explanation' && key === 'other' ){\n this.isPaymentDetailsEmpty = false;\n this.isPaymentDetailsInvalid = false;\n this.paymentDetailsMinHasError = false;\n this.paymentDetailsMaxHasError = false;\n this.isMoreDetailsBoxHide = false;\n }\n }\n OrderListSelectEvent(orderef: any){\n this.isContinueButtondisabled = false;\n this.recordId= orderef;\n }\n\n redirectToOrderFeeSearchPage() {\n // this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = this.recordId;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n}\n}\n","import { IFee } from './IFee';\n\nexport class AddRemissionRequest {\n beneficiary_name: string;\n ccd_case_number: string;\n fee: IFee;\n hwf_amount: number;\n hwf_reference: string;\n payment_group_reference: string;\n case_type: string;\n\n constructor(ccd_case_number: string, fee: IFee, hwf_amount: number, hwf_reference: string, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.fee = fee;\n this.hwf_amount = hwf_amount;\n this.hwf_reference = hwf_reference;\n this.case_type = caseType;\n }\n}\n","export class AddRetroRemissionRequest {\n hwf_amount: number;\n hwf_reference: string;\n\n constructor(hwf_amount: number, hwf_reference: string) {\n this.hwf_amount = hwf_amount;\n this.hwf_reference = hwf_reference;\n }\n}\n","export class PostRefundRetroRemission {\n payment_reference: string;\n refund_reason: string;\n \n constructor(payment_reference : string, refund_reason : string) {\n this.payment_reference= payment_reference;\n this.refund_reason = refund_reason;\n } \n}","export class PostIssueRefundRetroRemission {\n remissionReference: string;\n \n constructor(remissionReference : string) {\n this.remissionReference= remissionReference;\n } \n}","import { Component, OnInit, Input, Output, EventEmitter} from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl, RequiredValidator } from '@angular/forms';\nimport { IFee } from '../../interfaces/IFee';\nimport {Router} from '@angular/router';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { RefundsRequest } from '../../interfaces/RefundsRequest';\nimport { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';\nimport { IssueRefundRequest } from '../../interfaces/IssueRefundRequest';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\nimport { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';\nimport {ChangeDetectorRef} from '@angular/core';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { OrderslistService } from '../../services/orderslist.service';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-add-remission',\n templateUrl: './add-remission.component.html',\n styleUrls: ['./add-remission.component.scss']\n})\nexport class AddRemissionComponent implements OnInit {\n @Input() fee: IFee;\n @Input() payment: IPayment;\n @Input() remission: IRemission;\n @Input() ccdCaseNumber: string;\n @Input() caseType: string;\n @Input() viewCompStatus: string;\n @Input() paymentGroupRef: string;\n @Input() isTurnOff: boolean;\n @Input() isRefundRemission: boolean;\n @Input() isStrategicFixEnable: boolean;\n @Input() paidAmount: any;\n @Input() isFromRefundListPage: boolean;\n @Input() isFromPaymentDetailPage: boolean;\n @Input() isFromServiceRequestPage: boolean;\n @Input() feeamount: number;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input('orderDetail') orderDetail: any[];\n @Input('orderRef') orderRef: string;\n @Input('orderStatus') orderStatus: string;\n @Input('orderParty') orderParty: string;\n @Input('orderCreated') orderCreated: Date;\n @Input('orderCCDEvent') orderCCDEvent: string;\n @Input('takepayment') takePayment: boolean;\n @Input('orderFeesTotal') orderFeesTotal: number;\n @Input('orderTotalPayments') orderTotalPayments: number;\n @Input('orderRemissionTotal') orderRemissionTotal: number;\n @Output() cancelRemission: EventEmitter<void> = new EventEmitter();\n //@Output() refundListReason: EventEmitter<any> = new EventEmitter({reason:string, code:string});\n @Output() refundListReason = new EventEmitter<{reason: string, code: string}>();\n @Output() refundListAmount: EventEmitter<string> = new EventEmitter();\n\n refund = {\n reason: {\n duplicate: 'Duplicate payment',\n humanerror: 'Human error',\n caseWithdrawn: 'Case withdrawn',\n other: 'Other'\n }\n }\n\n remissionForm: FormGroup;\n hasErrors = false;\n viewStatus = 'main';\n errorMessage = null;\n option: string = null;\n isConfirmationBtnDisabled: boolean = false;\n bsPaymentDcnNumber: string;\n selectedValue = 'yes';\n amount: any;\n retroRemission: boolean = false;\n remissionReference: string = '';\n refundReference: string;\n refundAmount: string;\n paymentExplanationHasError: boolean = false;\n refundReason:string;\n selectedRefundReason: string;\n displayRefundReason: string;\n refundCode:string;\n remessionPayment:IPayment;\n isRemissionCodeEmpty: boolean = false;\n remissionCodeHasError: boolean = false;\n isAmountEmpty: boolean = false;\n isReasonEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n refundHasError:boolean = false;\n isPaymentSuccess: boolean = false;\n isRemissionApplied: boolean = false;\n remissionamt:number;\n // refundReasons: any[] = [];\n commonRefundReasons: any[] = [];\n showReasonText: boolean;\n isRefundReasonsSelected: boolean;\n default: string;\n reasonLength: number;\n refundReasons:IRefundReasons[];\n pattern1: string;\n pattern2: string;\n sendOrderDetail: any[];\n sendOrderRef: string;\n component: { account_number: string; amount: number; case_reference: string; ccd_case_number: string; channel: string; currency: string; customer_reference: string; date_created: string; date_updated: string; description: string; method: string; organisation_name: string; payment_allocation: any[]; reference: string; service_name: string; site_id: string; status: string; };\n\n constructor(private formBuilder: FormBuilder,\n private router: Router,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private refundService: RefundsService,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.default = 'Select a different reason';\n this.pattern1 = '^([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})$';\n this.pattern2 = '^([A-Za-z]{2}[0-9]{2})-([0-9]{6})$';\n if(this.viewCompStatus !== '' && this.viewCompStatus !== undefined){\n this.viewStatus = '';\n }\n if(this.remission) {\n }\n if(this.fee) {\n this.amount = (this.fee.volume * this.fee.calculated_amount);\n }\n if (this.payment){\n this.remessionPayment = this.payment;\n if(this.payment.status === 'Success') {\n this.isPaymentSuccess = true;\n }\n }\n this.option = this.paymentLibComponent.SELECTED_OPTION;\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.remissionForm = this.formBuilder.group({\n remissionCode: new FormControl('',\n Validators.compose([\n Validators.required,\n Validators.pattern(`(${this.pattern1})|(${this.pattern2})`)\n ])\n ),\n amount: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[0-9]+(\\.[0-9]{1,2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n refundDDReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl()\n });\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundDDReason'].setValue('Select a different reason', {onlySelf: true});\n\n if(this.viewCompStatus === ''){\n this.viewStatus = 'main';\n }\n\n if(this.viewCompStatus === 'issuerefund'){\n this.refundService.getRefundReasons().subscribe(\n refundReasons => {\n this.refundReasons = refundReasons.filter((data) => data.recently_used === false);\n this.refundReasons = this.refundReasons.filter((data) => data.name !== 'Retrospective remission');\n this.cd.detectChanges();\n this.commonRefundReasons = refundReasons.filter((data) => data.recently_used === true);\n this.commonRefundReasons.sort((a, b) => a.toString().localeCompare(b));\n this.cd.detectChanges();\n } );\n }\n\n if(this.viewCompStatus === 'processretroremissonpage' && this.isFromRefundListPage){\n this.viewStatus = 'processretroremissonpage';\n }\n\n }\n\n addRemission() {\n this.resetRemissionForm([false, false, false, false, false, false], 'All');\n const remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount > remissionctrls.amount.value;\n this.remissionForm.controls['refundReason'].setErrors(null);\n this.remissionForm.controls['refundDDReason'].setErrors(null);\n if (this.remissionForm.dirty && this.remissionForm.valid && isRemissionLessThanFee) {\n this.viewStatus = 'confirmation';\n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false, false], 'amount');\n }\n if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true, false], 'amount');\n }\n }\n }\n\n confirmRemission() {\n this.isConfirmationBtnDisabled = true;\n const newNetAmount = this.remissionForm.controls.amount.value,\n remissionAmount = this.fee.net_amount - newNetAmount,\n requestBody = new AddRemissionRequest\n (this.ccdCaseNumber, this.fee, remissionAmount, this.remissionForm.controls.remissionCode.value, this.caseType);\n this.paymentViewService.postPaymentGroupWithRemissions(decodeURIComponent(this.paymentGroupRef).trim(), this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response).success) {\n let LDUrl = this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable'\n LDUrl += `&caseType=${this.caseType}`\n if (this.paymentLibComponent.bspaymentdcn) {\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(`/payment-history/${this.ccdCaseNumber}?view=fee-summary&selectedOption=${this.option}&paymentGroupRef=${this.paymentGroupRef}&dcn=${this.paymentLibComponent.bspaymentdcn}${LDUrl}`);\n }else {\n this.gotoCasetransationPage();\n }\n\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n }\n );\n }\n\n resetRemissionForm(val, field){\n if (field==='All'){\n this.isRemissionCodeEmpty = val[0];\n this.remissionCodeHasError = val[1];\n this.isAmountEmpty = val[2];\n this.amountHasError = val[3];\n this.isRemissionLessThanFeeError = val[4];\n this.isReasonEmpty = val[5];\n } else if(field==='remissionCode' || field==='All') {\n this.isRemissionCodeEmpty = val[0];\n this.remissionCodeHasError = val[1];\n } else if (field==='amount' || field==='All'){\n this.isAmountEmpty = val[2];\n this.amountHasError = val[3];\n this.isRemissionLessThanFeeError = val[4];\n } else if (field==='reason' || field==='All'){\n this.isReasonEmpty = val[5];\n }\n }\n\n // Add retro remission changes\n addRemissionCode() {\n this.errorMessage = false;\n this.viewStatus = '';\n this.isRefundRemission = false;\n this.resetRemissionForm([false, false, false, false, false, false], 'All');\n const remissionctrls=this.remissionForm.controls\n // isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value;\n this.remissionForm.controls['refundReason'].setErrors(null);\n this.remissionForm.controls['refundDDReason'].setErrors(null);\n this.remissionForm.controls['amount'].setErrors(null);\n if (this.remissionForm.dirty && this.remissionForm.valid ) {\n this.viewCompStatus = '';\n this.viewStatus = \"processretroremissonpage\";\n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false], 'amount');\n }\n if(remissionctrls['reason'].value == '') {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n }\n if(remissionctrls.amount.valid){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n }\n\n }\n }\n\n\n gotoAddRetroRemissionCodePage() {\n this.errorMessage = false;\n if(this.isRefundRemission) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListAmount.emit();\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n }\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n }\n this.viewStatus = '';\n this.selectedValue = 'yes';\n this.viewCompStatus = \"addremission\";\n this.isRefundRemission = true;\n this.errorMessage = '';\n if(this.isFromPaymentDetailPage) {\n this.paymentLibComponent.viewName = 'payment-view';\n }\n }\n\n gotoCheckRetroRemissionPage(payment: IPayment) {\n this.paymentLibComponent.iscancelClicked = false;\n this.errorMessage = '';\n this.resetRemissionForm([false, false, false, false, false], 'All');\n if( !this.isRefundRemission) {\n var remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value;\n if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' || remissionctrls['amount'].value < 0) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, false, false, true, false], 'amount');\n } else if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n }\n }\n } else {\n var remissionctrls=this.remissionForm.controls;\n //if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' || remissionctrls['amount'].value < 0 ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n this.refundListAmount.emit(remissionctrls['amount'].value);\n }\n //}\n\n }\n }\n\n gotoProcessRetroRemissionPage() {\n this.viewStatus = '';\n this.viewCompStatus = 'addremission';\n this.isRefundRemission = true;\n this.errorMessage = '';\n }\n\n confirmRetroRemission() {\n if(!this.isConfirmationBtnDisabled) {\n this.retroRemission = true;\n this.remissionamt = this.remissionForm.controls.amount.value;\n const requestBody = new AddRetroRemissionRequest(this.remissionamt,this.remissionForm.controls.remissionCode.value )\n this.paymentViewService.postPaymentGroupWithRetroRemissions(decodeURIComponent(this.paymentGroupRef).trim(), this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.isRemissionApplied = true;\n this.viewCompStatus = '';\n this.viewStatus = 'retroremissionconfirmationpage';\n this.remissionReference =JSON.parse(response).remission_reference;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n }\n );\n }\n }\n\n processRefund() {\n this.errorMessage = '';\n this.isConfirmationBtnDisabled = true;\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n if (this.remissionReference === undefined || this.remissionReference === '') {\n this.remissionReference = this.remission.remission_reference;\n }\n const requestBody = new PostIssueRefundRetroRemission(this.remissionReference);\n this.paymentViewService.postRefundRetroRemission(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n })\n }\n\n // Issue Refund changes\n\n gotoIssueRefundConfirmation(payment: IPayment) {\n this.paymentLibComponent.iscancelClicked = false;\n if(this.paymentLibComponent.REFUNDLIST === \"true\") {\n this.isFromRefundListPage = true;\n }\n this.errorMessage = '';\n this.refundReason = this.remissionForm.controls['refundReason'].value === null ? this.remissionForm.controls['refundDDReason'].value : this.remissionForm.controls['refundReason'].value;\n if(!this.refundReason || this.refundReason === 'Select a different reason') {\n this.refundHasError = true;\n } else if(this.selectedRefundReason.includes('Other') && (this.remissionForm.controls['reason'].value == '' || this.remissionForm.controls['reason'].value == null)) {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n } else if (this.selectedRefundReason.includes('Other') && this.remissionForm.controls['reason'].value !== '') {\n this.refundHasError = false;\n this.refundReason += '-' + this.remissionForm.controls['reason'].value;\n this.displayRefundReason = this.selectedRefundReason + '-' + this.remissionForm.controls['reason'].value;\n if ( this.isFromRefundListPage ) {\n this.refundListReason.emit({reason: this.displayRefundReason, code: this.refundReason});\n } else {\n this.viewCompStatus = '';\n this.viewStatus = 'checkissuerefundpage';\n }\n\n } else {\n this.displayRefundReason = this.selectedRefundReason;\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n } else {\n this.viewCompStatus = '';\n this.viewStatus = 'checkissuerefundpage';\n }\n\n }\n }\n\n gotoIssueRefundPage() {\n this.errorMessage = '';\n this.viewCompStatus = 'issuerefund';\n this.viewStatus = '';\n this.isRefundRemission = true;\n this.errorMessage = false;\n this.refundHasError = false;\n this.isReasonEmpty = false;\n }\n\n changeIssueRefundReason() {\n // this.remissionForm.controls['refundReason'].setValue('Duplicate payment');\n this.errorMessage = '';\n this.refundHasError = false;\n this.isReasonEmpty = false;\n this.viewCompStatus = 'issuerefund';\n this.viewStatus = '';\n this.isRefundRemission = true;\n }\n\n confirmIssueRefund() {\n this.isConfirmationBtnDisabled = true;\n this.errorMessage = '';\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n\n const requestBody = new PostRefundRetroRemission(this.payment.reference,this.refundReason);\n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference =JSON.parse(response).refund_reference;\n if(JSON.parse(response).refund_amount) {\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n })\n }\n\n// Retro Refund\n\n confirmRetroRefund() {\n this.isConfirmationBtnDisabled = true;\n this.errorMessage = '';\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n\n const requestBody = new PostRefundRetroRemission(this.payment.reference,'RR004-Retrospective remission');\n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'retrorefundconfirmationpage';\n this.refundReference =JSON.parse(response).refund_reference;\n if(JSON.parse(response).refund_amount) {\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n });\n }\n\n selectRadioButton(key, value) {\n localStorage.setItem(\"myradio\", key);\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundDDReason'].setValue('Select a different reason', {onlySelf: true});\n remissionctrls['reason'].reset();\n this.isRefundReasonsSelected = true;\n this.errorMessage = false;\n this.isReasonEmpty = false;\n this.showReasonText = false;\n this.refundHasError = false;\n this.selectedRefundReason = key;\n if(this.selectedRefundReason.includes('Other')) {\n this.showReasonText = true;\n this.refundHasError = false;\n this.refundReason = key;\n }\n }\n\n selectchange(args) {\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundReason'].reset();\n remissionctrls['reason'].reset();\n this.isRefundReasonsSelected = false;\n this.showReasonText = false;\n this.refundHasError = false;\n this.selectedRefundReason = args.target.options[args.target.options.selectedIndex].id;\n this.reasonLength = (29-this.selectedRefundReason.split('- ')[1].length);\n\n if(this.selectedRefundReason.includes('Other')) {\n this.showReasonText = true;\n this.refundHasError = false;\n this.refundReason = args.target.options[args.target.options.selectedIndex].id;\n }\n\n\n }\n\n gotoServiceRequestPage(event: any) {\n this.errorMessage ='';\n event.preventDefault();\n if (this.isFromServiceRequestPage && !this.isFromPaymentDetailPage) {\n this.viewStatus = 'order-full-view';\n this.viewCompStatus = '';\n } else if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n } else {\n this.paymentLibComponent.paymentMethod = this.payment.method;\n this.paymentLibComponent.paymentGroupReference = this.paymentLibComponent.paymentGroupReference\n this.paymentLibComponent.paymentReference = this.payment.reference;\n this.paymentLibComponent.viewName = 'payment-view';\n this.OrderslistService.setOrderRef(this.orderRef);\n this.OrderslistService.setorderCCDEvent(this.orderCCDEvent);\n this.OrderslistService.setorderCreated(this.orderCreated);\n this.OrderslistService.setorderDetail(this.orderDetail);\n this.OrderslistService.setorderParty(this.orderParty);\n this.OrderslistService.setorderTotalPayments(this.orderTotalPayments);\n this.OrderslistService.setorderRemissionTotal(this.orderRemissionTotal);\n this.OrderslistService.setorderFeesTotal(this.orderFeesTotal);\n this.viewStatus = 'payment-view';\n this.sendOrderDetail = this.orderDetail;\n this.sendOrderRef = this.orderRef;\n if(this.LOGGEDINUSERROLES === undefined) {\n this.OrderslistService.getUserRolesList().subscribe((data) => this.LOGGEDINUSERROLES = data);\n }\n this.viewCompStatus = '';\n }\n // if (this.paymentLibComponent.TAKEPAYMENT === undefined && this.paymentLibComponent.SERVICEREQUEST === undefined) {\n // this.paymentLibComponent.SERVICEREQUEST = 'false';\n // this.paymentLibComponent.TAKEPAYMENT = false;\n // }\n // if (this.isFromServiceRequestPage) {\n // //this.paymentLibComponent.TAKEPAYMENT = false;\n // this.paymentLibComponent.isFromRefundStatusPage = false;\n // this.viewStatus = 'main'\n // this.paymentLibComponent.viewName = 'case-transactions';\n // this.OrderslistService.setisFromServiceRequestPage(true);\n // this.OrderslistService.setnavigationPage('servicerequestpage');\n // }\n // if ( this.isFromRefundListPage ) {\n // this.paymentLibComponent.iscancelClicked = true;\n // this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n // this.paymentLibComponent.isFromRefundStatusPage = true;\n // }\n // if(!this.paymentLibComponent.isFromRefundStatusPage) {\n // if(this.payment) {\n // this.OrderslistService.setpaymentPageView({method: this.payment.method,payment_group_reference: this.paymentGroupRef, reference:this.payment.reference});\n // }\n // if (this.isFromServiceRequestPage) {\n // this.OrderslistService.setnavigationPage('servicerequestpage');\n // } else {\n // this.OrderslistService.setnavigationPage('paymentdetailspage');\n // }\n // this.errorMessage = '';\n // this.paymentLibComponent.viewName = 'case-transactions';\n // // this.paymentLibComponent.TAKEPAYMENT = true;\n // this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n\n // this.paymentLibComponent.isFromServiceRequestPage = true;\n // this.paymentLibComponent.ISBSENABLE = true;\n // let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n // partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n // partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n // partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n // partUrl += `&caseType=${this.caseType}`;\n // if(this.isFromPaymentDetailPage) {\n // partUrl += this.paymentLibComponent.isFromPaymentDetailPage\n // }\n // if(!this.paymentLibComponent.TAKEPAYMENT) {\n // this.paymentLibComponent.TAKEPAYMENT = undefined;\n // }\n // if ( this.paymentLibComponent.SERVICEREQUEST) {\n // const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&selectedOption=${this.option}${partUrl}`;\n // this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n // this.router.onSameUrlNavigation = 'reload';\n // this.router.navigateByUrl(url);\n // } else {\n // const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n // this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n // this.router.onSameUrlNavigation = 'reload';\n // this.router.navigateByUrl(url);\n // }\n\n // } else {\n // this.paymentLibComponent.viewName === 'refundstatuslist';\n // this.paymentLibComponent.isFromRefundStatusPage = true;\n // }\n }\n\n gotoCasetransationPage() {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.errorMessage = '';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.VIEW = 'case-transactions';\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.resetOrderData();\n let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n\n gotoCasetransationPageCancelBtnClicked(event: Event) {\n event.preventDefault();\n if( !this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.VIEW ='case-transactions';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n // this.OrderslistService.setnavigationPage('casetransactions');\n // this.OrderslistService.setisFromServiceRequestPage(false);\n // this.paymentLibComponent.VIEW ='case-transactions';\n // this.paymentLibComponent.viewName = 'case-transactions';\n // this.paymentLibComponent.ISBSENABLE = true;\n // this.paymentLibComponent.isRefundStatusView = false;\n // this.resetOrderData(); let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n // partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n // partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n // partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n // partUrl += `&caseType=${this.caseType}`;\n // const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n // this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n // this.router.onSameUrlNavigation = 'reload';\n // this.router.navigateByUrl(url);\n } else {\n\n if (this.paymentLibComponent.REFUNDLIST) {\n this.paymentLibComponent.viewName = 'refund-list';\n return;\n }\n if (this.paymentLibComponent.TAKEPAYMENT === undefined && this.paymentLibComponent.SERVICEREQUEST === undefined) {\n this.paymentLibComponent.SERVICEREQUEST = 'false';\n }\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.OrderslistService.setpaymentPageView({method: '',payment_group_reference: '', reference:''});\n this.OrderslistService.setnavigationPage('casetransactions');\n this.errorMessage = '';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.paymentLibComponent.ISBSENABLE = true;\n let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n if(this.isFromPaymentDetailPage) {\n partUrl += this.paymentLibComponent.isFromPaymentDetailPage\n }\n\n if(!this.paymentLibComponent.SERVICEREQUEST) {\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n } else {\n const url =`/payment-history/${this.ccdCaseNumber}?selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n }\n\n }\n\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n\n\n getFormattedCurrency(currency:number){\n if(currency.toString().includes(\".\")){\n return currency\n }\n return currency.toString().concat(\".00\");\n }\n\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'ccdHyphens'\n})\nexport class CcdHyphensPipe implements PipeTransform {\n constructor() {}\n transform(value: any, args?: any): any {\n const pattern = /^([0-9]{4})+([0-9]{4})+([0-9]{4})+([0-9]{4})$/;\n if ( value.match(pattern)) {\n return value.replace(pattern,'$1-$2-$3-$4') \n }\n return value;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'capitalize'\n})\nexport class CapitalizePipe implements PipeTransform {\n constructor() { }\n transform(s: any, args?: any): any {\n return s && s[0].toUpperCase() + s.slice(1) || \"\";\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'keyValue'\n})\nexport class keyValuePipe implements PipeTransform {\n constructor() {}\n transform(input: any): any {\n let keys = [];\n for (let key in input) {\n if (input.hasOwnProperty(key)) {\n keys.push({ key: key, value: input[key]});\n }\n }\n return keys;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\nimport { DomSanitizer, SafeHtml } from '@angular/platform-browser';\n\n@Pipe({ name: 'sanitizeHtml' })\nexport class SanitizeHtmlPipe implements PipeTransform {\n constructor(private sanitizer: DomSanitizer) {}\n transform(value: any): SafeHtml {\n return this.sanitizer.bypassSecurityTrustHtml(value);\n }\n}\n","import { Injectable } from '@angular/core';\nimport * as FileSaver from 'file-saver';\nimport * as XLSX from 'xlsx';\nimport * as XLSXStyle from 'xlsx-style';\n\n\nconst EXCEL_TYPE = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8';\nconst EXCEL_EXTENSION = '.xlsx';\n\n@Injectable()\nexport class XlFileService {\n\n constructor() { }\n\n public exportAsExcelFile(json: any[], excelFileName: string): void {\n let worksheet: XLSX.WorkSheet; \n let workbook: XLSX.WorkBook; \n\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 { IRefundStatus } from '../../interfaces/IRefundStatus';\nimport { IResubmitRefundRequest } from '../../interfaces/IResubmitRefundRequest';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-refund-status',\n templateUrl: './refund-status.component.html',\n styleUrls: ['./refund-status.component.css']\n})\nexport class RefundStatusComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[] = [];\n @Input('API_ROOT') API_ROOT: string;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: boolean;\n @Input() isEliginbleToAccess: boolean;\n refundStatusForm: FormGroup;\n selectedRefundReason: string;\n rejectedRefundList: IRefundList[] = [];\n approvalStatus = 'Sent for approval';\n rejectStatus = 'Update required';\n // approvalStatus = 'sent for approval';\n // rejectStatus = 'sent back';\n errorMessage = null;\n viewName: string;\n refundReason: string;\n refundlist: IRefundList;\n bsPaymentDcnNumber: string;\n isCallFromRefundList: boolean;\n refundButtonState: string = '';\n isAmountEmpty: boolean = false;\n isReasonEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n refundHasError: boolean = false;\n refundReasons: any[] = [];\n refundStatusHistories: IRefundStatus[];\n refundReference: string;\n refundAmount: string;\n refundCode: string;\n isRefundBtnDisabled: boolean = true;\n oldRefundReason: string;\n refundreason: string;\n navigationpage: string;\n isLastUpdatedByCurrentUser: boolean = true;\n isProcessRefund: boolean = false;\n changedAmount: number;\n constructor(private formBuilder: FormBuilder,\n private refundService: RefundsService,\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private router: Router,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n\n // if (this.check4AllowedRoles2AccessRefund()) {\n this.resetRemissionForm([false, false, false, false], 'All');\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.isCallFromRefundList = this.paymentLibComponent.isCallFromRefundList;\n // if(this.paymentLibComponent.isFromRefundStatusPage) {\n // this.viewName = 'reviewandsubmitview';\n // }\n if (this.paymentLibComponent.isRefundStatusView) {\n this.viewName = 'refundview';\n this.OrderslistService.getRefundView().subscribe((data) => this.refundlist = data);\n this.OrderslistService.getCCDCaseNumberforRefund.subscribe((data) => this.ccdCaseNumber = data);\n } else {\n this.viewName = 'refundstatuslist';\n if(this.isEliginbleToAccess) {\n this.refundService.getRefundStatusList(this.ccdCaseNumber).subscribe(\n refundList => {\n this.rejectedRefundList = refundList['refund_list'];\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n } else {\n this.rejectedRefundList = [];\n }\n\n }\n\n\n this.refundStatusForm = this.formBuilder.group({\n amount: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[0-9]+(\\.[0-9]{1,2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl()\n });\n\n if(this.refundlist !== undefined) {\n this.getRefundsStatusHistoryList();\n\n if (this.LOGGEDINUSERROLES.some(i => i.includes('payments-refund-approver'))) {\n this.isProcessRefund = true;\n this.refundButtonState = this.refundlist.refund_status.name;\n return;\n }\n\n if (this.LOGGEDINUSERROLES.some(i => i.includes('payments-refund'))) {\n this.isProcessRefund = false;\n this.refundButtonState = this.refundlist.refund_status.name;\n }\n }\n //}\n }\n\n isFromPayBubble = (): boolean => { \n return this.API_ROOT === 'api/payment-history';\n }\n\n getRefundsStatusHistoryList() {\n if(this.refundlist !== undefined) {\n this.refundService.getRefundStatusHistory(this.refundlist.refund_reference).subscribe(\n statusHistoryList => {\n this.refundStatusHistories = statusHistoryList.status_history_dto_list;\n this.isLastUpdatedByCurrentUser = statusHistoryList.last_updated_by_current_user;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n }\n }\n\n goToRefundView(refundlist: IRefundList, navigationpage: string) {\n this.OrderslistService.setRefundView(refundlist);\n this.OrderslistService.setCCDCaseNumber(this.ccdCaseNumber);\n this.paymentLibComponent.viewName = 'refundstatuslist';\n this.paymentLibComponent.isRefundStatusView = true;\n this.refundlist = refundlist;\n this.OrderslistService.setnavigationPage(navigationpage);\n }\n\n loadCaseTransactionPage() {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n }\n\n loadRefundListPage() {\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n if (this.navigationpage === 'casetransactions') {\n this.loadCaseTransactionPage();\n } else {\n this.paymentLibComponent.viewName = 'refund-list';\n }\n }\n\n gotoReviewDetailsPage(event:any) {\n // event.preventDefault();\n this.errorMessage = false;\n this.paymentLibComponent.isRefundStatusView = true;\n this.ngOnInit();\n }\n\n gotoReviewAndReSubmitPage() {\n this.viewName = 'reviewandsubmitview';\n this.oldRefundReason = this.refundlist.reason;\n this.changedAmount = this.refundlist.amount;\n this.refundreason = this.refundStatusHistories.filter(data => data.status.toLowerCase() === 'update required')[0].notes;\n this.refundService.getRefundReasons().subscribe(\n refundReasons => {\n this.refundReasons = refundReasons;\n });\n }\n gotoRefundReasonPage() {\n this.isRefundBtnDisabled = false;\n this.paymentLibComponent.REFUNDLIST = \"true\";\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.errorMessage = false;\n this.viewName = 'issuerefund';\n }\n\n gotoAmountPage() {\n this.errorMessage = false;\n this.paymentLibComponent.REFUNDLIST = \"true\";\n this.isRefundBtnDisabled = false;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.viewName = 'processretroremissonpage';\n }\n\n goToReviewAndSubmitView() {\n const remissionctrls = this.refundStatusForm.controls\n if (this.refundStatusForm.dirty) {\n if (remissionctrls['amount'].value == '') {\n this.resetRemissionForm([true, false, false, false], 'amount');\n }\n else if (remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid) {\n this.resetRemissionForm([false, true, false, false], 'amount');\n }\n else if (remissionctrls['reason'].value == '') {\n this.resetRemissionForm([false, false, false, true], 'reason');\n } else {\n this.refundlist.reason = remissionctrls['reason'].value;\n this.viewName = 'reviewandsubmitview';\n }\n }\n\n }\n\n resetRemissionForm(val, field) {\n if (field === 'All') {\n this.isAmountEmpty = val[0];\n this.amountHasError = val[1];\n this.isRemissionLessThanFeeError = val[2];\n this.isReasonEmpty = val[3];\n } else if (field === 'amount' || field === 'All') {\n this.isAmountEmpty = val[0];\n this.amountHasError = val[1];\n this.isRemissionLessThanFeeError = val[2];\n } else if (field === 'reason' || field === 'All') {\n this.isReasonEmpty = val[3];\n }\n }\n\n selectRadioButton(key, value) {\n this.refundHasError = false;\n this.selectedRefundReason = key;\n if (key === 'Other') {\n this.refundHasError = false;\n this.refundReason = key;\n }\n }\n\n getRefundListReason(refundListReason: any) {\n if (this.paymentLibComponent.isFromRefundStatusPage && !this.paymentLibComponent.iscancelClicked) {\n this.refundlist.reason = refundListReason.reason;\n this.refundCode = refundListReason.code;\n } else {\n this.isRefundBtnDisabled = true;\n }\n this.viewName = 'reviewandsubmitview';\n this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;\n }\n\n getRefundAmount(amount: number) {\n if (this.paymentLibComponent.isFromRefundStatusPage && !this.paymentLibComponent.iscancelClicked) {\n if (amount > 0) {\n this.changedAmount = amount;\n // this.refundlist.amount = amount;\n }\n } else {\n this.isRefundBtnDisabled = true;\n }\n this.viewName = 'reviewandsubmitview';\n this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;\n }\n\n gotoReviewRefundConfirmationPage() {\n if (this.oldRefundReason === this.refundlist.reason) {\n this.refundCode = '';\n }\n const resubmitRequest = new IResubmitRefundRequest(this.refundCode, this.changedAmount);\n this.refundService.patchResubmitRefund(resubmitRequest, this.refundlist.refund_reference).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n this.viewName = 'reviewrefundconfirmationpage';\n }\n },\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n }\n );\n\n }\n\n goToRefundProcessComponent(refundReference: string, refundList: IRefundList) {\n this.paymentLibComponent.refundlistsource = refundList;\n this.paymentLibComponent.refundReference = refundReference;\n this.paymentLibComponent.viewName = 'process-refund';\n }\n\n}\n","import { THIS_EXPR } from '@angular/compiler/src/output/output_ast';\nimport { Component, Input, OnInit, Output, EventEmitter } from '@angular/core';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IPaymentView } from '../../interfaces/IPaymentView';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { Router } from '@angular/router';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-service-request',\n templateUrl: './service-request.component.html',\n styleUrls: ['./service-request.component.css']\n})\nexport class ServiceRequestComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input('viewStatus') viewStatus: string;\n @Input('orderDetail') orderDetail: any[];\n @Input('orderRef') orderRef: string;\n @Input('orderStatus') orderStatus: string;\n @Input('orderParty') orderParty: string;\n @Input('orderCreated') orderCreated: Date;\n @Input('orderCCDEvent') orderCCDEvent: string;\n @Input('orderFeesTotal') orderFeesTotal: number;\n @Input('orderTotalPayments') orderTotalPayments: number;\n @Input('orderRemissionTotal') orderRemissionTotal: number;\n @Input('takePayment') takePayment: boolean;\n @Input('ccdCaseNumber') ccdCaseNumber: boolean;\n @Input(\"isServiceRequest\") isServiceRequest: string;\n @Output() goToServiceRquestComponent: EventEmitter<any> = new EventEmitter();\n\n\n servicerequest: string;\n // ccdCaseNumber: string;\n excReference: string;\n paymentGroups: any[] = [];\n payments: IPayment[] = [];\n nonPayments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n fees: IFee[] = [];\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalNonOffPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n paymentRef: string;\n isTurnOff: boolean;\n isRefundRemission: boolean = true;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = true;\n isExceptionRecord: boolean = false;\n isUnprocessedRecordSelected: boolean = false;\n exceptionRecordReference: string;\n isAnyFeeGroupAvilable: boolean = true;\n isHistoricGroupAvailable: boolean = false;\n isBulkScanEnable;\n isRemissionsMatch: boolean;\n isRemoveBtnDisabled: boolean = false;\n feeId: IFee;\n clAmountDue: number = 0;\n unprocessedRecordCount: number;\n isFeeRecordsExist: boolean = false;\n isGrpOutstandingAmtPositive: boolean = false;\n totalRefundAmount: Number;\n caseType: String;\n // lsCcdNumber: any = ls.get<any>('ccdNumber');\n payment: IPayment;\n paymentGroup: IPaymentGroup;\n paymentView: IPaymentView;\n\n\n isAddRemissionEnable: boolean = false;\n orderRemissionDetails: any[] = [];\n orderLevelFees: IOrderReferenceFee[] = [];\n cpoDetails: any = null;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n\n isCPODown: boolean;\n test: boolean;\n isPBA: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n isAddRemissionBtnEnabled: boolean = false;\n isRefundRemissionBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n isFromServiceRequestPage: boolean;\n navigationpage: string;\n remissionFeeAmt: number;\n\n constructor(\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private OrderslistService: OrderslistService,\n private router: Router) { }\n\n ngOnInit() {\n if (this.viewStatus === undefined) {\n this.viewStatus = this.paymentLibComponent.viewName;\n }\n if(this.paymentLibComponent.isFromServiceRequestPage && this.paymentLibComponent.isFromPaymentDetailPage) {\n if(this.paymentLibComponent.isFromPaymentDetailPage && this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.getorderRefs().subscribe((data) => this.orderRef = data);\n this.OrderslistService.getorderCCDEvents().subscribe((data) => this.orderCCDEvent = data);\n this.OrderslistService.getorderCreateds().subscribe((data) => this.orderCreated = data);\n this.OrderslistService.getorderDetail().subscribe((data) => this.orderDetail = data);\n this.OrderslistService.getorderPartys().subscribe((data) => this.orderParty = data);\n this.OrderslistService.getorderRemissionTotals().subscribe((data) => this.orderRemissionTotal = data);\n this.OrderslistService.getorderFeesTotals().subscribe((data) => this.orderFeesTotal = data);\n this.OrderslistService.getoorderTotalPaymentss().subscribe((data) => this.orderTotalPayments = data);\n }\n }\n // if (this.takePayment) {\n // this.paymentLibComponent.TAKEPAYMENT = this.takePayment;\n // }\n }\n goToServiceRequestPage() {\n this.goToServiceRquestComponent.emit();\n }\n\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n this.OrderslistService.setnavigationPage('servicerequestpage');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isTakePayment = this.paymentLibComponent.TAKEPAYMENT;\n if (this.takePayment) {\n this.paymentLibComponent.isTakePayment = this.takePayment;\n }\n this.paymentLibComponent.SERVICEREQUEST = \"true\";\n this.paymentLibComponent.isFromServiceRequestPage = false;\n if(this.isServiceRequest !== 'false') {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n }\n this.paymentLibComponent.isFromRefundStatusPage = false;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.resetOrderData();\n let partUrl = this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n if(this.isServiceRequest === 'false') {\n partUrl += this.paymentLibComponent.TAKEPAYMENT ? '&takePayment=true' : '&takePayment=false';\n }\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += this.isServiceRequest !== 'false' ? '&servicerequest=true' : '&servicerequest=false';\n partUrl += `&caseType=${this.paymentLibComponent.CASETYPE}`;\n const url = `/payment-history/${this.paymentLibComponent.CCD_CASE_NUMBER}?view=case-transactions&selectedOption=${this.paymentLibComponent.SELECTED_OPTION}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund()) {\n if (this.orderDetail[0]['remissions'].length > 0) {\n for (const remission of this.orderDetail[0]['remissions']) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n }\n return true;\n } else {\n return false;\n }\n }\n\n chkForPBAPayment(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n this.paymentLibComponent.paymentReference = payment.reference;\n this.isPBA = true;\n }\n });\n }\n });\n if (this.isPBA) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n addRemission(fee: IFee) {\n if(this.chkForAddRemission(fee.code)) {\n this.feeId = fee;\n this.viewStatus = 'addremission';\n this.payment = this.orderDetail[0].payments[0];\n this.paymentViewService.getApportionPaymentDetails(this.orderDetail[0].payments[0].reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n this.viewStatus = 'addrefundforremission';\n\n this.payment = payment;\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.payment.reference));\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n cancelRemoval() {\n this.viewStatus = 'main';\n }\n\n removeFee(fee: any) {\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n window.location.reload();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n this.isIssueRefunfBtnEnable = true;\n }\n if (this.isIssueRefunfBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n if (payment !== null && payment !== undefined) {\n let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\n }\n }\n\n issueRefund(payment: IPayment) {\n if (payment !== null && payment !== undefined) {\n if(this.chkIssueRefundBtnEnable(payment)) {\n this.viewStatus = 'issuerefund';\n this.payment = payment;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.isRefundRemission = true;\n }\n }\n }\n\n goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent({ paymentGroupReference, paymentReference, paymentMethod });\n }\n\n goToPaymentViewComponent(paymentGroup: any) {\n this.paymentLibComponent.paymentMethod = paymentGroup.paymentMethod;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentGroup.paymentReference;\n this.OrderslistService.setOrderRef(this.orderRef);\n this.OrderslistService.setorderCCDEvent(this.orderCCDEvent);\n this.OrderslistService.setorderCreated(this.orderCreated);\n this.OrderslistService.setorderDetail(this.orderDetail);\n this.OrderslistService.setorderParty(this.orderParty);\n this.OrderslistService.setorderTotalPayments(this.orderTotalPayments);\n this.OrderslistService.setorderRemissionTotal(this.orderRemissionTotal);\n this.OrderslistService.setorderFeesTotal(this.orderFeesTotal);\n this.viewStatus = 'payment-view';\n }\n\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n}\n","export class IserviceRequestCardPayment {\n amount: string\n currency: string\n language: string\n \n constructor(amount : string) {\n this.amount = amount;\n this.currency = 'GBP';\n this.language = 'string';\n } \n}\n ","export class IserviceRequestPbaPayment {\n account_number: string;\n amount: string\n currency: string\n customer_reference: string\n organisation_name: string\n \n constructor(account_number : string, amount : string, customer_reference: string, orgName: string) {\n this.account_number = account_number;\n this.amount = amount;\n this.currency = 'GBP';\n this.customer_reference = customer_reference;\n this.organisation_name = orgName;\n } \n}\n ","import { Component, OnInit, Input} from '@angular/core';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IserviceRequestCardPayment } from '../../interfaces/IserviceRequestCardPayment';\nimport { IserviceRequestPbaPayment } from '../../interfaces/IserviceRequestPbaPayment';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-pba-payment',\n templateUrl: './pba-payment.component.html',\n styleUrls: ['./pba-payment.component.scss']\n})\nexport class PbaPaymentComponent implements OnInit {\n @Input() pbaPayOrderRef: any;\n viewStatus: string;\n pbaAccountList: string[];\n isPBAAccountHold: boolean = false;\n errorMsg: any;\n isCardPaymentSuccess: boolean = true;\n isInSufficiantFund: boolean = false;\n isPBAAccountNotExist: boolean = false;\n isPBAServerError: boolean = false;\n isGetPBAAccountSucceed: boolean = false;\n selectedPbaAccount: string = '';\n pbaAccountRef: string = '';\n isPbaAccountSelected: boolean = false;\n isCardPaymentSelected: boolean = false;\n isPBADropdownSelected: boolean = false;\n isContinueButtondisabled: boolean = true;\n isPBAAccountPaymentSuccess: boolean = false;\n pbaAccountrPaymentResult: any;\n orgName: string = '';\n\n constructor(private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService) {}\n\n ngOnInit() {\n this.pbaPayOrderRef = this.paymentLibComponent.pbaPayOrderRef;\n this.viewStatus = 'pba-payment';\n this.errorMsg = null;\n this.paymentViewService.getPBAaccountDetails()\n .subscribe(\n result => {\n this.isGetPBAAccountSucceed = true;\n this.orgName = result.organisationEntityResponse.name;\n this.pbaAccountList = result.organisationEntityResponse.paymentAccount;\n },\n error => {\n this.errorMsg = error;\n }\n );\n\n }\n selectpbaaccount(args) {\n if(args.currentTarget.id === 'pbaAccountNumber') {\n this.isPBADropdownSelected = true;\n this.selectedPbaAccount = args.target.value; \n }\n if(args.currentTarget.id === 'pbaAccountRef') {\n this.pbaAccountRef = args.target.value; \n }\n if(this.selectedPbaAccount !== '' && this.pbaAccountRef !== \"\") {\n this.isContinueButtondisabled = false;\n } else {\n this.isContinueButtondisabled = true;\n }\n }\n\n saveAndContinue() {\n\n if(this.isPbaAccountSelected) {\n this.isInSufficiantFund = false;\n this.isPBAAccountNotExist = false;\n this.isPBAServerError = false;\n this.isPBAAccountPaymentSuccess = false;\n if ( this.pbaAccountList.indexOf(this.selectedPbaAccount) !== -1 ) {\n const requestBody = new IserviceRequestPbaPayment(\n this.selectedPbaAccount, this.pbaPayOrderRef.orderTotalFees, this.pbaAccountRef, this.orgName);\n this.paymentViewService.postPBAaccountPayment(this.pbaPayOrderRef.orderRefId, requestBody)\n .subscribe(\n r => {\n try {\n this.pbaAccountrPaymentResult = JSON.parse(r);\n } catch(e) {\n this.pbaAccountrPaymentResult = r;\n }\n this.isPBAAccountPaymentSuccess = true;\n },\n e => {\n if(e.status == '402') {\n this.isInSufficiantFund = true; \n } else if(e.status == '410') {\n this.isPBAAccountNotExist = true;\n } else if(e.status == '412') {\n this.isPBAAccountHold = true;\n } else {\n this.isPBAServerError = true;\n }\n }\n );\n } else {\n this.isPBAServerError = true;\n }\n } else if (this.isCardPaymentSelected) {\n this.cardPayment();\n }\n\n }\n cardPayment() {\n this.isCardPaymentSuccess = true;\n const requestBody = new IserviceRequestCardPayment (\n this.pbaPayOrderRef.orderTotalFees);\n this.paymentViewService.postWays2PayCardPayment(this.pbaPayOrderRef.orderRefId, requestBody)\n .subscribe(\n result => {\n const paymentUrl = JSON.parse(result).next_url;\n window.location.href = paymentUrl;\n },\n error => {\n this.isCardPaymentSuccess = false;\n }\n );\n\n }\n selectPaymentMethod(type: string) {\n if(type === 'PBA') {\n this.isPbaAccountSelected = true;\n this.isCardPaymentSelected = false;\n this.isPBADropdownSelected = false\n this.isContinueButtondisabled = true;\n this.selectedPbaAccount = null;\n } else if (type === 'CARD') {\n this.isPbaAccountSelected = false;\n this.isCardPaymentSelected = true;\n this.isPBADropdownSelected = false\n this.isContinueButtondisabled = false;\n }\n }\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = false;\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n }\n}\n","import { NgModule } from '@angular/core';\nimport { HttpClientModule } from '@angular/common/http';\nimport { CommonModule } from '@angular/common';\n\nimport { PaymentListComponent } from './components/payment-list/payment-list.component';\nimport { PaymentViewComponent } from './components/payment-view/payment-view.component';\nimport { ProcessRefundComponent } from './components/process-refund/process-refund.component';\nimport { RefundListComponent } from './components/refund-list/refund-list.component';\n\nimport { CardDetailsComponent } from './components/card-details/card-details.component';\nimport { PageNotFoundComponent } from './components/page-not-found.component';\nimport { PaymentLibComponent } from './payment-lib.component';\nimport { StatusHistoryComponent } from './components/status-history/status-history.component';\nimport { PbaDetailsComponent } from './components/pba-details/pba-details.component';\nimport { LoggerService } from './services/shared/logger/logger.service';\nimport { ConsoleLoggerService } from './services/shared/logger/console-logger.service';\nimport { WebComponentHttpClient } from './services/shared/httpclient/webcomponent.http.client';\nimport { CaseTransactionsComponent } from './components/case-transactions/case-transactions.component';\nimport { FeeSummaryComponent } from './components/fee-summary/fee-summary.component';\nimport { ErrorBannerComponent } from './components/error-banner/error-banner.component';\nimport { MarkUnidentifiedPaymentComponent } from './components/mark-unidentified-payment/mark-unidentified-payment.component';\nimport { MarkUnsolicitedPaymentComponent } from './components/mark-unsolicited-payment/mark-unsolicited-payment.component';\nimport { UnprocessedPaymentsComponent } from './components/unprocessed-payments/unprocessed-payments.component';\nimport { ProcessedPaymentsComponent } from './components/processed-payments/processed-payments.component';\nimport { AllocatePaymentsComponent } from './components/allocate-payments/allocate-payments.component';\nimport { AddRemissionComponent } from './components/add-remission/add-remission.component';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { CcdHyphensPipe } from './pipes/ccd-hyphens.pipe';\nimport { CapitalizePipe } from './pipes/capitalize.pipe';\nimport { keyValuePipe } from './pipes/key-value.pipe';\nimport { SanitizeHtmlPipe } from './pipes/sanitize-html.pipe';\nimport { ReportsComponent } from './components/reports/reports.component';\nimport { XlFileService } from './services/xl-file/xl-file.service';\nimport { TableComponent } from './components/table/table.component';\nimport { MatTableModule } from '@angular/material/table';\nimport { MatPaginatorModule } from '@angular/material/paginator';\nimport { MatSortModule } from '@angular/material/sort';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\n// import { BrowserAnimationsModule } from '@angular/platform-browser/animations';\n// import { NoopAnimationsModule } from '@angular/platform-browser/animations';\nimport { RefundStatusComponent } from './components/refund-status/refund-status.component';\nimport { ServiceRequestComponent } from './components/service-request/service-request.component';\nimport { PbaPaymentComponent } from './components/pba-payment/pba-payment.component';\n\n@NgModule({\n imports: [\n CommonModule,\n HttpClientModule,\n FormsModule,\n ReactiveFormsModule,\n MatTableModule,\n MatPaginatorModule,\n MatSortModule,\n MatFormFieldModule,\n MatInputModule,\n // BrowserAnimationsModule,\n // NoopAnimationsModule\n ],\n declarations: [\n PaymentLibComponent,\n PaymentListComponent,\n PaymentViewComponent,\n PbaPaymentComponent,\n ProcessRefundComponent,\n RefundListComponent,\n CardDetailsComponent,\n PageNotFoundComponent,\n StatusHistoryComponent,\n MarkUnidentifiedPaymentComponent,\n MarkUnsolicitedPaymentComponent,\n UnprocessedPaymentsComponent,\n ProcessedPaymentsComponent,\n AllocatePaymentsComponent,\n PbaDetailsComponent,\n CaseTransactionsComponent,\n FeeSummaryComponent,\n AddRemissionComponent,\n CcdHyphensPipe,\n CapitalizePipe,\n keyValuePipe,\n SanitizeHtmlPipe,\n ReportsComponent,\n ErrorBannerComponent,\n TableComponent,\n RefundStatusComponent,\n ServiceRequestComponent\n ],\n exports: [PaymentLibComponent],\n providers: [\n { provide: LoggerService, useClass: ConsoleLoggerService },\n XlFileService,\n WebComponentHttpClient\n ]\n})\n\nexport class PaymentLibModule { }\n"],"names":["PaymentLibService","prototype","setApiRootUrl","apiRoot","this","API_ROOT","getApiRootUrl","setBulkScanApiRootUrl","bulkscanapiRoot","BULKSCAN_API_ROOT","getBulkScanApiRootUrl","setRefundndsApiRootUrl","refundsapiRoot","REFUNDS_API_ROOT","getRefundsApiRootUrl","setCardPaymentReturnUrl","cardPaymentReturnUrl","CARDPAYMENTRETURNURL","getCardPaymentReturnUrl","Injectable","args","providedIn","OrderslistService","setOrdersList","orderLevelFees","ordersList","next","Object","assign","getOrdersList","setRefundView","refundList","refundView","getRefundView","setCaseType","caseType","getCaseType","setCCDCaseNumber","ccdCaseNumber","getCCDCaseNumber","setFeeExists","feeExists","getFeeExists","setisFromServiceRequestPage","isFromServiceRequestPage","getisFromServiceRequestPages","setOrderRefId","OrderRefId","getSelectedOrderRefId","setnavigationPage","navigationPage","getnavigationPageValue","setpaymentPageView","paymentpageList","paymentPageView","getpaymentPageView","setUserRolesList","rolesList","getUserRolesList","setorderDetail","orderDetail","getorderDetail","setOrderRef","orderRef","getorderRefs","setorderCCDEvent","orderCCDEvent","getorderCCDEvents","setorderCreated","orderCreated","getorderCreateds","setorderParty","orderParty","getorderPartys","setorderRemissionTotal","orderRemissionTotal","getorderRemissionTotals","setorderFeesTotal","orderFeesTotal","getorderFeesTotals","setorderTotalPayments","orderTotalPayments","getoorderTotalPaymentss","BehaviorSubject","getcaseType","asObservable","getFeeExist","getCCDCaseNumberforRefund","getisFromServiceRequestPage","getOrderRefId","getnavigationPage","getorderRef","getorderCCDEvent","getorderCreated","getorderParty","getorderRemissionTotal","getorderFeesTotal","getorderTotalPayments","PaymentLibComponent","ngAfterContentChecked","cd","detectChanges","ngOnInit","paymentLibService","LOGGEDINUSERROLES","length","PAYMENT_GROUP_REF","paymentGroupReference","DCN_NUMBER","bspaymentdcn","REFUNDLIST","VIEW","viewName","isTakePayment","TAKEPAYMENT","Component","selector","template","ChangeDetectorRef","Input","unProcessedPaymentServiceId","unProcessedPayment","orderPendingPayments","ErrorHandlerService","handleError","err","errorMessage","error","Error","message","status","undefined","JSON","parse","statusCode","messsage","stringify","_throw","getServerErrorMessage","isErrorExist","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","paymentAllocation","fee","isRemissionsMatch","remissions","rem","fee_code","code","push","filter","paymentGroupObj","includes","payment_allocation","isStatusAllocated","allocation_status","defineProperty","method","channel","goToPaymentList","goToServiceRequestPage","SERVICEREQUEST","window","location","reload","goToCaseTransationPage","event","preventDefault","data","ISBSENABLE","resetOrderData","addRemission","chkForAddRemission","reference","payment","isFromPaymentDetailPage","isRefundRemission","checkForFees","addRefundForRemission","remission","chkIsRefundRemissionBtnEnable","remissionFeeAmt","net_amount","toLocaleLowerCase","allowFurtherAccessAfter4Days","isRefundRemissionBtnEnable","issueRefund","paymentgrp","chkIssueRefundBtnEnable","getRemissionByFeeCode","feeCode","remissions_1","tslib_1.__values","remissions_1_1","check4AllowedRoles2AccessRefund","isIssueRefunfBtnEnable","chkForPBAPayment","_b","_c","isAddFeeBtnEnabled","allowedRolesToAccessRefund","some","role","indexOf","tmp4DayAgo","Date","setDate","getDate","date_created","RefundsService","getRefundReasons","getRefundRejectReasons","getRefundActions","refundReference","patchRefundActions","reviewerAction","getRefundList","refundstatus","selfexclusive","getRefundStatusHistory","getRefundStatusList","getUserDetails","postIssueRefund","patchResubmitRefund","refund_reference","ProcessRefundComponent","refundActionList","getErrorMessage","processRefundForm","formBuilder","group","refundActionField","FormControl","Validators","compose","required","refundRejectReasonField","sendMeBackField","minLength","maxLength","pattern","enterReasonField","refundlistsource","ccd_case_number","isFromRefundListPage","checkRefundActions","refundActionsHasError","isReasonFieldEmpty","isReasonEmpty","isReasonInvalid","refundRejectReasonHasError","isConfirmButtondisabled","isSendMeBackClicked","isRejectClicked","isOtherClicked","refundRejectReasonList","processRefundSubmit","processRefundRequest","controls","resetForm","processFormError","errors","dirty","valid","reason","response","isSuccesspageEnable","successMsg","invalid","minlength","actualLength","maxlength","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","serviceRequest","paymentView","payment_group_reference","goToPayementView","isGrpOutstandingAmtPositive","CASETYPE","EXC_REFERENCE","excReference","takePayment","serviceRequestValue","isBulkScanEnable","isStrategicFixEnable","ISSFENABLE","caseTransactionsService","paymentGroups","isAnyFeeGroupAvilable","calculateAmounts","calculateOrderFeesAmounts","totalRefundAmount","calculateRefundAmount","cpoDetails","setDefaults","isCPODown","goToOrderViewDetailSection","checkForExceptionRecord","totalPayments","totalRemissions","totalNonOffPayments","totalFees","getAllocationStatus","bulkScaningPaymentService","recordData","exception_record_reference","ccd_reference","isExceptionRecord","case_reference","resetOrderVariables","service_request_status","orderStatus","orderAddBtnEnable","orderRefId","orderTotalFees","orderReferenceObj","x","redirectToOrderFeeSearchPage","orderef","nonOffLinePayment","a","b","amount_due","clAmountDue","allocationLen","nonPayments","allPayments","remisison","totalRefundAmount_1","isFeeAmountZero_1","isNewPaymentGroup_1","isFeeRecordsExist","grpOutstandingAmount","index","isHistoricGroupAvailable","getGroupOutstandingAmount","redirectToFeeSearchPage","navigateByUrl","redirectToremissionPage","redirectToReportsPage","loadFeeSummaryPage","goToPaymentViewComponent","selectedUnprocessedFeeEvent","unprocessedRecordId","isUnprocessedRecordSelected","getUnprocessedFeeCount","unProcessedRecordCount","unprocessedRecordCount","calculateAmountDue","confirmRemoveFee","isRemoveBtnDisabled","cancelRemoval","removeFee","success","isCheckAmountdueExist","amountDue","isPBA","loadPBAAccountPage","pbaPayOrderRef","isAddRemissionEnable","orderRemissionDetails","ispaymentGroupApisuccess","isAddRemissionBtnEnabled","isEligible4PBAPayment","currentDate","check4AllowedRoles2AccessPBApayment","PaymentToPayhubRequest","currency","description","provider","toFixed","case_type","PayhubAntennaRequest","BS_ENABLE_FLAG","FeeSummaryComponent","bsPaymentDcnNumber","platForm","features","result","feature","uid","enable","getUnassignedPaymentlist","getPaymentGroup","unassignedPayments","service","responsible_service_id","upPaymentErrorMessage","currentFee","isPaymentExist","isRemissionsExist","totalAfterRemission","isFeeAmountZero","outStandingAmount","loadCaseTransactionPage","partUrl","cancelRemission","page","antennaReqBody","isConfirmationBtnDisabled","isBackButtonEnable","href","goToAllocatePage","Location","ErrorBannerComponent","UnidentifiedPaymentsRequest","payment_reference","unidentified_reason","payment_allocation_status","name","AllocatePaymentRequest","unAllocatedPayment","exceptionRecord","allocatedRequest","banked_date","date_banked","exception_record","document_control_number","dcn_reference","external_provider","giro_slip_no","bgc_reference","payer_name","payment_channel","payment_status","payment_method","payment_allocation_dto","MarkUnidentifiedPaymentComponent","getUnassignedPayment","markPaymentUnidentifiedForm","investicationDetail","unassignedRecord","siteID","beCcdNumber","beExceptionNumber","exceptionReference","ccdReference","trimUnderscore","saveAndContinue","investicationField","formerror","investigationComment","val","isInvesticationDetailEmpty","investicationDetailHasError","investicationDetailMinHasError","investicationDetailMaxHasError","confirmPayments","postStrategicBody","res1","requestBody","res2","response2","reqBody","res3","gotoCasetransationPage","user_id","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","isStFixEnable","FEE_RECORDS_EXISTS","setValuesForUnassignedRecord","emit","unassignedRecordList","unassignedRecordListLength","serviceId","isExceptionCase","unprocessedPaymentSelectEvent","formatUnassignedRecordId","ID","recordId","loadUnsolicitedPage","selectedRecordReference","validateButtons","resetButtons","isAllocateToExistingFeebtnEnabled","isMarkAsUnidentifiedbtnEnabled","isAllocatedToNewFeebtnEnabled","PAYMENTREF","IS_OS_AMT_AVAILABLE","unprocessedPaymentUnSelectEvent","showDetailRow","obj","unassignedRecordSelectedList","Output","EventEmitter","isRecordExist","ProcessedPaymentsComponent","redirectToPaymentViewPage","IAllocationPaymentsRequest","explanation","userName","user_name","AllocatePaymentsComponent","overUnderPaymentForm","moreDetails","fstCon","scndCn","selectedPaymentGroup","gotoSummaryPage","cancelAllocatePayment","confirmAllocatePayement","enCookieUserName","cookieUserName","decodeURIComponent","fullName","paymentDetailsField","paymentFormError","isEmptyCondtion","paymentReason","paymentExplanation","isOtherOptionSelected","isRemainingAmountGtZero","isRemainingAmountLtZero","userNameField","otherPaymentExplanation","finalServiceCall","paymentReasonHasError","paymentExplanationHasError","isPaymentDetailsEmpty","isPaymentDetailsInvalid","paymentDetailsMinHasError","paymentDetailsMaxHasError","isUserNameEmpty","isUserNameInvalid","GroupOutstandingAmount","remainingToBeAssigned","isMoreDetailsBoxHide","reset","paymentSectionLabel","feedbackUrlLabel","remainingAmount","afterFeeAllocateOutstanding","amountForAllocation","selectRadioButton","key","OrderListSelectEvent","reasonList","overPayment","hwfReward","wrongFee","notIssueCase","otherDeduction","shortFall","helpWithFee","other","explanationList","referRefund","noRefund","noCase","holdCase","heldCase","refund","duplicate","humanerror","caseWithdrawn","AddRemissionRequest","hwf_reference","AddRetroRemissionRequest","PostRefundRetroRemission","refund_reason","PostIssueRefundRetroRemission","remissionReference","AddRemissionComponent","default","pattern1","pattern2","viewCompStatus","volume","remessionPayment","isPaymentSuccess","option","remissionForm","remissionCode","refundReason","refundDDReason","onlySelf","refundReasons","recently_used","commonRefundReasons","sort","localeCompare","resetRemissionForm","remissionctrls","isRemissionLessThanFee","setErrors","confirmRemission","newNetAmount","remissionAmount","trim","id","LDUrl","routeReuseStrategy","shouldReuseRoute","onSameUrlNavigation","isRemissionCodeEmpty","remissionCodeHasError","isAmountEmpty","amountHasError","isRemissionLessThanFeeError","addRemissionCode","gotoAddRetroRemissionCodePage","iscancelClicked","refundListAmount","isFromRefundStatusPage","refundListReason","selectedRefundReason","selectedValue","gotoCheckRetroRemissionPage","gotoProcessRetroRemissionPage","confirmRetroRemission","retroRemission","remissionamt","isRemissionApplied","remission_reference","processRefund","refundAmount","refund_amount","gotoIssueRefundConfirmation","refundHasError","displayRefundReason","gotoIssueRefundPage","changeIssueRefundReason","confirmIssueRefund","confirmRetroRefund","localStorage","setItem","isRefundReasonsSelected","showReasonText","reasonLength","gotoServiceRequestPage","sendOrderDetail","sendOrderRef","gotoCasetransationPageCancelBtnClicked","getFormattedCurrency","concat","hasErrors","CcdHyphensPipe","transform","match","Pipe","CapitalizePipe","slice","keyValuePipe","keys","SanitizeHtmlPipe","sanitizer","bypassSecurityTrustHtml","DomSanitizer","XlFileService","exportAsExcelFile","json","excelFileName","worksheet","XLSX.utils","json_to_sheet","header","setDataLossReportHeaders","setUnprocessedReportHeaders","setProcessedUnallocatedReportHeaders","setShortFallReportHeaders","autoFitColumns","excelBuffer","XLSX.write","Sheets","SheetNames","bookType","saveAsExcelFile","objectMaxLength","ColWidth","values","j","width","A1","v","B1","C1","D1","E1","F1","G1","H1","I1","J1","K1","L1","M1","N1","buffer","fileName","Blob","FileSaver.saveAs","ReportsComponent","fromValidation","getToday","toISOString","getSelectedFromDate","validateDates","reportsForm","selectedStartDate","tranformDate","selectedEndDate","isDateRangeMoreThanWeek","isDateRangeBetnWeek","isStartDateLesthanEndDate","selectedreport","downloadReport","dataLossRptDefault","isDownLoadButtondisabled","loss_resp","payment_asset_dcn","env_ref","env_item","resp_service_id","resp_service_name","bgc_batch","unProcessedRptDefault","exception_ref","ccd_ref","processedUnallocated","allocation_reason","ccd_exception_ref","ccd_case_ref","updated_by","shortFallsRptDefault","surplus_shortfall","balance","payment_amount","ccd_case_reference","ccd_exception_reference","processed_date","selectedReportName","applyDateFormat","substr","convertToFloatValue","Op","xlFileService","getFileName","loc","stDt","formatDate","enDt","now","timestamp","getTwodigit","getHours","getMinutes","getSeconds","getCamelCaseString","strDate","parts","map","amt","Number","parseFloat","TableComponent","STATUS","toLowerCase","isApprovalFlow","DATASOURCE","dataSource","MatTableDataSource","actualcount","reduce","r","_a","user_full_name","ngAfterViewInit","paginator","cdRef","applyFilter","filterValue","goToRefundProcessComponent","refundData","goToRefundViewComponent","isCallFromRefundList","ViewChild","MatPaginator","MatSort","displayedColumns","IResubmitRefundRequest","RefundStatusComponent","refundlist","isEliginbleToAccess","refundStatusForm","getRefundsStatusHistoryList","isProcessRefund","refundButtonState","refund_status","statusHistoryList","refundStatusHistories","status_history_dto_list","isLastUpdatedByCurrentUser","last_updated_by_current_user","goToRefundView","gotoReviewDetailsPage","gotoReviewAndReSubmitPage","oldRefundReason","changedAmount","refundreason","notes","gotoRefundReasonPage","isRefundBtnDisabled","gotoAmountPage","goToReviewAndSubmitView","getRefundListReason","refundCode","getRefundAmount","gotoReviewRefundConfirmationPage","resubmitRequest","isFromPayBubble","ServiceRequestComponent","goToServiceRquestComponent","isServiceRequest","IserviceRequestCardPayment","language","IserviceRequestPbaPayment","account_number","customer_reference","orgName","organisation_name","PbaPaymentComponent","isGetPBAAccountSucceed","organisationEntityResponse","pbaAccountList","paymentAccount","selectpbaaccount","currentTarget","isPBADropdownSelected","selectedPbaAccount","pbaAccountRef","isPbaAccountSelected","isInSufficiantFund","isPBAAccountNotExist","isPBAServerError","isPBAAccountPaymentSuccess","pbaAccountrPaymentResult","e","isPBAAccountHold","isCardPaymentSelected","cardPayment","isCardPaymentSuccess","paymentUrl","next_url","selectPaymentMethod","NgModule","imports","CommonModule","HttpClientModule","FormsModule","ReactiveFormsModule","MatTableModule","MatPaginatorModule","MatSortModule","MatFormFieldModule","MatInputModule","declarations","exports","providers","provide","useClass","PaymentLibModule"],"mappings":"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"}
1
+ {"version":3,"sources":["ng://@hmcts/ccpay-web-component/lib/payment-lib.service.ts","ng://@hmcts/ccpay-web-component/lib/services/orderslist.service.ts","ng://@hmcts/ccpay-web-component/lib/payment-lib.component.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/error-handler.service.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/logger/logger.service.ts","ng://@hmcts/ccpay-web-component/lib/services/payment-list/payment-list.service.ts","ng://@hmcts/ccpay-web-component/lib/components/payment-list/payment-list.component.ts","node_modules/tslib/tslib.es6.js","ng://@hmcts/ccpay-web-component/lib/services/shared/httpclient/webcomponent.http.client.ts","ng://@hmcts/ccpay-web-component/lib/services/payment-view/payment-view.service.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PostRefundRetroRemission.ts","ng://@hmcts/ccpay-web-component/lib/components/payment-view/payment-view.component.ts","ng://@hmcts/ccpay-web-component/lib/services/refunds/refunds.service.ts","ng://@hmcts/ccpay-web-component/lib/components/process-refund/process-refund.component.ts","ng://@hmcts/ccpay-web-component/lib/components/refund-list/refund-list.component.ts","ng://@hmcts/ccpay-web-component/lib/services/card-details/card-details.service.ts","ng://@hmcts/ccpay-web-component/lib/components/card-details/card-details.component.ts","ng://@hmcts/ccpay-web-component/lib/components/page-not-found.component.ts","ng://@hmcts/ccpay-web-component/lib/services/status-history/status-history.service.ts","ng://@hmcts/ccpay-web-component/lib/components/status-history/status-history.component.ts","ng://@hmcts/ccpay-web-component/lib/services/notification/notification.service.ts","ng://@hmcts/ccpay-web-component/lib/components/contact-details/contact-details.component.ts","ng://@hmcts/ccpay-web-component/lib/components/pba-details/pba-details.component.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/logger/console-logger.service.ts","ng://@hmcts/ccpay-web-component/lib/services/case-transactions/case-transactions.service.ts","ng://@hmcts/ccpay-web-component/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.ts","ng://@hmcts/ccpay-web-component/lib/components/case-transactions/case-transactions.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PaymentToPayhubRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PayhubAntennaRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/fee-summary/fee-summary.component.ts","ng://@hmcts/ccpay-web-component/lib/components/error-banner/error-banner.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/UnidentifiedPaymentsRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/AllocatePaymentRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/UnsolicitedPaymentsRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.ts","ng://@hmcts/ccpay-web-component/lib/components/unprocessed-payments/unprocessed-payments.component.ts","ng://@hmcts/ccpay-web-component/lib/components/processed-payments/processed-payments.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IAllocationPaymentsRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/allocate-payments/allocate-payments.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/AddRemissionRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/AddRetroRemissionRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PostIssueRefundRetroRemission.ts","ng://@hmcts/ccpay-web-component/lib/components/add-remission/add-remission.component.ts","ng://@hmcts/ccpay-web-component/lib/pipes/ccd-hyphens.pipe.ts","ng://@hmcts/ccpay-web-component/lib/pipes/capitalize.pipe.ts","ng://@hmcts/ccpay-web-component/lib/pipes/key-value.pipe.ts","ng://@hmcts/ccpay-web-component/lib/pipes/sanitize-html.pipe.ts","ng://@hmcts/ccpay-web-component/lib/services/xl-file/xl-file.service.ts","ng://@hmcts/ccpay-web-component/lib/components/reports/reports.component.ts","ng://@hmcts/ccpay-web-component/lib/components/table/table.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IPutNotificationRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IResubmitRefundRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/refund-status/refund-status.component.ts","ng://@hmcts/ccpay-web-component/lib/components/service-request/service-request.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IserviceRequestCardPayment.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IserviceRequestPbaPayment.ts","ng://@hmcts/ccpay-web-component/lib/components/pba-payment/pba-payment.component.ts","ng://@hmcts/ccpay-web-component/lib/payment-lib.module.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\n\nexport class PaymentLibService {\n API_ROOT: string;\n BULKSCAN_API_ROOT: string;\n REFUNDS_API_ROOT: string;\n NOTIFICATION_API_ROOT: string;\n CARDPAYMENTRETURNURL: string;\n\n constructor() { }\n\n setApiRootUrl(apiRoot: string): void {\n this.API_ROOT = apiRoot;\n }\n\n getApiRootUrl(): string {\n return this.API_ROOT;\n }\n\n setBulkScanApiRootUrl(bulkscanapiRoot: string): void {\n this.BULKSCAN_API_ROOT = bulkscanapiRoot;\n }\n\n getBulkScanApiRootUrl(): string {\n return this.BULKSCAN_API_ROOT;\n }\n\n setRefundndsApiRootUrl(refundsapiRoot: string): void {\n this.REFUNDS_API_ROOT = refundsapiRoot;\n }\n\n getRefundsApiRootUrl(): string {\n return this.REFUNDS_API_ROOT;\n }\n setNoticationApiRootUrl(notificationapiRoot: string): void {\n this.NOTIFICATION_API_ROOT = notificationapiRoot;\n }\n\n getNoticationApiRootUrl(): string {\n return this.NOTIFICATION_API_ROOT;\n }\n setCardPaymentReturnUrl(cardPaymentReturnUrl: string):void {\n this.CARDPAYMENTRETURNURL = cardPaymentReturnUrl;\n }\n getCardPaymentReturnUrl(): string {\n return this.CARDPAYMENTRETURNURL;\n }\n}\n","import { Injectable } from '@angular/core';\nimport { Observable, BehaviorSubject } from 'rxjs';\nimport {IOrderReferenceFee} from '../interfaces/IOrderReferenceFee';\nimport { IRefundList } from '../interfaces/IRefundList';\nimport { IPaymentView } from '../interfaces/IPaymentView'; \n\n@Injectable({\n providedIn: 'root'\n})\nexport class OrderslistService {\n private ordersList: BehaviorSubject<IOrderReferenceFee[]> = new BehaviorSubject<IOrderReferenceFee[]>(null);\n private refundView: BehaviorSubject<IRefundList> = new BehaviorSubject<IRefundList>(null);\n private caseType = new BehaviorSubject(\"\");\n getcaseType = this.caseType.asObservable();\n private feeExists = new BehaviorSubject<boolean>(null);\n getFeeExist = this.feeExists.asObservable();\n private ccdCaseNumber = new BehaviorSubject(\"\");\n getCCDCaseNumberforRefund = this.ccdCaseNumber.asObservable();\n private isFromServiceRequestPage = new BehaviorSubject<boolean>(null);\n getisFromServiceRequestPage = this.isFromServiceRequestPage.asObservable();\n private OrderRefId = new BehaviorSubject(\"\");\n getOrderRefId = this.OrderRefId.asObservable();\n private navigationPage = new BehaviorSubject(\"\");\n getnavigationPage = this.navigationPage.asObservable();\n\n private orderRef = new BehaviorSubject(\"\");\n getorderRef = this.orderRef.asObservable();\n private orderCCDEvent = new BehaviorSubject(\"\");\n getorderCCDEvent = this.caseType.asObservable();\n private orderCreated = new BehaviorSubject<Date>(null);\n getorderCreated = this.orderCreated.asObservable();\n private orderParty = new BehaviorSubject(\"\");\n getorderParty = this.orderParty.asObservable();\n private orderRemissionTotal = new BehaviorSubject<number>(null);\n getorderRemissionTotal = this.orderRemissionTotal.asObservable();\n private orderFeesTotal = new BehaviorSubject<number>(null);\n getorderFeesTotal = this.orderFeesTotal.asObservable();\n private orderTotalPayments = new BehaviorSubject<number>(null);\n getorderTotalPayments = this.orderTotalPayments.asObservable();\n private rolesList: BehaviorSubject<any[]> = new BehaviorSubject<any[]>(null);\n\n private orderDetail: BehaviorSubject<any[]> = new BehaviorSubject<any[]>(null);\n\n private paymentPageView: BehaviorSubject<IPaymentView> = new BehaviorSubject<IPaymentView>(null);\n\n constructor() { }\n\n setOrdersList(orderLevelFees: IOrderReferenceFee[]): void {\n this.ordersList.next(Object.assign([], orderLevelFees));\n }\n getOrdersList() {\n return this.ordersList;\n }\n\n setRefundView(refundList: IRefundList): void {\n this.refundView.next(Object.assign([], refundList));\n }\n getRefundView() {\n return this.refundView;\n }\n\n setCaseType(caseType: string){\n this.caseType.next(caseType);\n }\n getCaseType(){\n return this.caseType;\n }\n\n setCCDCaseNumber(ccdCaseNumber: string){\n this.ccdCaseNumber.next(ccdCaseNumber);\n }\n getCCDCaseNumber(){\n return this.ccdCaseNumber;\n }\n\n setFeeExists(feeExists: boolean){\n this.feeExists.next(feeExists);\n }\n getFeeExists(){\n return this.feeExists;\n } \n\n setisFromServiceRequestPage(isFromServiceRequestPage: boolean){\n this.isFromServiceRequestPage.next(isFromServiceRequestPage);\n }\n getisFromServiceRequestPages(){\n return this.isFromServiceRequestPage;\n }\n\n setOrderRefId(OrderRefId: string){\n this.OrderRefId.next(OrderRefId);\n }\n getSelectedOrderRefId(){\n return this.OrderRefId;\n }\n\n setnavigationPage(navigationPage: string){\n this.navigationPage.next(navigationPage);\n }\n getnavigationPageValue(){\n return this.navigationPage;\n }\n\n setpaymentPageView(paymentpageList: IPaymentView): void {\n this.paymentPageView.next(Object.assign([], paymentpageList));\n }\n getpaymentPageView() {\n return this.paymentPageView;\n }\n\n setUserRolesList(rolesList:any[]): void {\n this.rolesList.next(Object.assign([], rolesList));\n }\n getUserRolesList() {\n return this.rolesList;\n }\n\n setorderDetail(orderDetail:any[]): void {\n this.orderDetail.next(Object.assign([], orderDetail));\n }\n getorderDetail() {\n return this.orderDetail;\n }\n\n setOrderRef(orderRef: string){\n this.orderRef.next(orderRef);\n }\n getorderRefs(){\n return this.orderRef;\n }\n\n setorderCCDEvent(orderCCDEvent: string){\n this.orderCCDEvent.next(orderCCDEvent);\n }\n getorderCCDEvents(){\n return this.orderCCDEvent;\n }\n\n setorderCreated(orderCreated: Date){\n this.orderCreated.next(orderCreated);\n }\n getorderCreateds(){\n return this.orderCreated;\n }\n\n setorderParty(orderParty: string){\n this.orderParty.next(orderParty);\n }\n getorderPartys(){\n return this.orderParty;\n }\n\n setorderRemissionTotal(orderRemissionTotal: number){\n this.orderRemissionTotal.next(orderRemissionTotal);\n }\n getorderRemissionTotals(){\n return this.orderRemissionTotal;\n }\n\n setorderFeesTotal(orderFeesTotal: number){\n this.orderFeesTotal.next(orderFeesTotal);\n }\n getorderFeesTotals(){\n return this.orderFeesTotal;\n }\n\n setorderTotalPayments(orderTotalPayments: number){\n this.orderTotalPayments.next(orderTotalPayments);\n }\n getoorderTotalPaymentss(){\n return this.orderTotalPayments;\n }\n}\n","import { ChangeDetectorRef, Component, Input, OnInit } from '@angular/core';\nimport { PaymentLibService } from './payment-lib.service';\nimport { IBSPayments } from './interfaces/IBSPayments';\nimport { OrderslistService } from './services/orderslist.service';\nimport { IPayment } from './interfaces/IPayment';\n\n@Component({\n selector: 'ccpay-payment-lib',\n template: `\n <ccpay-refund-list [USERID]=\"USERID\" [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" [LOGGEDINUSEREMAIL]=\"LOGGEDINUSEREMAIL\" *ngIf=\"viewName === 'refund-list'\"></ccpay-refund-list>\n <ccpay-payment-list *ngIf=\"viewName === 'payment-list'\"></ccpay-payment-list>\n <ccpay-refund-status\n [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\"\n [API_ROOT]=\"API_ROOT\"\n *ngIf=\"viewName === 'refundstatuslist'\"> </ccpay-refund-status >\n <ccpay-payment-view [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'payment-view'\"\n [isTurnOff]=\"ISTURNOFF\" [isTakePayment]=\"TAKEPAYMENT\" [caseType]=\"CASETYPE\"\n [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\" [isFromServiceRequestPage]=\"isFromServiceRequestPage\" [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'case-transactions'\"></ccpay-case-transactions>\n <app-mark-unidentified-payment *ngIf=\"viewName === 'unidentifiedPage'\"\n [caseType]=\"CASETYPE\"></app-mark-unidentified-payment>\n <app-mark-unsolicited-payment *ngIf=\"viewName === 'unsolicitedPage'\"\n [caseType]=\"CASETYPE\"></app-mark-unsolicited-payment>\n <app-allocate-payments *ngIf=\"viewName === 'allocate-payments'\"\n [isTurnOff]=\"ISTURNOFF\"\n [caseType]=\"CASETYPE\"\n ></app-allocate-payments>\n <ccpay-fee-summary *ngIf=\"viewName === 'fee-summary'\"\n [ccdCaseNumber]=\"CCD_CASE_NUMBER\" \n [paymentGroupRef]=\"paymentGroupReference\"\n [isTurnOff]=\"ISTURNOFF\"\n [caseType]=\"CASETYPE\"\n [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 isFromPayBubble: boolean = false;\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')) !== undefined ) {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')).split('=')[1]; \n } else {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith(' XSRF-TOKEN')).split('=')[1];\n }\n \n } else {\n headers['CSRF-Token'] = csrfToken.content;\n }\n options.headers = new HttpHeaders(headers);\n options.responseType = 'text';\n return options;\n }\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { v4 as uuidv4 } from 'uuid';\nimport {IPayment} from '../../interfaces/IPayment';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { catchError } from 'rxjs/operators';\nimport { LoggerService } from '../shared/logger/logger.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { PayhubAntennaRequest } from '../../interfaces/PayhubAntennaRequest';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { Meta } from '@angular/platform-browser';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { IAllocationPaymentsRequest } from '../../interfaces/IAllocationPaymentsRequest';\nimport {IOrderReferenceFee} from '../../interfaces/IOrderReferenceFee';\nimport { BehaviorSubject } from 'rxjs';\nimport { IserviceRequestPbaPayment } from '../../interfaces/IserviceRequestPbaPayment';\nimport { IserviceRequestCardPayment } from '../../interfaces/IserviceRequestCardPayment';\nimport { RefundsRequest } from '../../interfaces/RefundsRequest';\nimport { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\nimport { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';\nimport { error } from '@angular/compiler/src/util';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PaymentViewService {\n private ordersList = <BehaviorSubject<IOrderReferenceFee[]>>new BehaviorSubject([]);\n\n private meta: Meta;\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getPaymentDetails(paymentReference: string, paymentMethod: string): Observable<IPayment> {\n this.logger.info('Payment-view-service getPaymentDetails for: ', paymentReference);\n\n return this.http.get<IPayment>(paymentMethod === 'card' || paymentMethod === 'cash' || paymentMethod === 'cheque' || paymentMethod === 'postal order' ?\n `${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}` :\n `${this.paymentLibService.API_ROOT}/credit-account-payments/${paymentReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getPaymentGroupDetails(paymentGroupReference: string): Observable<IPaymentGroup> {\n this.logger.info('Payment-view-service getPaymentGroupDetails for: ', paymentGroupReference);\n\n return this.http.get<IPayment>(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getApportionPaymentDetails(paymentReference: string): Observable<IPaymentGroup> {\n this.logger.info('Payment-view-service getPaymentGroupDetails for: ', paymentReference);\n\n return this.http.get<IPayment>(`${this.paymentLibService.API_ROOT}/payment-groups/fee-pay-apportion/${paymentReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getPBAaccountDetails(): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/pba-accounts`;\n return this.http.get(url, { withCredentials: true }).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postWays2PayCardPayment(serviceRef: string, body: IserviceRequestCardPayment): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/service-request/${serviceRef}/card-payments`;\n const rurl = this.paymentLibService.CARDPAYMENTRETURNURL.replace('.prod', '');\n body['return-url'] = `${rurl}/payment`;\n return this.https.post(url, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n \n postPBAaccountPayment(serviceRef: string, body: IserviceRequestPbaPayment): Observable<any> {\n let randomKey = 'idam-key-' + Math.random().toString().split('.').join('-');\n body['idempotency_key'] = randomKey; \n const url = `${this.paymentLibService.API_ROOT}/service-request/${serviceRef}/pba-payments`;\n return this.https.post(url, body);\n }\n\n postBSPayments(body: AllocatePaymentRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/bulk-scan-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSUnidentifiedPayments(body: UnidentifiedPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSUnsolicitedPayments(body: UnsolicitedPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSAllocationPayments(body: IAllocationPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postPaymentGroupWithRemissions(paymentGroupReference: string, feeId: number, body: AddRemissionRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}/fees/${feeId}/remissions`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n deleteFeeFromPaymentGroup(feeId: number): Observable<any> {\n this.logger.info('Payment-view-service deleteFeeFromPaymentGroup for: ', feeId);\n return this.https.delete(`${this.paymentLibService.API_ROOT}/fees/${feeId}`).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postPaymentToPayHub(body: PaymentToPayhubRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/card-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postPaymentAntennaToPayHub(body: PayhubAntennaRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/telephony-card-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n downloadSelectedReport(reportName: string, startDate: string, endDate:string): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/report/data?date_from=${startDate}&date_to=${endDate}&report_type=${reportName}`;\n return this.https.get(url, { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n 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 { IFee } from \"./IFee\";\nimport { IRefundContactDetails } from \"./IRefundContactDetails\";\n\nexport class PostRefundRetroRemission {\n ccd_case_number: string;\n payment_reference: string;\n refund_reason: string;\n total_refund_amount: any;\n fees: any[];\n is_over_payment: boolean;\n contact_details: IRefundContactDetails\n \n constructor(contact_details:any,fees: any[], payment_reference : string,refund_reason:string, total_refund_amount : any, is_over_payment: string ) {\n this.contact_details = contact_details;\n this.fees = fees;\n this.payment_reference= payment_reference;\n this.refund_reason = refund_reason;\n\t this.total_refund_amount = total_refund_amount;\n this.is_over_payment = is_over_payment === 'op';\n } \n}","import { Component, OnInit, Input } from '@angular/core';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\nimport { ChangeDetectorRef } from '@angular/core';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';\n\n@Component({\n selector: 'ccpay-payment-view',\n templateUrl: './payment-view.component.html',\n styleUrls: ['./payment-view.component.scss']\n})\n\nexport class PaymentViewComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() isTakePayment: boolean;\n @Input() caseType: boolean;\n @Input() 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 fees: any;\n isFullyRefund: boolean;\n @Input(\"isServiceRequest\") isServiceRequest: string;\n\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n ccdCaseNumber: string;\n selectedOption: string;\n dcnNumber: string;\n isStatusAllocated: boolean;\n isRemissionsMatch: boolean;\n feeId: IFee;\n viewStatus: string;\n isRefundRemission: boolean = false;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n remissions: IRemission[] = [];\n remissionFeeAmt: number;\n isRefundRemissionBtnEnable: boolean;\n serviceReference: string;\n isFromServiceRequestPage: boolean;\n isFromPaymentDetailPage: boolean;\n paymentFees: IFee[];\n paymentType: string;\n isContinueBtnDisabled: boolean = true;\n viewCompStatus: string;\n contactDetailsObj: IRefundContactDetails\n notification: any;\n isConfirmationBtnDisabled: boolean;\n refundReference: string;\n refundAmount: string;\n constructor(private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) {\n }\n\n ngAfterContentChecked(): void {\n this.cd.detectChanges();\n } \n\n ngOnInit() {\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION;\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.serviceReference = this.paymentLibComponent.paymentGroupReference;\n this.viewStatus = 'paymentview';\n this.paymentViewService.getApportionPaymentDetails(this.paymentLibComponent.paymentReference).subscribe(\n paymentGroup => {\n let fees = [];\n paymentGroup.fees.forEach(fee => {\n this.isRemissionsMatch = false;\n\n paymentGroup.remissions.forEach(rem => {\n if (rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n if (!this.isRemissionsMatch) {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees\n this.paymentFees =fees;\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n \n },\n (error: any) => this.errorMessage = error\n );\n\n }\n\n get isCardPayment(): boolean {\n return this.paymentGroup.payments[0].method === 'card';\n }\n\n get isTelephonyPayment(): boolean {\n return this.paymentGroup.payments[0].channel === 'telephony';\n }\n\n public goToPaymentList(): void {\n this.paymentLibComponent.viewName = 'payment-list';\n }\n getOverPaymentValue() {\n let feesOverPayment = 0;\n this.paymentGroup.fees.forEach(fee => {\n feesOverPayment += fee.over_payment;\n });\n return feesOverPayment > 0 ? feesOverPayment : this.paymentGroup.payments[0].over_payment;\n\n }\n goToServiceRequestPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = false;\n this.paymentLibComponent.SERVICEREQUEST = 'true';\n this.paymentLibComponent.isFromServiceRequestPage = true;\n window.location.reload();\n }\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n if (!this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.resetOrderData();\n } else {\n this.OrderslistService.getorderRefs().subscribe((data) => this.orderRef = data);\n this.OrderslistService.getorderCCDEvents().subscribe((data) => this.orderCCDEvent = data);\n this.OrderslistService.getorderCreateds().subscribe((data) => this.orderCreated = data);\n this.OrderslistService.getorderDetail().subscribe((data) => this.orderDetail = data);\n this.OrderslistService.getorderPartys().subscribe((data) => this.orderParty = data);\n this.OrderslistService.getorderRemissionTotals().subscribe((data) => this.orderRemissionTotal = data);\n this.OrderslistService.getorderFeesTotals().subscribe((data) => this.orderFeesTotal = data);\n this.OrderslistService.getoorderTotalPaymentss().subscribe((data) => this.orderTotalPayments = data);\n this.viewStatus = 'order-full-view';\n }\n \n }\n\n addRemission(fee: IFee) {\n if(this.chkIsAddRemissionBtnEnable(fee)) {\n this.feeId = fee;\n this.paymentViewService.getApportionPaymentDetails(this.paymentGroup.payments[0].reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n this.paymentLibComponent.isFromPaymentDetailPage = true;\n this.viewStatus = 'addremission';\n this.isRefundRemission = true;\n this.cd.detectChanges();\n },\n (error: any) => this.errorMessage = error\n );\n }\n }\n\n checkForFees(paymentGroup: any) {\n if(paymentGroup !== null && paymentGroup !== undefined)\n {\n if (paymentGroup.fees !== null && paymentGroup.fees !== undefined) {\n return true;\n }\n \n }\n return false;\n }\n processRefund() {\n this.isConfirmationBtnDisabled = true;\n this.errorMessage = '';\n const obj = this.paymentGroup.fees[0];\n this.fees = [{ id: obj.id, \n code: obj.code,\n version:obj.version, \n apportion_amount: obj.apportion_amount,\n calculated_amount: obj.calculated_amount,\n updated_volume: obj.updated_volume ? obj.updated_volume : obj.volume,\n volume: obj.volume,\n refund_amount: this.getOverPaymentValue() }];\n const requestBody = new PostRefundRetroRemission(this.contactDetailsObj,this.fees, this.paymentGroup.payments[0].reference, 'RR037', \n this.getOverPaymentValue(), 'op');\n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n })\n }\n gotoAddressPage(note?: IRefundContactDetails) {\n if (note) {\n this.notification = { contact_details: note, notification_type: note.notification_type };\n }\n this.errorMessage = '';\n this.viewCompStatus = 'overPaymentAddressCapture';\n }\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n //if(!this.chkIsIssueRefundBtnEnable(payment)) {\n this.paymentViewService.getApportionPaymentDetails(payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(payment.reference));\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n this.viewStatus = 'addrefundforremission';\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n //}\n }\n\n goToPaymentViewComponent() {\n this.viewCompStatus = '';\n this.viewStatus = 'paymentview';\n }\n issueRefund(paymentgrp: IPaymentGroup) {\n if (paymentgrp !== null && paymentgrp !== undefined) {\n if(this.chkIsIssueRefundBtnEnable(paymentgrp.payments[0])) {\n if(paymentgrp.payments[0].over_payment > 0) {\n this.viewCompStatus = 'overpayment';\n } else {\n this.paymentGroup = paymentgrp;\n this.viewStatus = 'issuerefund';\n this.isRefundRemission = true;\n this.paymentLibComponent.isFromPaymentDetailPage = true;\n this.isFromPaymentDetailPage = true;\n this.isFromServiceRequestPage = false;\n }\n }\n }\n }\n getRemissionByFeeCode(feeCode: string, remissions: IRemission[]): IRemission {\n if (remissions && remissions.length > 0) {\n for (const remission of remissions) {\n if (remission.fee_code === feeCode) {\n return remission;\n }\n }\n }\n return null;\n }\n\n chkIsIssueRefundBtnEnable(payment: IPayment): boolean {\n if (payment !== null && payment !== undefined) {\n return payment.issue_refund && payment.refund_enable\n } else {\n return false;\n }\n }\n\n chkIsAddRefundBtnEnable(remission: IRemission): boolean {\n if (remission !== null && remission !== undefined) {\n return remission.add_refund;\n } else {\n return false;\n }\n }\n\n chkIsAddRemissionBtnEnable(fee: IFee): boolean {\n if (fee !== null && fee !== undefined) {\n return fee.add_remission && fee.remission_enable;\n } else {\n return false\n }\n}\n selectPymentOption(paymentType: string) {\n this.paymentType = paymentType;\n this.isContinueBtnDisabled = false;\n }\n continuePayment(paymentgrp: IPaymentGroup) {\n \n if (this.paymentType === 'op') {\n this.isFullyRefund = false\n this.viewCompStatus = 'overPaymentAddressCapture';\n } else if(this.paymentType === 'fp') {\n this.isFullyRefund = true\n this.paymentGroup = paymentgrp;\n this.viewStatus = 'issuerefund';\n this.viewCompStatus = \"\";\n this.isRefundRemission = true;\n this.paymentLibComponent.isFromPaymentDetailPage = true;\n this.isFromPaymentDetailPage = true;\n this.isFromServiceRequestPage = this.paymentLibComponent.isFromServiceRequestPage;\n }\n }\n gotoPaymentSelectPage(event: Event) {\n event.preventDefault();\n this.viewCompStatus = 'overpayment';\n }\n getContactDetails(obj:IRefundContactDetails) {\n this.contactDetailsObj = obj;\n this.viewCompStatus = 'overpaymentcheckandanswer';\n }\n\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n\n // 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 // 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}","import { Injectable } from '@angular/core';\nimport {HttpClient, HttpHeaders} from '@angular/common/http';\nimport { Meta } from '@angular/platform-browser';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {catchError} from 'rxjs/operators';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { IPatchRefundAction } from '../../interfaces/IPatchRefundAction';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { IssueRefundRequest } from '../../interfaces/IssueRefundRequest';\nimport { IResubmitRefundRequest } from '../../interfaces/IResubmitRefundRequest';\nimport { IRefundStatusHistory } from '../../interfaces/IRefundStatusHistory';\nimport { IPutNotificationRequest } from '../../interfaces/IPutNotificationRequest';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class RefundsService {\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService,\n private meta: Meta\n ) { }\n\n getRefundReasons(): Observable<IRefundReasons[]> {\n return this.http.get<IRefundReasons[]>(`${this.paymentLibService.REFUNDS_API_ROOT}/reasons`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getRefundRejectReasons(): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/rejection-reasons`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getRefundActions(refundReference: string): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/${refundReference}/actions`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\npatchRefundActions(body:IPatchRefundAction, refundReference: string, reviewerAction: string): Observable<any> {\n // const opts = this.addHeaders({});\n return this.https.patch(`${this.paymentLibService.REFUNDS_API_ROOT}/${refundReference}/action/${reviewerAction}`, body)\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundList(refundstatus?: string, selfexclusive?:boolean): Observable<IRefundList[]> {\n return this.http.get<IRefundList[]>(`${this.paymentLibService.REFUNDS_API_ROOT}?status=${refundstatus}&excludeCurrentUser=${selfexclusive}`, \n {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundStatusHistory(reference?: string) {\n return this.http.get<IRefundStatusHistory>(`${this.paymentLibService.REFUNDS_API_ROOT}/${reference}/status-history`, \n {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundStatusList(ccdCaseNumber:string): Observable<IRefundList[]> {\n return this.http.get<IRefundList[]>(`${this.paymentLibService.REFUNDS_API_ROOT}?ccdCaseNumber=${ccdCaseNumber}`, {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetUserDetails(): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/get-user-details`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n \npostIssueRefund(body: IssueRefundRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.REFUNDS_API_ROOT}/refund`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\nputResendOrEdit(body: IPutNotificationRequest, refundRef:string, notificationType:string): Observable<any> {\n return this.https.put(`${this.paymentLibService.REFUNDS_API_ROOT}/resend/notification/${refundRef}?notificationType=${notificationType}`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\npatchResubmitRefund(body: IResubmitRefundRequest, refund_reference: string): Observable<any> {\n // const opts = this.addHeaders({});\n return this.https.patch(`${this.paymentLibService.REFUNDS_API_ROOT}/resubmit/${refund_reference}`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\naddHeaders(options: any): any {\n const csrfToken = this.meta.getTag('name=csrf-token');\n const headers = {};\n if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n if (csrfToken.content === null) {\n if( document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')) !== undefined ) {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith('XSRF-TOKEN')).split('=')[1]; \n } else {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith(' XSRF-TOKEN')).split('=')[1];\n }\n } else {\n headers['CSRF-Token'] = csrfToken.content;\n }\n options.headers = new HttpHeaders(headers);\n options.responseType = 'text';\n return options;\n}\n}\n","import {Component, OnInit, Input} from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport {RefundsService} from '../../services/refunds/refunds.service';\nimport { IRefundAction } from '../../interfaces/IRefundAction';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { IRefundRejectReason } from '../../interfaces/IRefundRejectReason';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { ActivatedRoute,Router } from '@angular/router';\n\n@Component({\n selector: 'ccpay-process-refund',\n templateUrl: './process-refund.component.html',\n styleUrls: ['./process-refund.component.css']\n})\nexport class ProcessRefundComponent implements OnInit {\n @Input() refundReference: string;\n @Input() refundlistsource: IRefundList;\n\n processRefundForm: FormGroup;\n\n errorMessage = this.getErrorMessage(false, '', '', '');\n sendmeback: string = null;\n viewStatus: string;\n refundActionList: IRefundAction[] = []; \n refundRejectReasonList: IRefundRejectReason[] = []; \n isSendMeBackClicked: boolean = false;\n isRejectClicked: boolean = false;\n isOtherClicked: boolean = false;\n isSuccesspageEnable: boolean = false;\n\n refundActionsHasError: boolean = false;\n refundRejectReasonHasError: boolean = false;\n isReasonFieldEmpty: boolean = false;\n isReasonFieldInvalid: boolean = false;\n reasonFieldMinHasError: boolean = false;\n reasonFieldMaxHasError: boolean = false;\n isReasonEmpty: boolean = false;\n isReasonInvalid: boolean = false;\n successMsg: string = null;\n navigationpage: string;\n ccdCaseNumber: string;\n isFromRefundListPage: boolean;\n cpoDetails:any = null;\n isCPODown: boolean;\n isConfirmButtondisabled: boolean = true;\n constructor(private RefundsService: RefundsService,\n private paymentViewService: PaymentViewService,\n private formBuilder: FormBuilder,\n private OrderslistService: OrderslistService,\n private paymentLibComponent: PaymentLibComponent,\n private router: Router,\n private activeRoute: ActivatedRoute) {\n }\n\n ngOnInit() {\n this.viewStatus = 'RefundProcess';\n this.RefundsService.getRefundActions(this.refundReference).subscribe(\n refundActionList => {\n this.refundActionList = <any>refundActionList;\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err, err);\n }\n );\n this.processRefundForm = this.formBuilder.group({\n refundActionField: new FormControl('', Validators.compose([\n Validators.required\n ])),\n refundRejectReasonField: new FormControl('', Validators.compose([\n Validators.required\n ])),\n sendMeBackField: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$'),\n\n ])),\n enterReasonField: new FormControl('', Validators.compose([\n Validators.required,\n Validators.maxLength(30),\n Validators.pattern('^([a-zA-Z0-9.\\\\s]*)$'),\n ])),\n });\n this.ccdCaseNumber = this.refundlistsource.ccd_case_number;\n\n if((typeof this.paymentLibComponent.TAKEPAYMENT === 'string' && this.paymentLibComponent.TAKEPAYMENT === 'false') || (typeof this.paymentLibComponent.TAKEPAYMENT === 'boolean' && !this.paymentLibComponent.TAKEPAYMENT) ) {\n this.isFromRefundListPage = true;\n }\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).content[0];\n\n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.isCPODown = true;\n }\n );\n }\n \n checkRefundActions(code: string) {\n this.refundActionsHasError = false;\n this.isReasonFieldEmpty = false;\n this.isReasonEmpty = false;\n this.isReasonInvalid = false;\n this.refundRejectReasonHasError = false;\n if(code === 'Return to caseworker') {\n this.isConfirmButtondisabled = true;\n this.isSendMeBackClicked = true;\n this.isRejectClicked = false;\n this.isOtherClicked = false;\n\n } else if (code === 'Approve') {\n this.isSendMeBackClicked = false;\n this.isConfirmButtondisabled = false;\n this.isRejectClicked = false;\n this.isOtherClicked = false;\n\n } else if (code === 'Reject') {\n this.isRejectClicked = true;\n this.isSendMeBackClicked = false;\n this.isOtherClicked = false;\n this.RefundsService.getRefundRejectReasons().subscribe(\n refundRejectReasonList => {\n this.refundRejectReasonList = <any>refundRejectReasonList;\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err, err);\n }\n );\n } else if (code === 'RE005') {\n this.isOtherClicked = true;\n } else if (code !== 'RE005') {\n this.isOtherClicked = false;\n }\n }\n processRefundSubmit() {\n let processRefundRequest;\n let status;\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n const controls = this.processRefundForm.controls;\n const processFormError = controls.sendMeBackField.errors;\n\n if (this.processRefundForm.dirty && controls.refundActionField.valid \n && (controls.refundActionField.value == 'Approve'\n || (controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.valid && controls.refundRejectReasonField.value != 'RE005')\n || (controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.value == 'RE005' && controls.enterReasonField.valid)\n || (controls.refundActionField.value == 'Return to caseworker' && controls.sendMeBackField.valid))) {\n if (controls.refundActionField.value === 'Approve'){\n status = 'APPROVE';\n processRefundRequest = {\n code:'',\n reason: ''\n };\n } else if (controls.refundActionField.value === 'Reject') {\n status = 'REJECT';\n\n processRefundRequest = {\n code: controls.refundRejectReasonField.value ? controls.refundRejectReasonField.value : '',\n reason: controls.refundRejectReasonField.value == 'RE005' ? controls.enterReasonField.value : ''\n };\n } else if (controls.refundActionField.value === 'Return to caseworker') {\n status = 'SENDBACK';\n\n processRefundRequest = {\n code: '',\n reason: controls.sendMeBackField.value\n };\n }\n this.RefundsService.patchRefundActions(processRefundRequest, this.refundReference, status).subscribe(\n response => {\n this.isSuccesspageEnable = true;\n // this.successMsg = JSON.parse(response)['data'];\n this.successMsg = response.replace(/['\"]+/g, '');\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err, err);\n }\n );\n } else {\n if(controls.refundActionField.value == \"\") {\n this.resetForm([true, false, false, false, false, false, false, false], 'action');\n }\n if(controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.value == \"\") {\n this.resetForm([false, true, false, false, false, false, false, false], 'rejectReason');\n }\n if(controls.refundActionField.value == 'Return to caseworker') {\n if(controls.sendMeBackField.value == '' ) {\n this.resetForm([false, false, true, false, false, false, false, false], 'addAreason');\n }\n if(controls.sendMeBackField.value != '' && controls.sendMeBackField.invalid ) {\n this.resetForm([false, false, false, true, false, false, false, false], 'addAreason');\n }\n if(processFormError && processFormError.minlength && processFormError.minlength.actualLength < 3 ) {\n this.resetForm([false, false, false, false, true, false, false, false], 'addAreason');\n }\n if(processFormError && processFormError.maxlength && processFormError.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, false, false, true, false, false], 'addAreason');\n }\n }\n if(controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.value == 'RE005') {\n if(controls.enterReasonField.value === \"\") {\n this.resetForm([false, false, false, false, false, false, true, false], 'enterReason');\n }\n if(controls.enterReasonField.value!== \"\" && controls.enterReasonField.invalid) {\n this.resetForm([false, false, false, false, false, false, false, true], 'enterReason');\n }\n }\n }\n\n }\n getErrorMessage(isErrorExist, status, errorMsg, err) {\n let bodyTxt = 'Please try again later';\n if (status !== 500) {\n if (errorMsg !== undefined) {\n bodyTxt = errorMsg;\n } else {\n bodyTxt = err;\n }\n \n }\n return {\n title: 'Something went wrong',\n body: bodyTxt,\n showError: isErrorExist\n };\n }\n loadRefundListPage() {\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n if (this.navigationpage === 'casetransactions') {\n // window.location.href='/refund-list?takePayment=false&refundlist=true';\n // // this.OrderslistService.setnavigationPage('casetransactions');\n // // this.OrderslistService.setisFromServiceRequestPage(false);\n // // this.paymentLibComponent.VIEW ='case-transactions';\n // // this.paymentLibComponent.viewName = 'case-transactions';\n // // this.paymentLibComponent.ISBSENABLE = true;\n // // this.paymentLibComponent.isRefundStatusView = false;\n this.paymentLibComponent.viewName = 'refundstatuslist';\n this.paymentLibComponent.isRefundStatusView = true;\n } else {\n this.paymentLibComponent.viewName = 'refundstatuslist';\n this.paymentLibComponent.isRefundStatusView = true;\n }\n }\n loadRefundsHomePage() {\n if(typeof this.paymentLibComponent.TAKEPAYMENT === 'string' && this.paymentLibComponent.TAKEPAYMENT === 'false') {\n //window.location.href='/refund-list?takePayment=false&refundlist=true';\n this.paymentLibComponent.viewName = 'refund-list';\n }\n else {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.VIEW ='case-transactions';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n }\n }\n redirecttoRefundListPage() {\n if((typeof this.paymentLibComponent.TAKEPAYMENT === 'string' && this.paymentLibComponent.TAKEPAYMENT === 'false') || (typeof this.paymentLibComponent.TAKEPAYMENT === 'boolean' && !this.paymentLibComponent.TAKEPAYMENT) ) {\n // window.location.href='/refund-list?takePayment=false&refundlist=true';\n this.paymentLibComponent.viewName = 'refund-list';\n }\n else {\n this.loadRefundListPage();\n }\n }\n loadCaseTransactionPage() {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n }\n\n resetForm(vals, field) {\n if(field==='action' || field==='all') {\n this.refundActionsHasError = vals[0];\n }\n if(field==='rejectReason' || field==='all') {\n this.refundRejectReasonHasError = vals[1];\n }\n if(field==='addAreason' || field==='all') {\n this.isReasonFieldEmpty = vals[2];\n this.isReasonFieldInvalid = vals[3];\n this.reasonFieldMinHasError = vals[4];\n this.reasonFieldMaxHasError = vals[5];\n }\n if(field==='enterReason' || field==='all') {\n this.isReasonEmpty = vals[6];\n this.isReasonInvalid = vals[7];\n }\n }\n\n goToCaseReview() {\n const isPayBubble = this.paymentLibComponent.isFromPayBubble;\n if(isPayBubble) {\n this.loadCaseTransactionPage();\n } else {\n this.router.navigate([`/cases/case-details/${this.ccdCaseNumber}`], {relativeTo: this.activeRoute});\n }\n }\n}\n","import {Component, OnInit, Input} from '@angular/core';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { IRefundList } from '../../interfaces/IRefundList';\n\n@Component({\n selector: 'ccpay-refund-list',\n templateUrl: './refund-list.component.html',\n styleUrls: ['./refund-list.component.css']\n})\nexport class RefundListComponent implements OnInit {\n @Input('USERID') USERID: string;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: any[];\n @Input('LOGGEDINUSEREMAIL') LOGGEDINUSEREMAIL:string;\n\n constructor(private refundService: RefundsService) {\n }\n\n tableApprovalHeader: string;\n tableRejectedHeader: string;\n submittedRefundList: IRefundList[] = [];\n rejectedRefundList: IRefundList[] = [];\n // approvalStatus = 'Sent for approval';\n // rejectStatus = 'Update required';\n approvalStatus = 'Sent for approval';\n rejectStatus = 'Update required';\n errorMessage = null;\n isApproveTableVisible:boolean;\n isRejectTableVisible:boolean;\n dropdownvalue: string;\n isAuthorized: boolean = true;\n userLst\n ngOnInit() {\n \n this.userLst = this.LOGGEDINUSERROLES;\n\n \n if(this.LOGGEDINUSERROLES.some(i =>i.includes('payments-refund-approver'))){\n this.isAuthorized = true;\n } else {\n this.isApproveTableVisible = false;\n this.isAuthorized = false;\n }\n\n \n this.tableApprovalHeader = 'Refunds to be approved';\n this.tableRejectedHeader = 'Refunds returned to caseworker';\n\n if(this.isAuthorized) {\n this.refundService.getRefundList(this.approvalStatus,true).subscribe(\n refundList => {\n this.submittedRefundList = refundList['refund_list'];\n this.isApproveTableVisible = true;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n }\n\n this.refundService.getRefundList(this.rejectStatus,false).subscribe(\n refundList => {\n this.rejectedRefundList = refundList['refund_list'];\n this.isRejectTableVisible = true;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n\n }\n \n}","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {Observable} from 'rxjs/internal/Observable';\n\nimport {ICardDetails} from '../../interfaces/ICardDetails';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { catchError } from 'rxjs/operators';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class CardDetailsService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getCardDetails(paymentReference: string): Observable<ICardDetails> {\n this.logger.info('Card-detail-service getCardDetails for: ', paymentReference);\n\n return this.http.get<ICardDetails>(`${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}/details`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit } from '@angular/core';\nimport { CardDetailsService } from '../../services/card-details/card-details.service';\nimport {ICardDetails} from '../../interfaces/ICardDetails';\nimport { PaymentLibComponent } from '../../payment-lib.component';\n\n@Component({\n selector: 'ccpay-card-details',\n templateUrl: './card-details.component.html',\n styleUrls: ['./card-details.component.css']\n})\nexport class CardDetailsComponent implements OnInit {\n pageTitle: string = 'Card details';\n cardDetails: ICardDetails;\n paymentReference: string;\n errorMessage: string;\n\n constructor(private cardDetailsService: CardDetailsService,\n private paymentLibComponent: PaymentLibComponent) { }\n\n ngOnInit() {\n this.cardDetailsService.getCardDetails(this.paymentLibComponent.paymentReference).subscribe(\n cardDetails => this.cardDetails = cardDetails,\n (error: any) => this.errorMessage = <any>error\n );\n }\n\n get getPaymentReference(): string {\n return this.paymentReference;\n }\n\n}\n","import { Component } from '@angular/core';\n\n@Component({\n template: `\n <h1>This is not the page you were looking for!</h1>\n `\n})\nexport class PageNotFoundComponent { }\n","import { Injectable } from '@angular/core';\nimport { PaymentLibService } from '../../payment-lib.service';\nimport { HttpClient } from '@angular/common/http';\nimport { IStatusHistories } from '../../interfaces/IStatusHistories';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { catchError } from 'rxjs/operators';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class StatusHistoryService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getPaymentStatusesByReference(paymentReference: string, paymentMethod: string): Observable<IStatusHistories> {\n this.logger.info('Status-history-service getPaymentStatusesByReference for: ', paymentReference);\n\n return this.http.get<IStatusHistories>(paymentMethod === 'card' || paymentMethod === 'cash' || paymentMethod === 'cheque' || paymentMethod === 'postal order' ?\n `${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}/statuses` :\n `${this.paymentLibService.API_ROOT}/credit-account-payments/${paymentReference}/statuses`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { IStatusHistories } from '../../interfaces/IStatusHistories';\nimport { StatusHistoryService } from '../../services/status-history/status-history.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\n\n@Component({\n selector: 'ccpay-payment-statuses',\n templateUrl: './status-history.component.html',\n styleUrls: ['./status-history.component.css']\n})\nexport class StatusHistoryComponent implements OnInit {\n @Input() isTakePayment: boolean;\n pageTitle: string = 'Payment status history';\n statuses: IStatusHistories;\n errorMessage: string;\n\n constructor(private statusHistoryService: StatusHistoryService,\n private paymentLibComponent: PaymentLibComponent) { }\n\n ngOnInit() {\n this.statusHistoryService.getPaymentStatusesByReference(this.paymentLibComponent.paymentReference, this.paymentLibComponent.paymentMethod).subscribe(\n statuses => this.statuses = statuses,\n (error: any) => this.errorMessage = <any>error.replace(/\"/g,\"\")\n );\n \n }\n\n}\n","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {catchError} from 'rxjs/operators';\nimport { IRefundsNotifications } from '../../interfaces/IRefundsNotifications';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class NotificationService {\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService\n ) { }\n\n getRefundNotification(reference: string): Observable<IRefundsNotifications> {\n return this.http.get<IRefundsNotifications>(`${this.paymentLibService.NOTIFICATION_API_ROOT}/notifications/${reference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getAddressByPostcode(postcode: string): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.NOTIFICATION_API_ROOT}/search/places/v1/postcode?postcode=${postcode}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit, Output, EventEmitter, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { NotificationService } from '../../services/notification/notification.service';\n\n@Component({\n selector: 'ccpay-contact-details',\n templateUrl: './contact-details.component.html',\n styleUrls: ['./contact-details.component.css']\n})\nexport class ContactDetailsComponent implements OnInit {\n @Input('isEditOperation') isEditOperation: boolean;\n @Input('isEditOperationInRefundList') isEditOperationInRefundList: boolean;\n @Input('addressObj') addressObj: any;\n @Output() assignContactDetails: EventEmitter<any> = new EventEmitter();\n @Output() assignContactDetailsInFefundsList: EventEmitter<any> = new EventEmitter();\n @Output() redirectToIssueRefund: EventEmitter<any> = new EventEmitter();\n pageTitle: string = 'Payment status history';\n errorMessage: string;\n isEmailSAddressClicked: boolean = true;\n isShowPickAddress: boolean = false;\n isPostcodeClicked: boolean = false;\n isManualAddressClicked: boolean = false;\n emailAddressForm: FormGroup;\n postCodeForm: FormGroup;\n manualAddressForm: FormGroup;\n addressPostcodeList:any[] = [];\n postcodeAddress:any;\n isAddressBoxEmpty: boolean = false;\n\n isEmailEmpty: boolean = false;\n emailHasError: boolean = false;\n isPostcodeEmpty: boolean = false;\n postcodeHasError: boolean = false;\n isaddressLine1Empty: boolean = false;\n addressLine1HasError: boolean = false;\n addressLine2HasError: boolean = false;\n isTownOrCityEmpty: boolean = false;\n townOrCityHasError: boolean = false;\n isCountyEmpty: boolean = false;\n countyHasError: boolean = false;\n isMPostcodeEmpty: boolean = false;\n mpostcodeHasError: boolean = false;\n isCountryEmpty: boolean = false;\n\n constructor(private formBuilder: FormBuilder,\n private notificationService: NotificationService,\n private paymentLibComponent: PaymentLibComponent) { }\n\n ngOnInit() {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,false,false,false], 'all');\n\n this.emailAddressForm = this.formBuilder.group({\n email: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[a-z0-9._%+-]+@[a-z0-9-]+\\\\.[a-z]{2,4}$')\n ]))\n });\n this.postCodeForm = this.formBuilder.group({\n postcode: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([A-Za-z]{1,2}[0-9]{1,2}[A-Za-z]{0,1} ?[0-9][A-Za-z]{2})')\n ]))\n });\n this.manualAddressForm = this.formBuilder.group({\n addressl1: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[a-zA-Z0-9\\\\s,\\'-]*$')\n ])),\n addressl2: new FormControl('', Validators.compose([\n Validators.pattern('^[a-zA-Z0-9\\\\s,\\'-]*$')\n ])),\n townorcity: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[a-zA-Z0-9\\\\s,\\'-]*$')\n ])),\n county: new FormControl('', Validators.compose([\n Validators.pattern('^[a-zA-Z0-9\\\\s,\\'-]*$')\n ])),\n mpostcode: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([A-Za-z]{1,2}[0-9]{1,2}[A-Za-z]{0,1} ?[0-9][A-Za-z]{2})')\n ])),\n country: new FormControl('', Validators.compose([\n Validators.required\n ]))\n });\n if(this.addressObj !== undefined && this.addressObj !== '') {\n this.setEditDetails();\n }\n if(this.isEditOperationInRefundList === undefined) {\n this.isEditOperationInRefundList = false;\n }\n }\n setEditDetails() {\n if(this.addressObj.notification_type === 'EMAIL') {\n this.isEmailSAddressClicked = true;\n this.isPostcodeClicked = false;\n this.isManualAddressClicked = false;\n this.emailAddressForm.setValue({ email: this.addressObj.contact_details.email });\n } else if(this.addressObj.notification_type === 'LETTER') {\n this.isEmailSAddressClicked = false;\n this.isPostcodeClicked = true;\n this.isManualAddressClicked = true;\n this.manualAddressForm.patchValue({ \n addressl1: this.addressObj.contact_details.address_line,\n townorcity: this.addressObj.contact_details.city,\n county: this.addressObj.contact_details.county,\n country: this.addressObj.contact_details.country,\n mpostcode: this.addressObj.contact_details.postal_code\n });\n }\n }\n\n selectContactOption(type, isLinkedClied) {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,false,false,false,false], 'all');\n if( type === 'Email' && isLinkedClied === 'false'){\n this.isEmailSAddressClicked = true;\n this.isPostcodeClicked = false;\n this.isManualAddressClicked = false;\n } else if(type === 'Postcode' && isLinkedClied === 'false') {\n this.isEmailSAddressClicked = false;\n this.isPostcodeClicked = true;\n this.isManualAddressClicked = false;\n } else if(type === 'Postcode' && isLinkedClied === 'true') {\n this.isEmailSAddressClicked = false;\n this.isPostcodeClicked = true;\n this.isManualAddressClicked = true;\n\n }\n }\n\n finalFormSubmit() {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,false,false,false,false], 'all');\n if( this.isEmailSAddressClicked ){\n const emailField = this.emailAddressForm.controls.email;\n if (this.emailAddressForm.valid) {\n if(!this.isEditOperationInRefundList) {\n this.assignContactDetails.emit( {\n email: emailField.value,\n notification_type: 'EMAIL'\n } );\n } else {\n this.assignContactDetailsInFefundsList.emit({\n email: emailField.value,\n notification_type: 'EMAIL'\n } );\n }\n } else {\n if( emailField.value == '' ) {\n this.resetForm([true,false,false,false,false,false,false,false,false,false,false,false,false,false], 'email');\n }\n if(emailField.value != '' && emailField.invalid ) {\n this.resetForm([false,true,false,false,false,false,false,false,false,false,false,false,false,false], 'email');\n }\n }\n } else if( this.isPostcodeClicked && !this.isManualAddressClicked ) {\n this.postcodeValidation('FS');\n } else if(this.isPostcodeClicked && this.isManualAddressClicked) {\n const fieldCtrls = this.manualAddressForm.controls;\n if (this.manualAddressForm.valid) {\n if(!this.isEditOperationInRefundList) {\n this.assignContactDetails.emit({\n address_line: fieldCtrls.addressl1.value+' '+fieldCtrls.addressl2.value,\n city: fieldCtrls.townorcity.value,\n county: fieldCtrls.county.value,\n postal_code: fieldCtrls.mpostcode.value,\n country: fieldCtrls.country.value,\n notification_type: 'LETTER'\n });\n } else {\n this.assignContactDetailsInFefundsList.emit({\n address_line: fieldCtrls.addressl1.value+' '+fieldCtrls.addressl2.value,\n city: fieldCtrls.townorcity.value,\n county: fieldCtrls.county.value,\n postal_code: fieldCtrls.mpostcode.value,\n country: fieldCtrls.country.value,\n notification_type: 'LETTER'\n });\n }\n } else {\n if( fieldCtrls.addressl1.value == '' ) {\n this.resetForm([false,false,false,false,true,false,false,false,false,false,false,false,false,false], 'address1');\n }\n if(fieldCtrls.addressl1.value != '' && fieldCtrls.addressl1.invalid ) {\n this.resetForm([false,false,false,false,false,true,false,false,false,false,false,false,false,false], 'address1');\n }\n if(fieldCtrls.addressl2.value != '' && fieldCtrls.addressl2.invalid ) {\n this.resetForm([false,false,false,false,false,false,true,false,false,false,false,false,false,false], 'address2');\n }\n if( fieldCtrls.townorcity.value == '' ) {\n this.resetForm([false,false,false,false,false,false,false,true,false,false,false,false,false,false], 'town');\n }\n if(fieldCtrls.townorcity.value != '' && fieldCtrls.townorcity.invalid ) {\n this.resetForm([false,false,false,false,false,false,false,false,true,false,false,false,false,false], 'town');\n }\n if( fieldCtrls.county.value == '' ) {\n this.resetForm([false,false,false,false,false,false,false,false,false,true,false,false,false,false], 'county');\n }\n if(fieldCtrls.county.value != '' && fieldCtrls.county.invalid ) {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,true,false,false,false], 'county');\n }\n if( fieldCtrls.mpostcode.value == '' ) {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,true,false,false], 'mpostcode');\n }\n if(fieldCtrls.mpostcode.value != '' && fieldCtrls.mpostcode.invalid ) {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,false,true,false], 'mpostcode');\n }\n if( fieldCtrls.country.value == '' ) {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,false,false,true], 'country');\n }\n }\n\n }\n\n }\n\n postcodeValidation(str) {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,false,false,false,false], 'all');\n const postcodeField = this.postCodeForm.controls.postcode;\n if (this.postCodeForm.valid) {\n if(str === 'FA') {\n this.notificationService.getAddressByPostcode(postcodeField.value).subscribe(\n refundsNotification => {\n this.addressPostcodeList = refundsNotification['data']['results'];\n this.isShowPickAddress = refundsNotification['data']['header'].totalresults > 0;\n if(!this.isShowPickAddress) {\n this.resetForm([false,false,false,true,false,false,false,false,false,false,false,false,false], 'postcode');\n }\n }\n ),\n (error: any) => {\n this.isShowPickAddress = false;\n this.errorMessage = error.replace(/\"/g,\"\");\n }; \n } else if (str === 'FS') {\n if(this.postcodeAddress !== undefined && this.postcodeAddress) {\n this.isAddressBoxEmpty = false;\n let addressLine=\"\";\n let addressArray = this.postcodeAddress.ADDRESS.split(\",\");\n for( let i=0; i<addressArray.length-2; i++ ) {\n addressLine +=addressArray[i]; \n }\n const addressObject = {\n address_line: addressLine,\n city: this.postcodeAddress.POST_TOWN,\n county: this.postcodeAddress.LOCAL_CUSTODIAN_CODE_DESCRIPTION,\n postal_code: this.postcodeAddress.POSTCODE,\n country: 'United Kingdom',\n notification_type: 'LETTER'\n };\n if(!this.isEditOperationInRefundList) {\n this.assignContactDetails.emit(addressObject);\n } else {\n this.assignContactDetailsInFefundsList.emit(addressObject);\n }\n } else {\n this.isAddressBoxEmpty = true;\n }\n }\n } else {\n if( postcodeField.value == '' ) {\n this.resetForm([false,false,true,false,false,false,false,false,false,false,false,false,false], 'postcode');\n }\n if(postcodeField.value != '' && postcodeField.invalid ) {\n this.resetForm([false,false,false,true,false,false,false,false,false,false,false,false,false], 'postcode');\n }\n }\n }\n redirection(event:any) {\n this.redirectToIssueRefund.emit(event);\n }\n resetForm(val, field) {\n if(field==='email' || field==='all') {\n this.isEmailEmpty = val[0];\n this.emailHasError = val[1];\n }\n if(field==='postcode' || field==='all') {\n this.isPostcodeEmpty = val[2];\n this.postcodeHasError = val[3];\n }\n if(field==='address1' || field==='all') {\n this.isaddressLine1Empty = val[4];\n this.addressLine1HasError = val[5];\n }\n if(field==='address2' || field==='all') {\n this.addressLine2HasError = val[6];\n }\n if(field==='town' || field==='all') {\n this.isTownOrCityEmpty = val[7];\n this.townOrCityHasError = val[8];\n }\n if(field==='county' || field==='all') {\n this.isCountyEmpty = val[9];\n this.countyHasError = val[10];\n }\n if(field==='mpostcode' || field==='all') {\n this.isMPostcodeEmpty = val[11];\n this.mpostcodeHasError = val[12];\n }\n if(field==='country' || field==='all') {\n this.isCountryEmpty = val[13];\n }\n \n }\n}\n","import { Component, Input, OnInit } from '@angular/core';\nimport { IPayment } from '../../interfaces/IPayment';\n\n@Component({\n selector: 'ccpay-pba-details',\n templateUrl: './pba-details.component.html',\n styleUrls: ['./pba-details.component.css']\n})\nexport class PbaDetailsComponent implements OnInit {\n @Input() payment: IPayment;\n\n constructor() { }\n\n ngOnInit() {\n }\n\n}\n","import { Injectable } from '@angular/core';\nimport { Logger } from './logger.service';\n\nexport let isDebugMode = false;\n\nconst noop = (): any => undefined;\n\n@Injectable({\n providedIn: 'root'\n})\nexport class ConsoleLoggerService implements Logger {\n\n get info() {\n if (isDebugMode) {\n return console.info.bind(console);\n } else {\n return noop;\n }\n }\n\n get warn() {\n if (isDebugMode) {\n return console.warn.bind(console);\n } else {\n return noop;\n }\n }\n\n get error() {\n if (isDebugMode) {\n return console.error.bind(console);\n } else {\n return noop;\n }\n }\n\n invokeConsoleMethod(type: string, args?: any): void {\n const logFn: Function = (console)[type] || console.log || noop;\n logFn.apply(console, [args]);\n }\n}\n","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {LoggerService} from '../shared/logger/logger.service';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport {catchError} from 'rxjs/operators';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class CaseTransactionsService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService\n ) { }\n\n getPaymentGroups(ccdCaseNumber: string): Observable<IPaymentGroup[]> {\n this.logger.info('Case-transactions-service getPaymentGroups for: ', ccdCaseNumber);\n\n return this.http.get<IPaymentGroup[]>(`${this.paymentLibService.API_ROOT}/cases/${ccdCaseNumber}/paymentgroups`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {catchError} from 'rxjs/operators';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class BulkScaningPaymentService {\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService\n ) { }\n\n getBSPaymentsByCCD(ccdCaseNumber: string): Observable<IBSPayments> {\n return this.http.get<IBSPayments>(`${this.paymentLibService.BULKSCAN_API_ROOT}/cases/${ccdCaseNumber}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getBSPaymentsByDCN(dcn: string): Observable<IBSPayments> {\n return this.http.get<IBSPayments>(`${this.paymentLibService.BULKSCAN_API_ROOT}/cases?document_control_number=${dcn}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSAllocatePayment(body: AllocatePaymentRequest, paymentRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentRef}/bulk-scan-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSPaymentStrategic(body: AllocatePaymentRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/bulk-scan-payments-strategic`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSWoPGStrategic(body: AllocatePaymentRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/bulk-scan-payments-strategic`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n patchBSChangeStatus(dcnNumber: string, status: string): Observable<any> {\n return this.https.patch(`${this.paymentLibService.API_ROOT}/bulk-scan-payments/${dcnNumber}/status/${status}`, status).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n calculateOutStandingAmount(paymentGroup: IPaymentGroup): number {\n let feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00;\n\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n });\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n } \n return (feesTotal - remissionsTotal) - paymentsTotal;\n }\n\n removeUnwantedString(input: string, replaceText: string) {\n const pattern = /[\\_]/gi;\n return input.replace(pattern, replaceText);\n }\n\n downloadSelectedReport(reportName: string, startDate: string, endDate:string): Observable<any> {\n return this.https.get(`${this.paymentLibService.BULKSCAN_API_ROOT}/report/data?date_from=${startDate}&date_to=${endDate}&report_type=${reportName}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { CaseTransactionsService } from '../../services/case-transactions/case-transactions.service';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IPaymentView } from '../../interfaces/IPaymentView';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { Router } from '@angular/router';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-case-transactions',\n templateUrl: './case-transactions.component.html',\n styleUrls: ['./case-transactions.component.css']\n})\nexport class CaseTransactionsComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input() isTakePayment: boolean;\n @Input() isFromServiceRequestPage: boolean;\n takePayment: boolean;\n ccdCaseNumber: string;\n excReference: string;\n paymentGroups: any[] = [];\n payments: IPayment[] = [];\n nonPayments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n fees: IFee[] = [];\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalNonOffPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n paymentRef: string;\n isTurnOff: boolean;\n 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 const serviceRequest = this.paymentLibComponent.SERVICEREQUEST;\n if ( serviceRequest !== undefined && serviceRequest.toString() === 'true' ) {\n this.serviceRequestValue = 'true';\n } else {\n this.serviceRequestValue = 'false';\n this.paymentLibComponent.isFromServiceRequestPage = false;\n }\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isNewPcipalOff = this.paymentLibComponent.ISNEWPCIPALOFF;\n this.isOldPcipalOff = this.paymentLibComponent.ISOLDPCIPALOFF;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n if (!this.isTurnOff) {\n // if (this.lsCcdNumber !== this.ccdCaseNumber) {\n // this.router.navigateByUrl(`/ccd-search?takePayment=true`);\n // }\n\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.isAnyFeeGroupAvilable =true;\n this.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts();\n this.calculateOrderFeesAmounts();\n this.calculateRefundAmount();\n if (this.isFromServiceRequestPage) {\n this.OrderslistService.getSelectedOrderRefId().subscribe((data) => this.orderRef = data);\n this.goToOrderViewDetailSection(this.orderRef);\n } else {\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).content[0];\n \n },\n (error: any) => {\n this.errorMessage = <any>error ? error.replace(/\"/g,\"\") : \"\";\n this.isCPODown = true;\n }\n );\n \n }\n\n \n },\n (error: any) => {\n this.errorMessage = <any>error ? error.replace(/\"/g,\"\") : \"\";\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n } else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.isAnyFeeGroupAvilable =true;\n this.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts();\n this.calculateOrderFeesAmounts();\n this.totalRefundAmount = this.calculateRefundAmount();\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).content[0];\n\n },\n (error: any) => {\n this.errorMessage = <any>error ? error.replace(/\"/g,\"\") : \"\";\n this.setDefaults();\n this.isCPODown = true;\n }\n );\n\n },\n (error: any) => {\n this.errorMessage = <any>error ? error.replace(/\"/g,\"\") : \"\";\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n }\n\n if( this.paymentGroups !== undefined) {\n this.checkForExceptionRecord();\n }\n \n if(this.OrderslistService.getisFromServiceRequestPages() !== null) {\n this.OrderslistService.getisFromServiceRequestPages().subscribe((data) => this.isFromServiceRequestPage = data);\n }\n \n }\n\n setDefaults(): void {\n this.totalPayments = 0.00;\n this.totalRemissions = 0.00;\n this.totalNonOffPayments = 0.00;\n this.totalFees = 0.00;\n }\n\n getAllocationStatus(payments: any) {\n\n let paymentAllocation = payments.payment_allocation,\n isAllocationStatusExist = paymentAllocation.length > 0;\n return isAllocationStatusExist ? paymentAllocation[0].allocation_status : '-';\n //return \"-\";\n\n }\n\n checkForExceptionRecord(): void {\n \n if (this.paymentGroups.length === 0 && (this.selectedOption.toLocaleLowerCase() === 'ccdorexception' || this.selectedOption.toLocaleLowerCase() === 'rc')) {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n recordData => {\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length > 0 && recordData['data'].ccd_reference > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length > 0 && recordData['data'].ccd_reference === undefined) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n }\n\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length === undefined && recordData['data'].ccd_reference > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n });\n }\n\n if (this.paymentGroups.length === 0 && this.selectedOption.toLocaleLowerCase() === 'dcn') {\n if (this.paymentLibComponent.CCD_CASE_NUMBER.length > 0 && this.paymentLibComponent.EXC_REFERENCE.length > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n } else if (this.paymentLibComponent.CCD_CASE_NUMBER.length === 0 && this.paymentLibComponent.EXC_REFERENCE.length > 0) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n } else {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n }\n if (this.paymentGroups.length > 0)\n this.paymentGroups.forEach(paymentGroup => {\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.case_reference !== undefined && payment.ccd_case_number === undefined) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n } else {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n\n });\n }\n });\n }\n\n calculateOrderFeesAmounts(): void {\n let feesTotal = 0.00;\n this.paymentGroups.forEach(paymentGroup => {\n this.resetOrderVariables();\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.orderFeesTotal = this.orderFeesTotal + fee.calculated_amount\n this.overPaymentAmount = this.overPaymentAmount + fee.over_payment\n }\n )\n }\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n this.orderRemissionTotal = this.orderRemissionTotal + remission.hwf_amount;\n });\n }\n\n if (paymentGroup.payments) {\n const isFeeOverPaymentExist = this.overPaymentAmount === 0;\n paymentGroup.payments.forEach(payment => {\n if(isFeeOverPaymentExist) {\n this.overPaymentAmount = this.overPaymentAmount + payment.over_payment\n }\n if (payment.status.toUpperCase() === 'SUCCESS') {\n this.orderTotalPayments = this.orderTotalPayments + payment.amount;\n }\n });\n }\n\n // this.orderPendingPayments = (this.orderFeesTotal - this.orderRemissionTotal) - this.orderTotalPayments;\n if (paymentGroup.service_request_status === 'Paid') {\n this.orderStatus = paymentGroup.service_request_status;\n this.orderAddBtnEnable = false;\n } else if (paymentGroup.service_request_status === 'Partially paid' || paymentGroup.service_request_status === 'Not paid') {\n this.orderStatus = paymentGroup.service_request_status;\n this.orderAddBtnEnable = true;\n } \n\n //this.orderLevelFees.push({orderRefId:paymentGroup['payment_group_reference'],orderTotalFees: this.orderFeesTotal,orderStatus: this.orderStatus,orderParty:'Santosh', orderCCDEvent:'Case Creation',orderCreated: new Date(), orderAddBtnEnable: this.orderAddBtnEnable}); this.cpoDetails['createdTimestamp']\n if (this.cpoDetails !== null) {\n this.orderLevelFees.push({ orderRefId: paymentGroup['payment_group_reference'], orderTotalFees: this.orderFeesTotal, orderStatus: this.orderStatus, orderParty: this.cpoDetails['responsibleParty'], orderCCDEvent: this.cpoDetails['action'], orderCreated: paymentGroup['date_created'], orderAddBtnEnable: this.orderAddBtnEnable });\n\n } else {\n this.orderLevelFees.push({ orderRefId: paymentGroup['payment_group_reference'], orderTotalFees: this.orderFeesTotal, orderStatus: this.orderStatus, orderParty: '', orderCCDEvent: '', orderCreated: paymentGroup['date_created'], orderAddBtnEnable: this.orderAddBtnEnable });\n }\n\n if (this.orderStatus !== 'Paid') {\n this.OrderslistService.setOrdersList(this.orderLevelFees);\n }\n });\n };\n\n resetOrderVariables(): void {\n this.orderFeesTotal = 0.00;\n this.orderTotalPayments = 0.00;\n this.orderRemissionTotal = 0.00;\n this.orderPendingPayments = 0.00;\n this.isAddFeeBtnEnabled = true;\n\n };\n\n goToOrderViewDetailSection(orderReferenceObj: any) {\n if (this.isFromServiceRequestPage) {\n this.OrderslistService.setOrderRefId(orderReferenceObj);\n this.orderRef = orderReferenceObj;\n } else {\n this.OrderslistService.setOrderRefId(orderReferenceObj.orderRefId);\n this.orderRef = orderReferenceObj.orderRefId;\n }\n\n this.orderFeesTotal = 0.00;\n this.orderRemissionTotal = 0.00;\n this.orderTotalPayments = 0.00;\n this.orderPendingPayments = 0.00;\n\n this.orderDetail = this.paymentGroups.filter(x => x.payment_group_reference === this.orderRef);\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.fees) {\n orderDetail.fees.forEach(fee => {\n this.orderFeesTotal = this.orderFeesTotal + fee.calculated_amount;\n });\n }\n if (orderDetail.remissions) {\n orderDetail.remissions.forEach(remission => {\n this.orderRemissionTotal = this.orderRemissionTotal + remission.hwf_amount;\n });\n if (orderDetail.payments) {\n this.payment = orderDetail.payments[0];\n orderDetail.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n this.orderTotalPayments = this.orderTotalPayments + payment.amount;\n }\n });\n }\n }\n this.orderStatus = orderDetail.service_request_status;\n });\n //this.orderPendingPayments = (this.orderFeesTotal - this.orderRemissionTotal) - this.orderTotalPayments;\n // this.orderRef = orderReferenceObj.orderRefId;\n // if (this.orderPendingPayments <= 0.00) {\n // this.orderStatus = 'Paid';\n // } else if (this.orderFeesTotal > 0 && (this.orderTotalPayments > 0 || this.orderRemissionTotal > 0) && (this.orderTotalPayments < this.orderPendingPayments)) {\n // this.orderStatus = 'Partially paid'\n // } else {\n // this.orderStatus = 'Not paid'\n // }\n\n\n if (this.cpoDetails !== null) {\n this.orderParty = this.cpoDetails['responsibleParty'];\n this.orderCreated = this.cpoDetails['createdTimestamp'];\n this.orderCCDEvent = this.cpoDetails['action'];\n } else {\n this.orderParty = '';\n this.orderCCDEvent = '';\n this.orderCreated = orderReferenceObj.orderCreated;\n }\n this.viewStatus = 'order-full-view';\n }\n\n redirectToOrderFeeSearchPage(event: any, orderef: any) {\n if(orderef.orderAddBtnEnable) {\n event.preventDefault();\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = orderef.orderRefId;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n }\n\n \n\n\n calculateAmounts(): void {\n let feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00,\n nonOffLinePayment = 0.00;\n\n this.paymentGroups.forEach(paymentGroup => {\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n if (fee.date_created) {\n let a = fee.amount_due === undefined;\n let b = fee.amount_due <= 0;\n this.clAmountDue = a ? this.clAmountDue + fee.net_amount : b ? this.clAmountDue + 0 : this.clAmountDue + fee.amount_due;\n }\n fee['payment_group_reference'] = paymentGroup['payment_group_reference'];\n this.fees.push(fee);\n } else {\n feesTotal = feesTotal + fee.calculated_amount;\n this.fees.push(fee);\n }\n\n });\n }\n if (this.isTurnOff) {\n this.totalFees = feesTotal;\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n let allocationLen = payment.payment_allocation;\n\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n if (allocationLen.length === 0 || allocationLen.length > 0 && allocationLen[0].allocation_status === 'Allocated') {\n nonOffLinePayment = nonOffLinePayment + payment.amount;\n }\n if (allocationLen.length > 0) {\n this.nonPayments.push(payment);\n }\n }\n if (allocationLen.length === 0) {\n this.payments.push(payment);\n }\n payment.paymentGroupReference = paymentGroup.payment_group_reference\n this.allPayments.push(payment);\n } else {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n this.payments.push(payment);\n }\n payment.paymentGroupReference = paymentGroup.payment_group_reference\n this.allPayments.push(payment);\n }\n });\n }\n this.totalPayments = paymentsTotal;\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n this.totalNonOffPayments = nonOffLinePayment;\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remisison => {\n remissionsTotal = remissionsTotal + remisison.hwf_amount;\n this.remissions.push(remisison);\n });\n }\n this.totalRemissions = remissionsTotal;\n });\n\n }\n\n calculateRefundAmount() {\n if (!this.isTurnOff) {\n let isNewPaymentGroup = false;\n\n this.paymentGroups.forEach((paymentGroup, index) => {\n let grpOutstandingAmount = 0.00,\n feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00,\n fees = [];\n\n if (paymentGroup.fees) {\n // this.isFeeRecordsExist = true;\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n\n this.isRemissionsMatch = false;\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(rem => {\n if (rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n // if(!fees.find(k => k.code=fee.code))\n // {\n fees.push(fee);\n //}\n }\n });\n }\n if (!this.isRemissionsMatch) {\n fees.push(fee);\n }\n\n if (fee.date_created) {\n isNewPaymentGroup = true;\n } else {\n this.isHistoricGroupAvailable = true;\n this.paymentGroups[index]['old'] = true;\n }\n });\n this.paymentGroups[index].fees = fees;\n }\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n }\n grpOutstandingAmount = (feesTotal - remissionsTotal) - paymentsTotal;\n if (grpOutstandingAmount > 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = true;\n this.isFeeRecordsExist = true;\n this.paymentRef = paymentGroup.payment_group_reference;\n }\n if (paymentGroup.fees && paymentGroup.fees.length > 0 && grpOutstandingAmount <= 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = false;\n }\n });\n if ((!isNewPaymentGroup && this.isHistoricGroupAvailable) || (!isNewPaymentGroup && !this.isHistoricGroupAvailable)) {\n this.isAnyFeeGroupAvilable = false;\n }\n } else {\n let totalRefundAmount = 0,\n isFeeAmountZero = false;\n this.paymentGroups.forEach(paymentGroup => {\n let grpOutstandingAmount = 0.00,\n feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00;\n if (paymentGroup.fees) {\n this.isFeeRecordsExist = true;\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n if (fee.calculated_amount === 0) {\n isFeeAmountZero = true\n }\n });\n\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n }\n grpOutstandingAmount = (feesTotal - remissionsTotal) - paymentsTotal;\n if (grpOutstandingAmount < 0) {\n if (totalRefundAmount === 0) {\n totalRefundAmount = grpOutstandingAmount;\n } else {\n totalRefundAmount = (totalRefundAmount + grpOutstandingAmount);\n }\n }\n else if (grpOutstandingAmount > 0 || (grpOutstandingAmount === 0 && isFeeAmountZero)) {\n this.isGrpOutstandingAmtPositive = true;\n }\n });\n return totalRefundAmount * -1;\n }\n }\n\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n }\n\n redirectToFeeSearchPage(event: any) {\n event.preventDefault();\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n url += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n url += `&caseType=${this.caseType}`\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}${url}`);\n }\n\n addRemission(fee: IFee) {\n if(this.chkForAddRemission(fee.code)) {\n this.feeId = fee;\n this.viewStatus = 'addremission';\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error? error.replace(/\"/g,\"\") : \"\"\n );\n }\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n this.paymentViewService.getApportionPaymentDetails(payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n this.paymentGroup.payments = paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj.reference === payment.reference);\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n this.viewStatus = 'addrefundforremission';\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n\n redirectToremissionPage(event: any) {\n event.preventDefault();\n this.paymentLibComponent.viewName = 'remission'\n }\n goToServiceRequestPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = false;\n this.paymentLibComponent.SERVICEREQUEST = 'true';\n this.paymentLibComponent.isFromServiceRequestPage = true;\n window.location.reload();\n }\n redirectToReportsPage(event: any) {\n event.preventDefault();\n this.router.navigateByUrl(`/reports?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}`);\n }\n\n loadFeeSummaryPage(paymentGroup: IPaymentGroup) {\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.payment_group_reference;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n\n goToPaymentViewComponent(paymentGroup: any) {\n this.paymentLibComponent.paymentMethod = paymentGroup.paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentGroup.paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n\n goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent({ paymentGroupReference, paymentReference, paymentMethod });\n }\n\n selectedUnprocessedFeeEvent(unprocessedRecordId: string) {\n if (unprocessedRecordId) {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = false;\n }\n this.isUnprocessedRecordSelected = true;\n } else {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = true;\n }\n this.isUnprocessedRecordSelected = false;\n }\n }\n\n getUnprocessedFeeCount(unProcessedRecordCount: number) {\n this.unprocessedRecordCount = unProcessedRecordCount;\n }\n\n calculateAmountDue(fee: IFee) {\n\n if (fee.date_created) {\n return fee.amount_due !== undefined ? fee.amount_due : fee.net_amount;\n } else {\n return \"0.00\";\n }\n }\n\n confirmRemoveFee(fee: IFee) {\n this.isRemoveBtnDisabled = false;\n this.feeId = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n cancelRemoval() {\n this.viewStatus = 'main';\n }\n\n removeFee(fee: any) {\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n window.location.reload();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n\n issueRefund(payment: IPayment) {\n if (payment !== null && payment !== undefined) {\n if(this.chkIssueRefundBtnEnable(payment)) {\n this.viewStatus = 'issuerefund';\n this.payment = payment;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.isRefundRemission = true;\n }\n }\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund()) {\n if (this.orderDetail[0]['remissions'].length > 0) {\n for (const remission of this.orderDetail[0]['remissions']) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n }\n return true;\n } else {\n return false;\n }\n }\n\n chkForPBAPayment(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isPBA = true;\n }\n });\n }\n });\n if (this.isPBA) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (payment !== null && payment !== undefined) {\n return payment.issue_refund && payment.refund_enable\n } else {\n return false;\n }\n // if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n // payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n // this.isIssueRefunfBtnEnable = true;\n // }\n // if (this.isIssueRefunfBtnEnable) {\n // return true;\n // } else {\n // return false;\n // };\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n check4AllowedRoles2AccessPBApayment = (): boolean => {\n return this.isEligible4PBAPayment.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n if (payment !== null && payment !== undefined) {\n let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\n }\n }\n\n loadPBAAccountPage(orderRef: IPayment) {\n this.paymentLibComponent.pbaPayOrderRef = orderRef;\n this.paymentLibComponent.viewName = 'pba-payment';\n }\n}","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 if(paymentGroup.remissions) {\n this.isRemissionsMatch = false;\n paymentGroup.remissions.forEach(rem => {\n if(rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n\n if(!this.isRemissionsMatch) {\n fees.push(fee);\n }\n } else {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees;\n }\n\n this.outStandingAmount = this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n\n confirmRemoveFee(fee: IFee){\n this.isRemoveBtnDisabled = false;\n this.currentFee = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n removeFee(fee: any){\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n if (this.paymentGroup.fees && this.paymentGroup.fees.length > 1){\n this.totalAfterRemission = 0;\n this.getPaymentGroup();\n this.viewStatus = 'main';\n return;\n }\n this.loadCaseTransactionPage();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n loadCaseTransactionPage() {\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n\n let partUrl = `selectedOption=${this.paymentLibComponent.SELECTED_OPTION}`;\n partUrl +=this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n 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 { IRefundContactDetails } from './IRefundContactDetails';\n\nexport class PostIssueRefundRetroRemission {\n remissionReference: string;\n contact_details: IRefundContactDetails;\n\n constructor(remissionReference : string, contactDeatils: any) {\n this.remissionReference= remissionReference;\n this.contact_details = contactDeatils;\n } \n}","import { Component, OnInit, Input, Output, EventEmitter} from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl, RequiredValidator, FormArray } from '@angular/forms';\nimport { IFee } from '../../interfaces/IFee';\nimport {Router} from '@angular/router';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\n\nimport { IPayment } from '../../interfaces/IPayment';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';\nimport { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\nimport { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';\nimport {ChangeDetectorRef} from '@angular/core';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\nconst resolvedPromise = Promise.resolve(null);\n\n@Component({\n selector: 'ccpay-add-remission',\n templateUrl: './add-remission.component.html',\n styleUrls: ['./add-remission.component.scss']\n})\nexport class AddRemissionComponent implements OnInit {\n @Input() fee: IFee;\n @Input() fees: any [];\n @Input() payment: IPayment;\n @Input() remission: IRemission;\n @Input() ccdCaseNumber: string;\n @Input() caseType: string;\n @Input() viewCompStatus: string;\n @Input() paymentGroupRef: string;\n @Input() isTurnOff: boolean;\n @Input() isRefundRemission: boolean;\n @Input() 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('isFullyRefund') isFullyRefund: boolean;\n @Input() feeamount: number;\n @Input() refundPaymentReference: string;\n @Input() isFromRefundStatusPage: boolean;\n @Input() changeRefundReason: string;\n @Input(\"isServiceRequest\") isServiceRequest: string;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input('orderDetail') orderDetail: any[];\n @Input('orderRef') orderRef: string;\n @Input('orderStatus') orderStatus: string;\n @Input('orderParty') orderParty: string;\n @Input('orderCreated') orderCreated: Date;\n @Input('orderCCDEvent') orderCCDEvent: string;\n @Input('takepayment') takePayment: boolean;\n @Input('orderFeesTotal') orderFeesTotal: number;\n @Input('orderTotalPayments') orderTotalPayments: number;\n @Input('orderRemissionTotal') orderRemissionTotal: number;\n @Output() cancelRemission: EventEmitter<void> = new EventEmitter();\n //@Output() refundListReason: EventEmitter<any> = new EventEmitter({reason:string, code:string});\n @Output() refundListReason = new EventEmitter<{reason: string, code: string}>();\n @Output() refundListAmount: EventEmitter<string> = new EventEmitter();\n @Output() refundFees: EventEmitter<IFee[]> = new EventEmitter<IFee[]>();\n refund = {\n reason: {\n duplicate: 'Duplicate payment',\n humanerror: 'Human error',\n caseWithdrawn: 'Case withdrawn',\n other: 'Other'\n }\n }\n contactDetailsObj: IRefundContactDetails;\n notification: any;\n remissionForm: FormGroup;\n hasErrors = false;\n viewStatus = 'main';\n errorMessage = null;\n option: string = null;\n isConfirmationBtnDisabled: boolean = false;\n bsPaymentDcnNumber: string;\n selectedValue = 'yes';\n amount: any;\n retroRemission: boolean = false;\n remissionReference: string = '';\n refundReference: string;\n refundAmount: string;\n paymentExplanationHasError: boolean = false;\n refundReason:string;\n selectedRefundReason: string;\n displayRefundReason: string;\n refundCode:string;\n remessionPayment:IPayment;\n isRemissionCodeEmpty: boolean = false;\n remissionCodeHasError: boolean = false;\n isAmountEmpty: boolean = false;\n isReasonEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n refundHasError:boolean = false;\n isPaymentSuccess: boolean = false;\n isRemissionApplied: boolean = false;\n remissionamt:number;\n elementId:any;\n // refundReasons: any[] = [];\n commonRefundReasons: any[] = [];\n showReasonText: boolean;\n isRefundReasonsSelected: boolean;\n default: string;\n reasonLength: number;\n refundReasons:IRefundReasons[];\n pattern1: string;\n pattern2: string;\n sendOrderDetail: any[];\n sendOrderRef: string;\n paymentReference : string;\n class='';\n errorMsg = new Array();\n totalRefundAmount: number;\n quantityUpdated: number;\n fullRefund: boolean;\n allowedRefundAmount: number;\n isRemissionsMatch: boolean;\n paymentFees: IFee[];\n paymentGroup: IPaymentGroup;\n isStatusAllocated: boolean;\n isFromCheckAnsPage: boolean;\n refundAmtForFeeVolumes: number;\n \n component: { account_number: string; amount: number; case_reference: string; ccd_case_number: string; channel: string; currency: string; customer_reference: string; date_created: string; date_updated: string; description: string; method: string; organisation_name: string; payment_allocation: any[]; reference: string; service_name: string; site_id: string; status: string; };\n\n constructor(private formBuilder: FormBuilder,\n private router: Router,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private refundService: RefundsService,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.errorMessage = '';\n this.errorMsg = [];\n this.default = 'Select a different reason';\n this.pattern1 = '^([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})$';\n this.pattern2 = '^([A-Za-z]{2}[0-9]{2})-([0-9]{6})$';\n if(this.viewCompStatus !== '' && this.viewCompStatus !== undefined){\n this.viewStatus = '';\n }\n if(this.remission) {\n }\n if(this.fee) {\n this.amount = (this.fee.volume * this.fee.calculated_amount);\n }\n \n if (this.payment){\n this.paymentReference = this.payment.reference;\n this.remessionPayment = this.payment;\n if(this.payment.status === 'Success') {\n this.isPaymentSuccess = true;\n }\n }\n this.option = this.paymentLibComponent.SELECTED_OPTION;\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.remissionForm = this.formBuilder.group({\n remissionCode: new FormControl('', \n Validators.compose([\n Validators.required,\n Validators.pattern(`(${this.pattern1})|(${this.pattern2})`)\n ]) \n ),\n amount: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[0-9]+(\\.[0-9]{1,2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n refundDDReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl(),\n feeAmount: new FormControl(),\n feesList: this.formBuilder.array([])\n });\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundDDReason'].setValue('Select a different reason', {onlySelf: true});\n if(this.refundPaymentReference !== undefined && this.refundPaymentReference.length >0) {\n this.paymentReference = this.refundPaymentReference\n } else {\n this.paymentReference = this.payment.reference;\n }\n \n\n if(this.isFromServiceRequestPage) {\n this.paymentViewService.getApportionPaymentDetails(this.paymentReference).subscribe(\n paymentGroup => {\n let fees = [];\n paymentGroup.fees.forEach(fee => {\n this.isRemissionsMatch = false;\n \n paymentGroup.remissions.forEach(rem => {\n if (rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n if (!this.isRemissionsMatch) {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees\n this.paymentFees =fees;\n this.fees = fees;\n this.paymentGroup = paymentGroup;\n \n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n this.refundFeesList();\n },\n (error: any) => this.errorMessage = error\n );\n }\n\n \n if (this.fees && this.viewCompStatus === 'issuerefund') {\n this.refundFeesList();\n }\n\n if(this.viewCompStatus === ''){\n this.viewStatus = 'main';\n }\n \n if(this.viewCompStatus === 'issuerefundpage1'){\n this.refundService.getRefundReasons().subscribe(\n refundReasons => { \n this.refundReasons = refundReasons.filter((data) => data.recently_used === false);\n this.refundReasons = this.refundReasons.filter((data) => data.name !== 'Retrospective remission' && data.name !== 'Overpayment');\n this.cd.detectChanges();\n this.commonRefundReasons = refundReasons.filter((data) => data.recently_used === true);\n this.commonRefundReasons.sort((a, b) => a.toString().localeCompare(b));\n this.cd.detectChanges();\n } );\n this.refundReason = this.changeRefundReason;\n }\n \n if(this.viewCompStatus === 'processretroremissonpage' && this.isFromRefundListPage){\n this.viewStatus = 'processretroremissonpage';\n }\n if(this.orderDetail !== undefined){\n this.paymentViewService.getApportionPaymentDetails(this.orderDetail[0].payments[0].reference).subscribe(\n paymentGroup => {\n this.fees = paymentGroup.fees;\n this.paymentReference = paymentGroup.payments[0].reference;\n },\n (error: any) => this.errorMessage = error\n );\n }\n\n }\n goToPaymentViewComponent() {\n this.paymentLibComponent.paymentMethod = this.payment.method;\n this.paymentLibComponent.paymentGroupReference = this.paymentGroupRef;\n this.paymentLibComponent.paymentReference = this.paymentReference;\n //this.PaymentViewComponent.viewCompStatus = 'overpayment';\n this.paymentLibComponent.viewName = 'payment-view';\n }\n refundFeesList() {\n const creds = this.remissionForm.controls.feesList as FormArray;\n // if(creds.controls.length > 0) {\n for(var i=0;i<this.fees.length;i++) {\n creds.push(this.formBuilder.group({\n id: this.fees[i].id,\n code: this.fees[i].code,\n volume: this.fees[i].volume,\n calculated_amount: this.fees[i].calculated_amount,\n apportion_amount: this.fees[i].apportion_amount,\n ccd_case_number: this.fees[i].ccd_case_number,\n description: this.fees[i].description,\n net_amount: this.fees[i].net_amount,\n version: this.fees[i].version,\n refund_amount : [''],\n selected:[''] ,\n updated_volume: this.fees[i].volume\n }));\n }\n this.cd.detectChanges();\n //}\n }\n\n get feesList()\n {\n const dd =this.remissionForm.get('feesList') as FormArray ;\n return this.remissionForm.get('feesList') as FormArray;\n }\n\n noneSelected(){\n if(this.isFullyRefund) {\n return false;\n } else {\n if(!this.feesList.controls.some(item => item.get('selected').value === true)) {\n this.errorMsg = [];\n [].forEach.call(document.querySelectorAll('input'), function (el) {\n el.classList.remove('inline-error-class');\n });\n }\n return !this.feesList.controls.some(item => item.get('selected').value === true);\n }\n }\n \n check_en (i,v1: any, AppAmt,Volume) {\n const ele = document.getElementById(v1) as HTMLInputElement;\n const formArray = this.remissionForm.controls.feesList as FormArray;\n \n if(ele.checked){\n formArray.at(i).get('refund_amount').setValue(AppAmt);\n formArray.at(i).get('volume').setValue(Volume);\n formArray.at(i).get('selected').setValue(true);\n formArray.at(i).get('updated_volume').setValue(Volume);\n (<HTMLInputElement>document.getElementById('feeAmount_'+v1)).value = AppAmt;\n document.getElementById('feeAmount_'+v1).removeAttribute(\"disabled\"); \n if(Volume === 1) {\n (<HTMLInputElement>document.getElementById('VolumeUpdated_'+v1)).value = Volume;\n } else {\n (<HTMLInputElement>document.getElementById('feeVolumeUpdated_'+v1)).value = Volume;\n }\n \n if (document.getElementById('feeVolumeUpdated_'+v1) !== null) {\n document.getElementById('feeAmount_'+v1).removeAttribute(\"disabled\"); \n document.getElementById('feeVolumeUpdated_'+v1).removeAttribute(\"disabled\"); \n } \n this.cd.detectChanges(); \n } else {\n this.errorMsg = []; \n document.getElementById('feeAmount_'+v1).setAttribute(\"disabled\", \"true\"); \n this.remissionForm.value.feesList[i][\"refund_amount\"] = ''; \n this.remissionForm.value.feesList[i][\"volume\"] = ''; \n this.remissionForm.value.feesList[i][\"selected\"] = false; \n (<HTMLInputElement>document.getElementById('feeAmount_'+v1)).value = '';\n if(Volume>1) {\n this.remissionForm.value.feesList[i][\"volume\"] = ''; \n (<HTMLInputElement>document.getElementById('feeVolumeUpdated_'+v1)).value = '';\n }\n \n if (document.getElementById('feeVolumeUpdated_'+v1) !== null) {\n document.getElementById('feeVolumeUpdated_'+v1).removeAttribute(\"disabled\"); \n }\n this.cd.detectChanges();\n } \n }\n\n\n addRemission() {\n this.resetRemissionForm([false, false, false, false, false, false], 'All');\n const remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount > remissionctrls.amount.value; \n this.remissionForm.controls['refundReason'].setErrors(null);\n this.remissionForm.controls['refundDDReason'].setErrors(null);\n if (this.remissionForm.dirty && this.remissionForm.valid && isRemissionLessThanFee) {\n this.viewStatus = 'confirmation';\n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false, false], 'amount');\n }\n if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true, false], 'amount');\n }\n }\n }\n\n confirmRemission() {\n this.isConfirmationBtnDisabled = true;\n const newNetAmount = this.remissionForm.controls.amount.value,\n remissionAmount = this.fee.net_amount - newNetAmount,\n requestBody = new AddRemissionRequest\n (this.ccdCaseNumber, this.fee, remissionAmount, this.remissionForm.controls.remissionCode.value, this.caseType);\n this.paymentViewService.postPaymentGroupWithRemissions(decodeURIComponent(this.paymentGroupRef).trim(), this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response).success) {\n let LDUrl = this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable'\n LDUrl += `&caseType=${this.caseType}`\n 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 if (!this.isFromCheckAnsPage) {\n this.viewCompStatus = '';\n this.viewStatus = \"processretroremissonpage\";\n } else {\n this.viewCompStatus = '';\n this.viewStatus = 'checkretroremissionpage';\n }\n \n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false], 'amount');\n }\n if(remissionctrls['reason'].value == '') {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n }\n if(remissionctrls.amount.valid){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n }\n \n }\n }\n\n\n gotoAddRetroRemissionCodePage() {\n this.errorMessage = false;\n this.isFromCheckAnsPage = false;\n this.errorMsg = [];\n if(this.isRefundRemission) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListAmount.emit();\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n }\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n } \n this.viewStatus = '';\n this.selectedValue = 'yes';\n this.viewCompStatus = \"addremission\";\n this.isRefundRemission = true;\n this.errorMessage = '';\n this.errorMsg = [];\n if(this.isFromPaymentDetailPage) {\n this.paymentLibComponent.viewName = 'payment-view';\n }\n }\n\n gotoCheckRetroRemissionPage(payment: IPayment) {\n this.paymentLibComponent.iscancelClicked = false;\n this.errorMessage = '';\n this.resetRemissionForm([false, false, false, false, false], 'All');\n if( !this.isRefundRemission) {\n var remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value; \n if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' || remissionctrls['amount'].value < 0) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, false, false, true, false], 'amount');\n } else if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n }\n }\n } else {\n var remissionctrls=this.remissionForm.controls;\n //if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' || remissionctrls['amount'].value < 0 ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n this.refundListAmount.emit(remissionctrls['amount'].value);\n }\n //}\n \n }\n }\n gotoAmountRetroRemission() {\n this.isFromCheckAnsPage = false;\n this.viewStatus = 'processretroremissonpage';\n this.viewCompStatus = '';\n // this.isRefundRemission = true;\n this.errorMessage = '';\n }\n gotoProcessRetroRemissionPage() {\n this.isFromCheckAnsPage = true;\n this.viewStatus = '';\n this.viewCompStatus = 'addremission';\n this.isRefundRemission = true;\n this.errorMessage = '';\n this.errorMsg = [];\n }\n\n gotoProcessRetroRemission(note?: IRefundContactDetails) {\n if(note) {\n this.notification = { contact_details: note, notification_type: note.notification_type };\n }\n this.isFromCheckAnsPage = true;\n this.viewStatus = 'remissionAddressPage';\n this.viewCompStatus = '';\n this.isRefundRemission = true;\n this.errorMessage = '';\n }\n\n confirmRetroRemission() {\n if(!this.isConfirmationBtnDisabled) {\n this.retroRemission = true;\n this.remissionamt = this.remissionForm.controls.amount.value;\n const requestBody = new AddRetroRemissionRequest(this.remissionamt,this.remissionForm.controls.remissionCode.value )\n this.paymentViewService.postPaymentGroupWithRetroRemissions(decodeURIComponent(this.paymentGroupRef).trim(), this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.isRemissionApplied = true;\n this.viewCompStatus = '';\n this.viewStatus = 'retroremissionconfirmationpage';\n this.remissionReference =JSON.parse(response).remission_reference;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n }\n );\n }\n }\n\n processRefund() {\n this.errorMessage = '';\n this.errorMsg = [];\n this.isConfirmationBtnDisabled = true;\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n if (this.remissionReference === undefined || this.remissionReference === '') {\n this.remissionReference = this.remission.remission_reference;\n }\n const requestBody = new PostIssueRefundRetroRemission(this.remissionReference, this.contactDetailsObj);\n this.paymentViewService.postRefundRetroRemission(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n })\n }\n\n // Issue Refund changes\n\n gotoIssueRefundConfirmation(payment: IPayment) {\n \n this.paymentLibComponent.iscancelClicked = false;\n if(this.paymentLibComponent.REFUNDLIST === \"true\") {\n this.isFromRefundListPage = true; \n }\n\n this.totalRefundAmount = this.remissionForm.value.feesList.reduce((a, c) => a + c.refund_amount * c.selected, 0);\n\n\n this.errorMessage = '';\n this.errorMsg = [];\n this.refundReason = this.remissionForm.controls['refundReason'].value === null ? this.remissionForm.controls['refundDDReason'].value : this.remissionForm.controls['refundReason'].value;\n if(!this.refundReason || this.refundReason === 'Select a different reason') {\n this.refundHasError = true;\n } else if(this.selectedRefundReason.includes('Other') && (this.remissionForm.controls['reason'].value == '' || this.remissionForm.controls['reason'].value == null)) {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n } else if (this.selectedRefundReason.includes('Other') && this.remissionForm.controls['reason'].value !== '') {\n this.refundHasError = false;\n this.refundReason += '-' + this.remissionForm.controls['reason'].value;\n this.displayRefundReason = this.selectedRefundReason + '-' + this.remissionForm.controls['reason'].value;\n if ( this.isFromRefundListPage ) {\n this.refundListReason.emit({reason: this.displayRefundReason, code: this.refundReason});\n } else {\n if(this.isFromCheckAnsPage) {\n this.totalRefundAmount = this.remissionForm.value.feesList.reduce((a, c) => a + c.refund_amount * c.selected, 0);\n this.isFromCheckAnsPage = false;\n this.viewStatus = 'checkissuerefundpage';\n this.viewCompStatus = '';\n return;\n }\n this.viewCompStatus = '';\n this.viewStatus = 'contactDetailsPage';\n }\n \n } else {\n this.displayRefundReason = this.selectedRefundReason;\n if(this.isFromCheckAnsPage) {\n this.totalRefundAmount = this.remissionForm.value.feesList.reduce((a, c) => a + c.refund_amount * c.selected, 0);\n this.isFromCheckAnsPage = false;\n this.viewStatus = 'checkissuerefundpage';\n this.viewCompStatus = '';\n return;\n }\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n } else {\n this.viewCompStatus = '';\n this.viewStatus = 'contactDetailsPage';\n }\n \n }\n }\n\n gotoIssueRefundPage() {\n this.errorMessage = '';\n this.viewCompStatus = 'issuerefund';\n this.viewStatus = '';\n this.isRefundRemission = true;\n this.errorMessage = false;\n this.errorMsg = [];\n this.refundHasError = false;\n this.isReasonEmpty = false;\n }\n\n gotoIssuePage(isFullyRefund: any){\nif(isFullyRefund) {\n this.viewCompStatus = 'issuerefundpage1';\n this.getRefundReasons();\n} else {\n [].forEach.call(document.querySelectorAll('input'), function (el) {\n el.classList.remove('inline-error-class');\n });\n\n\t var checkboxs = document.getElementsByTagName('input');\n\t this.errorMessage = '';\n this.totalRefundAmount = 0;\n this.errorMsg = []; \n\t\t\tfor (var j=0;j<checkboxs.length;j++)\n\t\t\t{\n\t\t\t\tif(checkboxs[j].checked)\n\t\t\t\t{\n\t\t\t\t\tthis.fullRefund = false;\n\t\t\t\t\tlet quantity: number = +(<HTMLInputElement>document.getElementById('feeVolume_'+checkboxs[j].value)).value;\n let amountToRefund: number = +(<HTMLInputElement>document.getElementById('feeAmount_'+checkboxs[j].value)).value;\n\t\t\t\t\tlet apportionAmount: number = +(<HTMLInputElement>document.getElementById('feeApportionAmount_'+checkboxs[j].value)).value;\n\t\t\t\t\tlet calculatedAmount: number = +(<HTMLInputElement>document.getElementById('calculatedAmount_'+checkboxs[j].value)).value; \n \n if( amountToRefund === apportionAmount) {\n this.fullRefund = true;\n }\n\n if(amountToRefund === 0){\n this.elementId = 'feeAmount_'+checkboxs[j].value;\n this.errorMsg.push('You need to enter a refund amount');\n this.getErrorClass(this.elementId);\n\t\t\t\t\t}\n\n \n\n if (quantity === 1)\n {\n if(amountToRefund > 0 && amountToRefund > apportionAmount){\n this.elementId = 'feeAmount_'+checkboxs[j].value;\n this.errorMsg.push('The amount you want to refund is more than the amount paid');\n this.getErrorClass(this.elementId);\n }\n } \n\n\t\t\t\t\tif(quantity > 1) {\n\n\t\t\t\t\t\tthis.quantityUpdated = +(<HTMLInputElement>document.getElementById('feeVolumeUpdated_'+checkboxs[j].value)).value;\n\n if(this.quantityUpdated === 0){\n this.elementId = 'feeVolumeUpdated_'+checkboxs[j].value;\n this.errorMsg.push('You need to enter quantity')\n this.getErrorClass(this.elementId);\n }\n\n if (this.fullRefund && quantity !== this.quantityUpdated) {\n this.elementId = 'feeVolumeUpdated_'+checkboxs[j].value;\n this.errorMsg.push('The quantity you want to refund should be maximun available quantity');\n this.getErrorClass(this.elementId);\n }\n\n if (!this.fullRefund && this.quantityUpdated > 0 && amountToRefund > 0) {\n this.refundAmtForFeeVolumes = +(<HTMLInputElement>document.getElementById('feeVOl_'+checkboxs[j].value)).innerText;\n this.allowedRefundAmount = this.quantityUpdated * this.refundAmtForFeeVolumes;\n if( this.allowedRefundAmount !== amountToRefund) \n {\n this.elementId = 'feeAmount_'+checkboxs[j].value;\n this.errorMsg.push('The Amount to Refund should be equal to the product of Fee Amount and quantity');\n this.getErrorClass(this.elementId);\n }\n }\n\n if(!this.fullRefund && amountToRefund > apportionAmount)\n {\n this.elementId = 'feeAmount_'+checkboxs[j].value;\n this.errorMsg.push('The amount you want to refund is more than the amount paid');\n this.getErrorClass(this.elementId);\n }\n\t\n if( !this.fullRefund && this.quantityUpdated >0 && this.quantityUpdated > quantity){\n this.elementId = 'feeVolumeUpdated_'+checkboxs[j].value;\n this.errorMsg.push('The quantity you want to refund is more than the available quantity');\n this.getErrorClass(this.elementId);\n }\n }\n //this.remissionForm.value.feesList.find(id=>id=checkboxs[j].value)['refund_amount'] = apportionAmount;\n\t\t\t\t}\n\t\t\t}\n\n if(this.errorMsg.length === 0) {\n if (this.isFromCheckAnsPage) {\n this.isFromCheckAnsPage = false;\n this.totalRefundAmount = this.remissionForm.value.feesList.reduce((a, c) => a + c.refund_amount * c.selected, 0);\n this.fees = this.remissionForm.value.feesList.filter(value => value.selected===true);\n this.viewStatus = 'checkissuerefundpage'\n this.viewCompStatus = '';\n return;\n } else if (this.isFromRefundStatusPage){\n var remissionctrls=this.remissionForm.controls;\n this.totalRefundAmount = this.remissionForm.value.feesList.reduce((a, c) => a + c.refund_amount * c.selected, 0);\n this.refundListAmount.emit(this.totalRefundAmount.toString());\n this.fees = this.remissionForm.value.feesList.filter(value => value.selected===true);\n this.refundFees.emit(this.fees);\n return;\n }\n this.viewCompStatus = 'issuerefundpage1';\n this.getRefundReasons();\n }\n }\n }\n\n calAmtToRefund(value,amount,volume, i: any) {\n const volumeFee = amount/volume;\n const amtToRefund = value * volumeFee;\n const formArray = this.remissionForm.controls.feesList as FormArray;\n formArray.at(i).get('refund_amount').setValue(amtToRefund);\n // formArray.at(i).get('volume').setValue(value);\n // (<HTMLInputElement>document.getElementById('feeAmount_'+i)).value = +amtToRefund;\n // const formControl = this.remissionForm.controls.feesList['volume'].at(i);\n // formControl.setValue(value);\n\n }\n gotoContactDetailsPage(note?: IRefundContactDetails) {\n if (note) {\n this.notification = { contact_details: note, notification_type: note.notification_type };\n }\n this.errorMessage = '';\n this.viewCompStatus = '';\n this.viewStatus = 'contactDetailsPage';\n this.isRefundRemission = true;\n this.errorMessage = false;\n }\n \n getRefundReasons(){\n if(this.viewCompStatus === 'issuerefundpage1'){\n this.refundService.getRefundReasons().subscribe(\n refundReasons => { \n this.refundReasons = refundReasons.filter((data) => data.recently_used === false);\n this.refundReasons = this.refundReasons.filter((data) => data.name !== 'Retrospective remission');\n this.cd.detectChanges();\n this.commonRefundReasons = refundReasons.filter((data) => data.recently_used === true);\n this.commonRefundReasons.sort((a, b) => a.toString().localeCompare(b));\n this.cd.detectChanges();\n } );\n }\n}\n getErrorClass(elementId) {\n if(this.errorMsg.length > 0) {\n const ele = document.getElementById(elementId);\n ele.classList.add('inline-error-class');\n }\n \n }\n\n changeIssueRefundReason() {\n this.isFromCheckAnsPage = true;\n this.errorMessage = '';\n this.errorMsg = [];\n this.refundHasError = false;\n this.isReasonEmpty = false;\n this.viewCompStatus = 'issuerefundpage1';\n this.viewStatus = '';\n this.isRefundRemission = true;\n }\n\n confirmIssueRefund(isFullyRefund: any) {\n this.isConfirmationBtnDisabled = true;\n this.errorMessage = '';\n this.errorMsg = [];\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n if(isFullyRefund) {\n this.totalRefundAmount = this.payment.amount;\n }\n if(!isFullyRefund) {\n this.fees = this.remissionForm.value.feesList.filter(value => value.selected===true);\n }\n this.fees = this.fees.map(obj => ({ id: obj.id, \n code: obj.code,\n version:obj.version, \n apportion_amount: obj.apportion_amount,\n calculated_amount: obj.calculated_amount,\n updated_volume: obj.updated_volume ? obj.updated_volume : obj.volume,\n refund_amount:obj.refund_amount ? obj.refund_amount : this.totalRefundAmount }));\n \n \n const requestBody = new PostRefundRetroRemission(this.contactDetailsObj, this.fees,this.payment.reference, this.refundReason, \n this.totalRefundAmount, 'op');\n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference =JSON.parse(response).refund_reference;\n if(JSON.parse(response).refund_amount) {\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n })\n }\n\n gotoRefundReasonPage () {\n this.viewStatus = '';\n this.viewCompStatus = 'issuerefundpage1';\n \n }\n\n// Retro Refund\n\n // confirmRetroRefund() {\n // this.isConfirmationBtnDisabled = true;\n // this.errorMessage = '';\n // this.errorMsg = [];\n // if( this.isRefundRemission) {\n // this.retroRemission = true;\n // }\n\n // const requestBody = new PostRefundRetroRemission(this.payment.reference,'RR004-Retrospective remission', this.contactDetailsObj);\n // this.paymentViewService.postRefundsReason(requestBody).subscribe(\n // response => {\n // if (JSON.parse(response)) {\n // this.viewCompStatus = '';\n // this.viewStatus = 'retrorefundconfirmationpage';\n // this.refundReference =JSON.parse(response).refund_reference;\n // if(JSON.parse(response).refund_amount) {\n // this.refundAmount = JSON.parse(response).refund_amount;\n // }\n // }\n // },\n // (error: any) => {\n // this.errorMessage = error;\n // this.isConfirmationBtnDisabled = false;\n // });\n // }\n\n selectRadioButton(key, value) {\n localStorage.setItem(\"myradio\", key);\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundDDReason'].setValue('Select a different reason', {onlySelf: true});\n remissionctrls['reason'].reset();\n this.isRefundReasonsSelected = true;\n this.errorMessage = false;\n this.errorMsg = [];\n this.isReasonEmpty = false;\n this.showReasonText = false;\n this.refundHasError = false;\n this.selectedRefundReason = key;\n if(this.selectedRefundReason.includes('Other')) {\n this.showReasonText = true;\n this.refundHasError = false;\n this.refundReason = key;\n }\n }\n\n selectchange(args) {\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundReason'].reset();\n remissionctrls['reason'].reset();\n this.isRefundReasonsSelected = false;\n this.showReasonText = false;\n this.refundHasError = false;\n this.selectedRefundReason = args.target.options[args.target.options.selectedIndex].id;\n this.reasonLength = (29-this.selectedRefundReason.split('- ')[1].length);\n\n if(this.selectedRefundReason.includes('Other')) {\n this.showReasonText = true;\n this.refundHasError = false;\n this.refundReason = args.target.options[args.target.options.selectedIndex].id;\n }\n\n\n }\n getContactDetails(obj:IRefundContactDetails, type) {\n this.contactDetailsObj = obj;\n this.viewCompStatus = '';\n this.viewStatus = type;\n }\n\n gotoPartialFeeRefundScreen() {\n\n if (this.isFromRefundStatusPage){\n var remissionctrls=this.remissionForm.controls;\n this.refundListReason.emit({reason: this.displayRefundReason, code: this.refundReason});\n return;\n }\n this.refundHasError = false;\n this.viewCompStatus = 'issuerefund';\n this.viewStatus = '';\n }\n\n \n\n gotoServiceRequestPage(event: any) {\n this.errorMessage ='';\n this.errorMsg = [];\n this.isFromCheckAnsPage = false;\n event.preventDefault();\n\n if (this.isFromRefundStatusPage){\n var remissionctrls=this.remissionForm.controls;\n this.totalRefundAmount = this.remissionForm.value.feesList.reduce((a, c) => a + c.refund_amount * c.selected, 0);\n this.refundListAmount.emit(this.totalRefundAmount.toString());\n return;\n }\n if (this.isFromServiceRequestPage && !this.isFromPaymentDetailPage) {\n this.viewStatus = 'order-full-view';\n this.viewCompStatus = '';\n } else if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n } else {\n this.paymentLibComponent.paymentMethod = this.payment.method;\n this.paymentLibComponent.paymentGroupReference = this.paymentLibComponent.paymentGroupReference\n this.paymentLibComponent.paymentReference = this.payment.reference;\n this.paymentLibComponent.viewName = 'payment-view';\n this.OrderslistService.setOrderRef(this.orderRef);\n this.OrderslistService.setorderCCDEvent(this.orderCCDEvent);\n this.OrderslistService.setorderCreated(this.orderCreated);\n this.OrderslistService.setorderDetail(this.orderDetail);\n this.OrderslistService.setorderParty(this.orderParty);\n this.OrderslistService.setorderTotalPayments(this.orderTotalPayments);\n this.OrderslistService.setorderRemissionTotal(this.orderRemissionTotal);\n this.OrderslistService.setorderFeesTotal(this.orderFeesTotal);\n this.viewStatus = 'payment-view';\n this.sendOrderDetail = this.orderDetail;\n this.sendOrderRef = this.orderRef;\n if(this.LOGGEDINUSERROLES === undefined) {\n this.OrderslistService.getUserRolesList().subscribe((data) => this.LOGGEDINUSERROLES = data);\n }\n this.viewCompStatus = '';\n }\n\n }\n gotoAddressPage(note?: IRefundContactDetails) {\n if (note) {\n this.notification = { contact_details: note, notification_type: note.notification_type };\n }\n this.errorMessage = '';\n this.viewCompStatus = 'addrefundforremission';\n this.viewStatus = '';\n this.isRefundRemission = true;\n this.errorMessage = false;\n }\n gotoRemissionSuccess(event: Event) {\n event.preventDefault();\n this.errorMessage = '';\n this.viewCompStatus = '';\n this.viewStatus = 'retroremissionconfirmationpage';\n this.isRefundRemission = true;\n this.errorMessage = false;\n }\n\n gotoCasetransationPage() {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.errorMessage = '';\n this.errorMsg = [];\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.VIEW = 'case-transactions';\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.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 !== undefined && !this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.VIEW ='case-transactions';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.VIEW ='case-transactions';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n this.resetOrderData(); let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n 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}","import { IFee } from \"./IFee\";\nimport { IRefundContactDetails } from \"./IRefundContactDetails\";\nexport class IResubmitRefundRequest {\n refund_reason: string;\n amount: number;\n contact_details: IRefundContactDetails;\n refund_fees: IFee[];\n \n constructor(refund_reason : string, amount: number,contact_details:any,refund_fees: any[]) {\n this.refund_reason= refund_reason;\n this.amount = amount;\n this.contact_details = contact_details;\n this.refund_fees = refund_fees;\n } \n }\n ","import { Component, OnInit, Input } from '@angular/core';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { NotificationService } from '../../services/notification/notification.service';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { IRefundsNotifications } from '../../interfaces/IRefundsNotifications';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IPutNotificationRequest } from '../../interfaces/IPutNotificationRequest';\nimport { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';\nimport { IRefundStatus } from '../../interfaces/IRefundStatus';\nimport { IResubmitRefundRequest } from '../../interfaces/IResubmitRefundRequest';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IFee } from '../../interfaces/IFee';\nimport { IRefundFee } from '../../interfaces/IRefundFee';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-refund-status',\n templateUrl: './refund-status.component.html',\n styleUrls: ['./refund-status.component.css']\n})\nexport class RefundStatusComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[] = [];\n @Input('API_ROOT') API_ROOT: string;\n @Input() isOldPcipalOff: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: boolean;\n @Input() orderParty: string;\n @Input() isEliginbleToAccess: boolean;\n refundStatusForm: FormGroup;\n selectedRefundReason: string;\n rejectedRefundList: IRefundList[] = [];\n notificationList: any;\n notification:any;\n approvalStatus = 'Sent for approval';\n rejectStatus = 'Update required';\n errorMessage = null;\n viewName: string;\n refundReason: string;\n refundlist: IRefundList;\n bsPaymentDcnNumber: string;\n isCallFromRefundList: boolean;\n refundButtonState: string = '';\n isAmountEmpty: boolean = false;\n isReasonEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n refundHasError: boolean = false;\n refundReasons: any[] = [];\n refundStatusHistories: IRefundStatus[];\n refundNotifications: IRefundStatus[];\n isResendOperationSuccess: boolean = false;\n isEditDetailsClicked: boolean = false;\n isEditAddressDeatilsClicked: boolean = false;\n addressDetails: IRefundContactDetails;\n refundReference: string;\n refundAmount: string;\n refundCode: string;\n isRefundBtnDisabled: boolean = true;\n oldRefundReason: string;\n refundreason: string;\n navigationpage: string;\n isLastUpdatedByCurrentUser: boolean = true;\n isProcessRefund: boolean = false;\n changedAmount: number;\n isRemissionsMatch: boolean;\n payment: IPayment;\n changeRefundReason: string;\n fees: IFee [];\n refundFees: IRefundFee[];\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n\n constructor(private formBuilder: FormBuilder,\n private refundService: RefundsService,\n private notificationService: NotificationService,\n private paymentLibComponent: PaymentLibComponent,\n private OrderslistService: OrderslistService,\n private paymentViewService: PaymentViewService) { }\n\n ngOnInit() {\n\n this.resetRemissionForm([false, false, false, false], 'All');\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.isCallFromRefundList = this.paymentLibComponent.isCallFromRefundList;\n if (this.paymentLibComponent.isRefundStatusView) {\n this.viewName = 'refundview';\n this.OrderslistService.getRefundView().subscribe((data) => this.refundlist = data);\n this.OrderslistService.getCCDCaseNumberforRefund.subscribe((data) => this.ccdCaseNumber = data);\n } else {\n this.viewName = 'refundstatuslist';\n if(this.isEliginbleToAccess) {\n this.refundService.getRefundStatusList(this.ccdCaseNumber).subscribe(\n refundList => {\n this.rejectedRefundList = refundList['refund_list'];\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n } else {\n this.rejectedRefundList = [];\n }\n\n }\n\n\n this.refundStatusForm = this.formBuilder.group({\n amount: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[0-9]+(\\.[0-9]{1,2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl()\n });\n\n if(this.refundlist !== undefined) {\n this.getRefundsNotification();\n this.getRefundsStatusHistoryList();\n\n if (this.LOGGEDINUSERROLES.some(i => i.includes('payments-refund-approver'))) {\n this.isProcessRefund = true;\n this.refundButtonState = this.refundlist.refund_status.name;\n return;\n }\n \n if (this.LOGGEDINUSERROLES.some(i => i.includes('payments-refund'))) {\n this.isProcessRefund = false;\n this.refundButtonState = this.refundlist.refund_status.name;\n }\n }\n\n }\n isFromPayBubble = (): boolean => { \n return this.API_ROOT === 'api/payment-history';\n }\n\n getRefundsStatusHistoryList() {\n if(this.refundlist !== undefined) {\n this.refundService.getRefundStatusHistory(this.refundlist.refund_reference).subscribe(\n statusHistoryList => {\n this.refundStatusHistories = statusHistoryList.status_history_dto_list;\n this.isLastUpdatedByCurrentUser = statusHistoryList.last_updated_by_current_user;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n }; \n }\n }\n\n getRefundsNotification() {\n this.notificationService.getRefundNotification(this.refundlist.refund_reference).subscribe(\n refundsNotification => {\n this.notificationList = refundsNotification['notifications'];\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n }; \n }\n\n goToRefundView(refundlist: IRefundList, navigationpage: string) {\n this.OrderslistService.setRefundView(refundlist);\n this.OrderslistService.setCCDCaseNumber(this.ccdCaseNumber);\n this.paymentLibComponent.viewName = 'refundstatuslist';\n this.paymentLibComponent.isRefundStatusView = true;\n this.refundlist = refundlist;\n this.OrderslistService.setnavigationPage(navigationpage);\n }\n\n loadCaseTransactionPage() {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n }\n\n loadRefundListPage() {\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n if (this.navigationpage === 'casetransactions') {\n this.loadCaseTransactionPage();\n } else {\n this.paymentLibComponent.viewName = 'refund-list';\n }\n }\n\n gotoReviewDetailsPage(event:any) {\n // event.preventDefault();\n this.errorMessage = false;\n this.paymentLibComponent.isRefundStatusView = true;\n this.ngOnInit();\n }\n\n gotoReviewAndReSubmitPage() {\n this.viewName = 'reviewandsubmitview';\n this.oldRefundReason = this.refundlist.reason;\n this.changedAmount = this.refundlist.amount;\n this.refundreason = this.refundStatusHistories.filter(data => data.status.toLowerCase() === 'update required')[0].notes;\n this.refundService.getRefundReasons().subscribe(\n refundReasons => {\n this.refundReasons = refundReasons;\n });\n }\n gotoRefundReasonPage(refundReason:string) {\n this.isRefundBtnDisabled = false;\n this.paymentLibComponent.REFUNDLIST = \"true\";\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.errorMessage = false;\n this.changeRefundReason = refundReason;\n this.viewName = 'issuerefundpage1';\n }\n\n gotoAmountPage() {\n this.errorMessage = false;\n this.paymentLibComponent.REFUNDLIST = \"true\";\n this.isRefundBtnDisabled = false;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.paymentLibComponent.isFromRefundStatusPage = true;\n if(this.refundlist.reason == 'Retrospective remission') {\n this.viewName = 'processretroremissonpage';\n } else {\n this.viewName = 'issuerefund';\n }\n }\n\n goToReviewAndSubmitView() {\n const remissionctrls = this.refundStatusForm.controls\n if (this.refundStatusForm.dirty) {\n if (remissionctrls['amount'].value == '') {\n this.resetRemissionForm([true, false, false, false], 'amount');\n }\n else if (remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid) {\n this.resetRemissionForm([false, true, false, false], 'amount');\n }\n else if (remissionctrls['reason'].value == '') {\n this.resetRemissionForm([false, false, false, true], 'reason');\n } else {\n this.refundlist.reason = remissionctrls['reason'].value;\n this.viewName = 'reviewandsubmitview';\n }\n }\n\n }\n\n resetRemissionForm(val, field) {\n if (field === 'All') {\n this.isAmountEmpty = val[0];\n this.amountHasError = val[1];\n this.isRemissionLessThanFeeError = val[2];\n this.isReasonEmpty = val[3];\n } else if (field === 'amount' || field === 'All') {\n this.isAmountEmpty = val[0];\n this.amountHasError = val[1];\n this.isRemissionLessThanFeeError = val[2];\n } else if (field === 'reason' || field === 'All') {\n this.isReasonEmpty = val[3];\n }\n }\n\n selectRadioButton(key, value) {\n this.refundHasError = false;\n this.selectedRefundReason = key;\n if (key === 'Other') {\n this.refundHasError = false;\n this.refundReason = key;\n }\n }\n\n getRefundListReason(refundListReason: any) {\n if (this.paymentLibComponent.isFromRefundStatusPage && !this.paymentLibComponent.iscancelClicked) {\n this.refundlist.reason = refundListReason.reason;\n this.refundlist.code = refundListReason.code;\n this.refundCode = refundListReason.code;\n } else {\n this.isRefundBtnDisabled = true;\n }\n this.viewName = 'reviewandsubmitview';\n this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;\n }\n\n getRefundAmount(amount: number) {\n if (this.paymentLibComponent.isFromRefundStatusPage && !this.paymentLibComponent.iscancelClicked) {\n if (amount > 0) {\n this.changedAmount = amount;\n // this.refundlist.amount = amount;\n }\n } else {\n this.isRefundBtnDisabled = true;\n }\n this.viewName = 'reviewandsubmitview';\n this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;\n }\n\n getRefundFees(fees: IFee[])\n {\n this.fees = fees;\n this.refundFees = this.fees.map(obj => ({ fee_id: obj.id, code: obj.code, version:obj.version, volume: obj.volume,refund_amount:obj.refund_amount }));\n }\n\n gotoReviewRefundConfirmationPage() {\n // if (this.oldRefundReason === this.refundlist.reason) {\n // this.refundCode = '';\n // }\n if (this.refundFees === undefined) {\n this.refundFees = this.refundlist['refund_fees'];\n }\n this.refundCode = this.refundlist.code;\n const resubmitRequest = new IResubmitRefundRequest(this.refundCode, this.changedAmount, this.refundlist.contact_details, this.refundFees);\n this.refundService.patchResubmitRefund(resubmitRequest, this.refundlist.refund_reference).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n this.viewName = 'reviewrefundconfirmationpage';\n }\n },\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n }\n );\n }\n\n gotoEditAddressDetails(note: IRefundsNotifications) {\n this.notification = note;\n this.isEditDetailsClicked = true;\n this.viewName = 'refundEditView'\n }\n getContactDetails(obj:IRefundContactDetails) {\n this.addressDetails = obj;\n this.viewName = 'revieweditdetailsconfirmationpage';\n }\n getContactDetailsForRefundList(obj:IRefundContactDetails) {\n this.refundlist.contact_details = obj;\n this.isEditDetailsClicked = false;\n this.isRefundBtnDisabled = false;\n this.viewName = 'reviewandsubmitview';\n }\n gotoEditDetailsPage(note?: any) {\n if(note) {\n this.notification = { contact_details: note, notification_type: note.notification_type };\n }\n this.isEditDetailsClicked = true;\n this.viewName = 'refundEditView'\n }\n submitEditDetail() {\n this.isResendOperationSuccess = false;\n const contactDetails = this.addressDetails.notification_type === 'EMAIL' ? this.addressDetails.email :\n {\n address_line: this.addressDetails.address_line,\n city: this.addressDetails.city,\n county: this.addressDetails.county,\n country: this.addressDetails.country,\n postal_code: this.addressDetails.postal_code,\n };\n const resendRequest = new IPutNotificationRequest(contactDetails, this.addressDetails.notification_type);\n\n this.refundService.putResendOrEdit(resendRequest, this.refundlist.refund_reference, this.addressDetails.notification_type).subscribe(\n (response) => {\n this.isResendOperationSuccess = response;\n },\n (error: any) => {\n this.isResendOperationSuccess = false;\n this.errorMessage = error.replace(/\"/g,\"\");\n }\n );\n }\n putResend(notification: IRefundsNotifications) {\n this.isResendOperationSuccess = false;\n const contactDetails = notification.notification_type === 'EMAIL' ? notification.contact_details.email :\n {\n address_line :notification.contact_details.address_line,\n city: notification.contact_details.city,\n county: notification.contact_details.county,\n country: notification.contact_details.country,\n postal_code: notification.contact_details.postal_code,\n };\n const resendRequest = new IPutNotificationRequest(contactDetails, notification.notification_type);\n\n this.refundService.putResendOrEdit(resendRequest, this.refundlist.refund_reference, notification.notification_type).subscribe(\n (response) => {\n this.isResendOperationSuccess = response;\n },\n (error: any) => {\n this.isResendOperationSuccess = false;\n this.errorMessage = error.replace(/\"/g,\"\");\n }\n );\n\n }\n gotoCasetransationPageCancelBtnClicked(Event: Event) {\n event.preventDefault();\n this.viewName = 'refundstatuslist';\n }\n\n goToRefundProcessComponent(refundReference: string, refundList: IRefundList) {\n this.paymentLibComponent.refundlistsource = refundList;\n this.paymentLibComponent.refundReference = refundReference;\n this.paymentLibComponent.isFromPayBubble = true;\n this.paymentLibComponent.viewName = 'process-refund';\n }\n\n}\n","import { THIS_EXPR } from '@angular/compiler/src/output/output_ast';\nimport { Component, Input, OnInit, Output, EventEmitter, ChangeDetectorRef } from '@angular/core';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IPaymentView } from '../../interfaces/IPaymentView';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { Router } from '@angular/router';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\n\n@Component({\n selector: 'ccpay-service-request',\n templateUrl: './service-request.component.html',\n styleUrls: ['./service-request.component.scss']\n})\nexport class ServiceRequestComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input('viewStatus') viewStatus: string;\n @Input('orderDetail') orderDetail: any[];\n @Input('orderRef') orderRef: string;\n @Input('orderStatus') orderStatus: string;\n @Input('orderParty') orderParty: string;\n @Input('orderCreated') orderCreated: Date;\n @Input('orderCCDEvent') orderCCDEvent: string;\n @Input('orderFeesTotal') orderFeesTotal: number;\n @Input('orderTotalPayments') orderTotalPayments: number;\n @Input('orderRemissionTotal') orderRemissionTotal: number;\n @Input('paymentGroupList') paymentGroupList: IPaymentGroup;\n @Input('takePayment') takePayment: boolean;\n @Input('ccdCaseNumber') ccdCaseNumber: boolean;\n @Input(\"isServiceRequest\") isServiceRequest: string;\n @Output() goToServiceRquestComponent: EventEmitter<any> = new EventEmitter();\n\n viewCompStatus;\n servicerequest: string;\n paymentType: string;\n excReference: string;\n paymentGroups: any[] = [];\n payments: IPayment[] = [];\n nonPayments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n paymentFees: IFee[];\n fees: any;\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalNonOffPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n paymentRef: string;\n isTurnOff: boolean;\n 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 isConfirmationBtnDisabled: boolean;\n refundReference: string;\n refundAmount: string;\n payment: IPayment;\n paymentGroup: IPaymentGroup;\n paymentView: IPaymentView;\n\n isAddRemissionEnable: boolean = false;\n orderRemissionDetails: any[] = [];\n orderLevelFees: IOrderReferenceFee[] = [];\n cpoDetails: any = null;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n isFromPaymentDetailPage: boolean;\n contactDetailsObj: IRefundContactDetails\n notification: any;\n isCPODown: boolean;\n test: boolean;\n isPBA: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n isAddRemissionBtnEnabled: boolean = false;\n isRefundRemissionBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n isFromServiceRequestPage: boolean;\n navigationpage: string;\n remissionFeeAmt: number;\n isContinueBtnDisabled: boolean = true;\n isFullyRefund: boolean;\n\n constructor(\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private OrderslistService: OrderslistService,\n private cd: ChangeDetectorRef,\n private router: Router) { }\n\n ngOnInit() {\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isServiceRequest = 'false';\n if (this.viewStatus === undefined) {\n this.viewStatus = this.paymentLibComponent.viewName;\n }\n if(this.paymentLibComponent.isFromServiceRequestPage && this.paymentLibComponent.isFromPaymentDetailPage) {\n if(this.paymentLibComponent.isFromPaymentDetailPage && this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.getorderRefs().subscribe((data) => this.orderRef = data);\n this.OrderslistService.getorderCCDEvents().subscribe((data) => this.orderCCDEvent = data);\n this.OrderslistService.getorderCreateds().subscribe((data) => this.orderCreated = data);\n this.OrderslistService.getorderDetail().subscribe((data) => this.orderDetail = data);\n this.OrderslistService.getorderPartys().subscribe((data) => this.orderParty = data);\n this.OrderslistService.getorderRemissionTotals().subscribe((data) => this.orderRemissionTotal = data);\n this.OrderslistService.getorderFeesTotals().subscribe((data) => this.orderFeesTotal = data);\n this.OrderslistService.getoorderTotalPaymentss().subscribe((data) => this.orderTotalPayments = data);\n }\n \n \n }\n if(this.paymentLibComponent.isFromServiceRequestPage && this.paymentLibComponent.TAKEPAYMENT) {\n this.isServiceRequest = 'false';\n }\n\n\n }\n goToServiceRequestPage() {\n this.goToServiceRquestComponent.emit();\n }\n\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n this.OrderslistService.setnavigationPage('servicerequestpage');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isTakePayment = this.paymentLibComponent.TAKEPAYMENT;\n if (this.takePayment) {\n this.paymentLibComponent.isTakePayment = this.takePayment;\n }\n //this.paymentLibComponent.SERVICEREQUEST = \"true\";\n this.paymentLibComponent.isFromServiceRequestPage = false;\n if(this.isServiceRequest !== 'false') {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n }\n this.paymentLibComponent.isFromRefundStatusPage = false;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.resetOrderData();\n let partUrl = this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n if(this.isServiceRequest === 'false') {\n partUrl += this.paymentLibComponent.TAKEPAYMENT ? '&takePayment=true' : '&takePayment=false';\n }\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += this.isServiceRequest !== 'false' ? '&servicerequest=true' : '&servicerequest=false';\n partUrl += `&caseType=${this.paymentLibComponent.CASETYPE}`;\n 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 addRemission(fee: IFee) {\n if(this.chkIsAddRemissionBtnEnable(fee)) {\n this.feeId = fee;\n this.viewStatus = 'addremission';\n this.payment = this.orderDetail[0].payments[0];\n this.paymentViewService.getApportionPaymentDetails(this.orderDetail[0].payments[0].reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n \n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n \n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.paymentViewService.getApportionPaymentDetails(payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj.reference === payment.reference);\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n this.viewStatus = 'addrefundforremission';\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n cancelRemoval() {\n this.viewStatus = 'main';\n }\n\n removeFee(fee: any) {\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n window.location.reload();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n issueRefund(payment: IPayment) {\n if (payment !== null && payment !== undefined) {\n if( this.chkIsIssueRefundBtnEnable(payment)) {\n this.paymentViewService.getApportionPaymentDetails(payment.reference).subscribe(\n paymentGroup => {\n paymentGroup.payments = paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(payment.reference));\n if(payment.over_payment > 0) {\n this.viewStatus = '';\n this.payment = payment;\n this.paymentGroupList = paymentGroup;\n this.viewCompStatus = 'overpayment';\n } else {\n this.viewStatus = 'issuerefund';\n this.viewCompStatus = '';\n this.paymentFees = paymentGroup.fees;\n this.payment = payment;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.isRefundRemission = true;\n }\n },\n (error: any) => this.errorMessage = error\n );\n }\n }\n }\n\n goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent({ paymentGroupReference, paymentReference, paymentMethod });\n }\n\n goToPaymentViewComponent(paymentGroup: any) {\n this.paymentLibComponent.paymentMethod = paymentGroup.paymentMethod;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentGroup.paymentReference;\n this.OrderslistService.setOrderRef(this.orderRef);\n this.OrderslistService.setorderCCDEvent(this.orderCCDEvent);\n this.OrderslistService.setorderCreated(this.orderCreated);\n this.OrderslistService.setorderDetail(this.orderDetail);\n this.OrderslistService.setorderParty(this.orderParty);\n this.OrderslistService.setorderTotalPayments(this.orderTotalPayments);\n this.OrderslistService.setorderRemissionTotal(this.orderRemissionTotal);\n this.OrderslistService.setorderFeesTotal(this.orderFeesTotal);\n this.viewStatus = 'payment-view';\n }\n\n chkIsIssueRefundBtnEnable(payment: IPayment): boolean {\n if (payment !== null && payment !== undefined) {\n return payment.issue_refund && payment.refund_enable\n } else {\n return false;\n }\n }\n\n chkIsAddRefundBtnEnable(remission: IRemission): boolean {\n if (remission !== null && remission !== undefined) {\n return remission.add_refund;\n } else {\n return false;\n }\n }\n\n chkIsAddRemissionBtnEnable(fee: IFee): boolean {\n if (fee !== null && fee !== undefined) {\n return fee.add_remission && fee.remission_enable;\n } else {\n return false\n }\n }\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n\n selectPymentOption(paymentType: string) {\n this.paymentType = paymentType;\n this.isContinueBtnDisabled = false;\n }\n goToPaymentViewComp() {\n this.viewCompStatus = '';\n this.viewStatus = 'paymentview';\n }\n continuePayment(paymentgrp: IPaymentGroup) {\n \n if (this.paymentType === 'op') {\n this.isFullyRefund = false\n this.viewStatus = '';\n this.viewCompStatus = 'overPaymentAddressCapture';\n } else if(this.paymentType === 'fp') {\n this.isFullyRefund = true\n this.paymentGroupList = paymentgrp;\n this.viewStatus = 'issuerefund';\n this.viewCompStatus = \"\";\n this.isRefundRemission = true;\n this.paymentLibComponent.isFromPaymentDetailPage = true;\n this.isFromPaymentDetailPage = true;\n this.isFromServiceRequestPage = this.paymentLibComponent.isFromServiceRequestPage;\n }\n }\n getContactDetails(obj:IRefundContactDetails) {\n this.contactDetailsObj = obj;\n this.viewStatus = '';\n this.viewCompStatus = 'overpaymentcheckandanswer';\n }\n gotoPaymentSelectPage(event: Event) {\n event.preventDefault();\n this.viewStatus = '';\n this.viewCompStatus = 'overpayment';\n }\n gotoAddressPage(note?: IRefundContactDetails) {\n if (note) {\n this.notification = { contact_details: note, notification_type: note.notification_type };\n }\n this.errorMessage = '';\n this.viewStatus = '';\n this.viewCompStatus = 'overPaymentAddressCapture';\n }\n processRefund() {\n this.isConfirmationBtnDisabled = true;\n this.errorMessage = '';\n const obj = this.paymentGroupList.fees[0];\n this.fees = [{ id: obj.id, \n code: obj.code,\n version:obj.version, \n apportion_amount: obj.apportion_amount,\n calculated_amount: obj.calculated_amount,\n updated_volume: obj.updated_volume ? obj.updated_volume : obj.volume,\n volume: obj.volume,\n refund_amount: this.getOverPaymentValue() }];\n const requestBody = new PostRefundRetroRemission(this.contactDetailsObj,this.fees, this.paymentGroupList.payments[0].reference, 'RR037', \n this.getOverPaymentValue(), 'op');\n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n })\n }\n\n getOverPaymentValue() {\n let feesOverPayment = 0;\n this.paymentGroupList.fees.forEach(fee => {\n feesOverPayment += fee.over_payment;\n });\n return feesOverPayment > 0 ? feesOverPayment : this.paymentGroupList.payments[0].over_payment;\n\n }\n}","export class IserviceRequestCardPayment {\n amount: string\n currency: string\n language: string\n \n constructor(amount : string) {\n this.amount = amount;\n this.currency = 'GBP';\n this.language = 'string';\n } \n}\n ","export class IserviceRequestPbaPayment {\n account_number: string;\n amount: string\n currency: string\n customer_reference: string\n organisation_name: string\n \n constructor(account_number : string, amount : string, customer_reference: string, orgName: string) {\n this.account_number = account_number;\n this.amount = amount;\n this.currency = 'GBP';\n this.customer_reference = customer_reference;\n this.organisation_name = orgName;\n } \n}\n ","import { Component, OnInit, Input} from '@angular/core';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IserviceRequestCardPayment } from '../../interfaces/IserviceRequestCardPayment';\nimport { IserviceRequestPbaPayment } from '../../interfaces/IserviceRequestPbaPayment';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-pba-payment',\n templateUrl: './pba-payment.component.html',\n styleUrls: ['./pba-payment.component.scss']\n})\nexport class PbaPaymentComponent implements OnInit {\n @Input() pbaPayOrderRef: any;\n viewStatus: string;\n pbaAccountList: string[];\n isPBAAccountHold: boolean = false;\n errorMsg: any;\n isCardPaymentSuccess: boolean = true;\n isInSufficiantFund: boolean = false;\n isPBAAccountNotExist: boolean = false;\n isPBAServerError: boolean = false;\n isGetPBAAccountSucceed: boolean = false;\n selectedPbaAccount: string = '';\n pbaAccountRef: string = '';\n isPbaAccountSelected: boolean = false;\n isCardPaymentSelected: boolean = false;\n isPBADropdownSelected: boolean = false;\n isContinueButtondisabled: boolean = true;\n isPBAAccountPaymentSuccess: boolean = false;\n pbaAccountrPaymentResult: any;\n orgName: string = '';\n\n constructor(private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService) {}\n\n ngOnInit() {\n this.pbaPayOrderRef = this.paymentLibComponent.pbaPayOrderRef;\n this.viewStatus = 'pba-payment';\n this.errorMsg = null;\n this.paymentViewService.getPBAaccountDetails()\n .subscribe(\n result => {\n this.isGetPBAAccountSucceed = true;\n this.orgName = result.organisationEntityResponse.name;\n this.pbaAccountList = result.organisationEntityResponse.paymentAccount;\n },\n error => {\n this.errorMsg = error;\n }\n );\n\n }\n selectpbaaccount(args) {\n if(args.currentTarget.id === 'pbaAccountNumber') {\n this.isPBADropdownSelected = true;\n this.selectedPbaAccount = args.target.value; \n }\n if(args.currentTarget.id === 'pbaAccountRef') {\n this.pbaAccountRef = args.target.value; \n }\n if(this.selectedPbaAccount !== '' && this.pbaAccountRef !== \"\") {\n this.isContinueButtondisabled = false;\n } else {\n this.isContinueButtondisabled = true;\n }\n }\n\n saveAndContinue() {\n\n if(this.isPbaAccountSelected) {\n this.isInSufficiantFund = false;\n this.isPBAAccountNotExist = false;\n this.isPBAServerError = false;\n this.isPBAAccountPaymentSuccess = false;\n if ( this.pbaAccountList.indexOf(this.selectedPbaAccount) !== -1 ) {\n const requestBody = new IserviceRequestPbaPayment(\n this.selectedPbaAccount, this.pbaPayOrderRef.orderTotalFees, this.pbaAccountRef, this.orgName);\n this.paymentViewService.postPBAaccountPayment(this.pbaPayOrderRef.orderRefId, requestBody)\n .subscribe(\n r => {\n try {\n this.pbaAccountrPaymentResult = JSON.parse(r);\n } catch(e) {\n this.pbaAccountrPaymentResult = r;\n }\n this.isPBAAccountPaymentSuccess = true;\n },\n e => {\n if(e.status == '402') {\n this.isInSufficiantFund = true; \n } else if(e.status == '410') {\n this.isPBAAccountNotExist = true;\n } else if(e.status == '412') {\n this.isPBAAccountHold = true;\n } else {\n this.isPBAServerError = true;\n }\n }\n );\n } else {\n this.isPBAServerError = true;\n }\n } else if (this.isCardPaymentSelected) {\n this.cardPayment();\n }\n\n }\n cardPayment() {\n this.isCardPaymentSuccess = true;\n const requestBody = new IserviceRequestCardPayment (\n this.pbaPayOrderRef.orderTotalFees);\n this.paymentViewService.postWays2PayCardPayment(this.pbaPayOrderRef.orderRefId, requestBody)\n .subscribe(\n result => {\n const paymentUrl = JSON.parse(result).next_url;\n window.location.href = paymentUrl;\n },\n error => {\n this.isCardPaymentSuccess = false;\n }\n );\n\n }\n selectPaymentMethod(type: string) {\n if(type === 'PBA') {\n this.isPbaAccountSelected = true;\n this.isCardPaymentSelected = false;\n this.isPBADropdownSelected = false\n this.isContinueButtondisabled = true;\n this.selectedPbaAccount = null;\n } else if (type === 'CARD') {\n this.isPbaAccountSelected = false;\n this.isCardPaymentSelected = true;\n this.isPBADropdownSelected = false\n this.isContinueButtondisabled = false;\n }\n }\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = false;\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n }\n}\n","import { NgModule } from '@angular/core';\nimport { HttpClientModule } from '@angular/common/http';\nimport { CommonModule } from '@angular/common';\n\nimport { PaymentListComponent } from './components/payment-list/payment-list.component';\nimport { PaymentViewComponent } from './components/payment-view/payment-view.component';\nimport { ProcessRefundComponent } from './components/process-refund/process-refund.component';\nimport { RefundListComponent } from './components/refund-list/refund-list.component';\n\nimport { CardDetailsComponent } from './components/card-details/card-details.component';\nimport { PageNotFoundComponent } from './components/page-not-found.component';\nimport { PaymentLibComponent } from './payment-lib.component';\nimport { StatusHistoryComponent } from './components/status-history/status-history.component';\nimport { ContactDetailsComponent } from './components/contact-details/contact-details.component';\nimport { PbaDetailsComponent } from './components/pba-details/pba-details.component';\nimport { LoggerService } from './services/shared/logger/logger.service';\nimport { ConsoleLoggerService } from './services/shared/logger/console-logger.service';\nimport { WebComponentHttpClient } from './services/shared/httpclient/webcomponent.http.client';\nimport { CaseTransactionsComponent } from './components/case-transactions/case-transactions.component';\nimport { FeeSummaryComponent } from './components/fee-summary/fee-summary.component';\nimport { ErrorBannerComponent } from './components/error-banner/error-banner.component';\nimport { MarkUnidentifiedPaymentComponent } from './components/mark-unidentified-payment/mark-unidentified-payment.component';\nimport { MarkUnsolicitedPaymentComponent } from './components/mark-unsolicited-payment/mark-unsolicited-payment.component';\nimport { UnprocessedPaymentsComponent } from './components/unprocessed-payments/unprocessed-payments.component';\nimport { ProcessedPaymentsComponent } from './components/processed-payments/processed-payments.component';\nimport { AllocatePaymentsComponent } from './components/allocate-payments/allocate-payments.component';\nimport { AddRemissionComponent } from './components/add-remission/add-remission.component';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { CcdHyphensPipe } from './pipes/ccd-hyphens.pipe';\nimport { CapitalizePipe } from './pipes/capitalize.pipe';\nimport { keyValuePipe } from './pipes/key-value.pipe';\nimport { SanitizeHtmlPipe } from './pipes/sanitize-html.pipe';\nimport { ReportsComponent } from './components/reports/reports.component';\nimport { XlFileService } from './services/xl-file/xl-file.service';\nimport { TableComponent } from './components/table/table.component';\nimport { MatTableModule } from '@angular/material/table';\nimport { MatPaginatorModule } from '@angular/material/paginator';\nimport { MatSortModule } from '@angular/material/sort';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\n// import { BrowserAnimationsModule } from '@angular/platform-browser/animations';\n// import { NoopAnimationsModule } from '@angular/platform-browser/animations';\nimport { RefundStatusComponent } from './components/refund-status/refund-status.component';\nimport { ServiceRequestComponent } from './components/service-request/service-request.component';\nimport { PbaPaymentComponent } from './components/pba-payment/pba-payment.component';\n\n@NgModule({\n imports: [\n CommonModule,\n HttpClientModule,\n FormsModule,\n ReactiveFormsModule,\n MatTableModule,\n MatPaginatorModule,\n MatSortModule,\n MatFormFieldModule,\n MatInputModule,\n // BrowserAnimationsModule,\n // NoopAnimationsModule\n ],\n declarations: [\n PaymentLibComponent,\n PaymentListComponent,\n PaymentViewComponent,\n PbaPaymentComponent,\n ContactDetailsComponent,\n ProcessRefundComponent,\n RefundListComponent,\n CardDetailsComponent,\n PageNotFoundComponent,\n StatusHistoryComponent,\n MarkUnidentifiedPaymentComponent,\n MarkUnsolicitedPaymentComponent,\n UnprocessedPaymentsComponent,\n ProcessedPaymentsComponent,\n AllocatePaymentsComponent,\n PbaDetailsComponent,\n CaseTransactionsComponent,\n FeeSummaryComponent,\n AddRemissionComponent,\n CcdHyphensPipe,\n CapitalizePipe,\n keyValuePipe,\n SanitizeHtmlPipe,\n ReportsComponent,\n ErrorBannerComponent,\n TableComponent,\n RefundStatusComponent,\n ServiceRequestComponent\n ],\n exports: [PaymentLibComponent],\n providers: [\n { provide: LoggerService, useClass: ConsoleLoggerService },\n XlFileService,\n WebComponentHttpClient\n ]\n})\n\nexport class PaymentLibModule { }\n"],"names":["PaymentLibService","prototype","setApiRootUrl","apiRoot","this","API_ROOT","getApiRootUrl","setBulkScanApiRootUrl","bulkscanapiRoot","BULKSCAN_API_ROOT","getBulkScanApiRootUrl","setRefundndsApiRootUrl","refundsapiRoot","REFUNDS_API_ROOT","getRefundsApiRootUrl","setNoticationApiRootUrl","notificationapiRoot","NOTIFICATION_API_ROOT","getNoticationApiRootUrl","setCardPaymentReturnUrl","cardPaymentReturnUrl","CARDPAYMENTRETURNURL","getCardPaymentReturnUrl","Injectable","args","providedIn","OrderslistService","setOrdersList","orderLevelFees","ordersList","next","Object","assign","getOrdersList","setRefundView","refundList","refundView","getRefundView","setCaseType","caseType","getCaseType","setCCDCaseNumber","ccdCaseNumber","getCCDCaseNumber","setFeeExists","feeExists","getFeeExists","setisFromServiceRequestPage","isFromServiceRequestPage","getisFromServiceRequestPages","setOrderRefId","OrderRefId","getSelectedOrderRefId","setnavigationPage","navigationPage","getnavigationPageValue","setpaymentPageView","paymentpageList","paymentPageView","getpaymentPageView","setUserRolesList","rolesList","getUserRolesList","setorderDetail","orderDetail","getorderDetail","setOrderRef","orderRef","getorderRefs","setorderCCDEvent","orderCCDEvent","getorderCCDEvents","setorderCreated","orderCreated","getorderCreateds","setorderParty","orderParty","getorderPartys","setorderRemissionTotal","orderRemissionTotal","getorderRemissionTotals","setorderFeesTotal","orderFeesTotal","getorderFeesTotals","setorderTotalPayments","orderTotalPayments","getoorderTotalPaymentss","BehaviorSubject","getcaseType","asObservable","getFeeExist","getCCDCaseNumberforRefund","getisFromServiceRequestPage","getOrderRefId","getnavigationPage","getorderRef","getorderCCDEvent","getorderCreated","getorderParty","getorderRemissionTotal","getorderFeesTotal","getorderTotalPayments","PaymentLibComponent","ngAfterContentChecked","cd","detectChanges","ngOnInit","paymentLibService","LOGGEDINUSERROLES","length","PAYMENT_GROUP_REF","paymentGroupReference","DCN_NUMBER","bspaymentdcn","REFUNDLIST","VIEW","viewName","isTakePayment","TAKEPAYMENT","Component","selector","template","ChangeDetectorRef","Input","unProcessedPaymentServiceId","isFromPayBubble","unProcessedPayment","orderPendingPayments","ErrorHandlerService","handleError","err","errorMessage","error","Error","message","status","undefined","JSON","parse","statusCode","messsage","stringify","_throw","getServerErrorMessage","isErrorExist","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","PostRefundRetroRemission","contact_details","fees","payment_reference","refund_reason","total_refund_amount","is_over_payment","PaymentViewComponent","selectedOption","SELECTED_OPTION","dcnNumber","isTurnOff","ISTURNOFF","serviceReference","viewStatus","paymentViewService","paymentGroup","fee","isRemissionsMatch","remissions","rem","fee_code","code","push","paymentFees","filter","paymentGroupObj","includes","paymentAllocation","payment_allocation","isStatusAllocated","allocation_status","defineProperty","method","channel","goToPaymentList","getOverPaymentValue","feesOverPayment","over_payment","goToServiceRequestPage","SERVICEREQUEST","window","location","reload","goToCaseTransationPage","event","preventDefault","data","ISBSENABLE","resetOrderData","addRemission","chkIsAddRemissionBtnEnable","reference","payment","isFromPaymentDetailPage","isRefundRemission","checkForFees","processRefund","isConfirmationBtnDisabled","obj","id","version","apportion_amount","calculated_amount","updated_volume","volume","refund_amount","requestBody","contactDetailsObj","response","viewCompStatus","refundReference","refund_reference","refundAmount","gotoAddressPage","note","notification","notification_type","addRefundForRemission","remission","remissionFeeAmt","net_amount","goToPaymentViewComponent","issueRefund","paymentgrp","chkIsIssueRefundBtnEnable","getRemissionByFeeCode","feeCode","remissions_1","tslib_1.__values","remissions_1_1","issue_refund","refund_enable","chkIsAddRefundBtnEnable","add_refund","add_remission","remission_enable","selectPymentOption","paymentType","isContinueBtnDisabled","continuePayment","isFullyRefund","gotoPaymentSelectPage","getContactDetails","isAddFeeBtnEnabled","isIssueRefunfBtnEnable","allowedRolesToAccessRefund","RefundsService","getRefundReasons","getRefundRejectReasons","getRefundActions","patchRefundActions","reviewerAction","getRefundList","refundstatus","selfexclusive","getRefundStatusHistory","getRefundStatusList","getUserDetails","postIssueRefund","putResendOrEdit","refundRef","notificationType","patchResubmitRefund","ProcessRefundComponent","refundActionList","getErrorMessage","processRefundForm","formBuilder","group","refundActionField","FormControl","Validators","compose","required","refundRejectReasonField","sendMeBackField","minLength","maxLength","pattern","enterReasonField","refundlistsource","ccd_case_number","isFromRefundListPage","cpoDetails","isCPODown","checkRefundActions","refundActionsHasError","isReasonFieldEmpty","isReasonEmpty","isReasonInvalid","refundRejectReasonHasError","isConfirmButtondisabled","isSendMeBackClicked","isRejectClicked","isOtherClicked","refundRejectReasonList","processRefundSubmit","processRefundRequest","resetForm","controls","processFormError","errors","dirty","valid","reason","isSuccesspageEnable","successMsg","invalid","minlength","actualLength","maxlength","errorMsg","bodyTxt","loadRefundListPage","navigationpage","isRefundStatusView","loadRefundsHomePage","redirecttoRefundListPage","loadCaseTransactionPage","vals","field","isReasonFieldInvalid","reasonFieldMinHasError","reasonFieldMaxHasError","goToCaseReview","router","navigate","relativeTo","activeRoute","FormBuilder","Router","ActivatedRoute","sendmeback","RefundListComponent","userLst","some","isAuthorized","isApproveTableVisible","tableApprovalHeader","tableRejectedHeader","refundService","approvalStatus","submittedRefundList","rejectStatus","rejectedRefundList","isRejectTableVisible","CardDetailsService","getCardDetails","CardDetailsComponent","cardDetailsService","cardDetails","pageTitle","PageNotFoundComponent","StatusHistoryService","getPaymentStatusesByReference","StatusHistoryComponent","statusHistoryService","statuses","NotificationService","getRefundNotification","getAddressByPostcode","postcode","ContactDetailsComponent","emailAddressForm","email","postCodeForm","manualAddressForm","addressl1","addressl2","townorcity","county","mpostcode","country","addressObj","setEditDetails","isEditOperationInRefundList","isEmailSAddressClicked","isPostcodeClicked","isManualAddressClicked","setValue","patchValue","address_line","city","postal_code","selectContactOption","isLinkedClied","finalFormSubmit","fieldCtrls","emailField","assignContactDetailsInFefundsList","assignContactDetails","emit","postcodeValidation","str","postcodeField","notificationService","refundsNotification","addressPostcodeList","isShowPickAddress","totalresults","postcodeAddress","isAddressBoxEmpty","addressLine","addressArray","ADDRESS","addressObject","POST_TOWN","LOCAL_CUSTODIAN_CODE_DESCRIPTION","POSTCODE","redirection","redirectToIssueRefund","val","isEmailEmpty","emailHasError","isPostcodeEmpty","postcodeHasError","isaddressLine1Empty","addressLine1HasError","addressLine2HasError","isTownOrCityEmpty","townOrCityHasError","isCountyEmpty","countyHasError","isMPostcodeEmpty","mpostcodeHasError","isCountryEmpty","Output","EventEmitter","PbaDetailsComponent","noop","ConsoleLoggerService","console","log","apply","CaseTransactionsService","getPaymentGroups","BulkScaningPaymentService","getBSPaymentsByCCD","getBSPaymentsByDCN","dcn","postBSAllocatePayment","paymentRef","postBSPaymentStrategic","postBSWoPGStrategic","patchBSChangeStatus","calculateOutStandingAmount","feesTotal","paymentsTotal","remissionsTotal","toUpperCase","amount","hwf_amount","removeUnwantedString","input","replaceText","CaseTransactionsComponent","paymentView","payment_group_reference","goToPayementView","isGrpOutstandingAmtPositive","CASETYPE","EXC_REFERENCE","excReference","takePayment","serviceRequest","serviceRequestValue","isBulkScanEnable","toLocaleLowerCase","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","isFeeOverPaymentExist_1","resetOrderVariables","overPaymentAmount","service_request_status","orderStatus","orderAddBtnEnable","orderRefId","orderTotalFees","orderReferenceObj","x","redirectToOrderFeeSearchPage","orderef","nonOffLinePayment","a","b","date_created","amount_due","clAmountDue","allocationLen","nonPayments","allPayments","remisison","totalRefundAmount_1","isFeeAmountZero_1","grpOutstandingAmount","isFeeRecordsExist","isNewPaymentGroup_1","index","isHistoricGroupAvailable","getGroupOutstandingAmount","redirectToFeeSearchPage","navigateByUrl","chkForAddRemission","redirectToremissionPage","redirectToReportsPage","loadFeeSummaryPage","selectedUnprocessedFeeEvent","unprocessedRecordId","isUnprocessedRecordSelected","getUnprocessedFeeCount","unProcessedRecordCount","unprocessedRecordCount","calculateAmountDue","confirmRemoveFee","isRemoveBtnDisabled","cancelRemoval","removeFee","success","isCheckAmountdueExist","amountDue","chkIssueRefundBtnEnable","chkForPBAPayment","check4AllowedRoles2AccessRefund","_b","_c","allowFurtherAccessAfter4Days","isPBA","chkIsRefundRemissionBtnEnable","isRefundRemissionBtnEnable","loadPBAAccountPage","pbaPayOrderRef","isAddRemissionEnable","orderRemissionDetails","ispaymentGroupApisuccess","isAddRemissionBtnEnabled","isEligible4PBAPayment","currentDate","Date","role","indexOf","check4AllowedRoles2AccessPBApayment","tmp4DayAgo","setDate","getDate","PaymentToPayhubRequest","currency","description","provider","toFixed","case_type","PayhubAntennaRequest","BS_ENABLE_FLAG","FeeSummaryComponent","bsPaymentDcnNumber","platForm","features","result","feature","uid","enable","getUnassignedPaymentlist","getPaymentGroup","unassignedPayments","service","responsible_service_id","upPaymentErrorMessage","currentFee","isPaymentExist","isRemissionsExist","totalAfterRemission","isFeeAmountZero","outStandingAmount","partUrl","cancelRemission","page","antennaReqBody","go","payhubHtml","isBackButtonEnable","href","goToAllocatePage","Location","ErrorBannerComponent","UnidentifiedPaymentsRequest","unidentified_reason","payment_allocation_status","name","AllocatePaymentRequest","unAllocatedPayment","exceptionRecord","allocatedRequest","banked_date","date_banked","exception_record","document_control_number","dcn_reference","external_provider","giro_slip_no","bgc_reference","payer_name","payment_channel","payment_status","payment_method","payment_allocation_dto","MarkUnidentifiedPaymentComponent","getUnassignedPayment","markPaymentUnidentifiedForm","investicationDetail","unassignedRecord","siteID","beCcdNumber","beExceptionNumber","exceptionReference","ccdReference","trimUnderscore","saveAndContinue","investicationField","formerror","investigationComment","isInvesticationDetailEmpty","investicationDetailHasError","investicationDetailMinHasError","investicationDetailMaxHasError","confirmPayments","postStrategicBody","res1","res2","response2","reqBody","res3","gotoCasetransationPage","user_id","res","cancelMarkUnidentifiedPayments","UnsolicitedPaymentsRequest","responsible_office","responsible_person","email_id","receiving_office","receiving_email_address","sending_email_address","MarkUnsolicitedPaymentComponent","siteids","isContinueButtondisabled","siteIDList","scrollTo","markPaymentUnsolicitedForm","responsibleOffice","responsiblePerson","emailId","selectedSiteId","reasonField","officeIdField","reasonHasError","reasonMinHasError","reasonMaxHasError","isResponsibleOfficeEmpty","responsibleOfficeHasError","cancelMarkUnsolicitedPayments","checkingFormValue","formFields","valueExists","hasOwnProperty","selectchange","target","selectedSiteName","selectedIndex","text","UnprocessedPaymentsComponent","isNewpcipaloff","isOldpcipaloff","isStFixEnable","FEE_RECORDS_EXISTS","setValuesForUnassignedRecord","unassignedRecordList","unassignedRecordListLength","serviceId","isExceptionCase","unprocessedPaymentSelectEvent","formatUnassignedRecordId","ID","recordId","loadUnsolicitedPage","selectedRecordReference","validateButtons","resetButtons","isAllocateToExistingFeebtnEnabled","isMarkAsUnidentifiedbtnEnabled","isAllocatedToNewFeebtnEnabled","PAYMENTREF","IS_OS_AMT_AVAILABLE","unprocessedPaymentUnSelectEvent","showDetailRow","unassignedRecordSelectedList","isRecordExist","ProcessedPaymentsComponent","redirectToPaymentViewPage","IAllocationPaymentsRequest","explanation","userName","user_name","AllocatePaymentsComponent","overUnderPaymentForm","moreDetails","fstCon","scndCn","selectedPaymentGroup","gotoSummaryPage","cancelAllocatePayment","confirmAllocatePayement","enCookieUserName","cookieUserName","decodeURIComponent","fullName","paymentDetailsField","paymentFormError","userNameField","isEmptyCondtion","paymentReason","paymentExplanation","isOtherOptionSelected","isRemainingAmountGtZero","isRemainingAmountLtZero","otherPaymentExplanation","finalServiceCall","paymentReasonHasError","paymentExplanationHasError","isPaymentDetailsEmpty","isPaymentDetailsInvalid","paymentDetailsMinHasError","paymentDetailsMaxHasError","isUserNameEmpty","isUserNameInvalid","GroupOutstandingAmount","remainingToBeAssigned","isMoreDetailsBoxHide","reset","paymentSectionLabel","feedbackUrlLabel","remainingAmount","afterFeeAllocateOutstanding","amountForAllocation","selectRadioButton","key","OrderListSelectEvent","reasonList","overPayment","hwfReward","wrongFee","notIssueCase","otherDeduction","shortFall","helpWithFee","other","explanationList","referRefund","noRefund","noCase","holdCase","heldCase","refund","duplicate","humanerror","caseWithdrawn","AddRemissionRequest","hwf_reference","AddRetroRemissionRequest","PostIssueRefundRetroRemission","remissionReference","contactDeatils","AddRemissionComponent","default","pattern1","pattern2","remessionPayment","isPaymentSuccess","option","remissionForm","remissionCode","refundReason","refundDDReason","feeAmount","feesList","array","onlySelf","refundPaymentReference","refundFeesList","refundReasons","recently_used","commonRefundReasons","sort","localeCompare","changeRefundReason","creds","selected","noneSelected","item","querySelectorAll","el","classList","remove","check_en","v1","AppAmt","Volume","ele","getElementById","formArray","checked","at","removeAttribute","setAttribute","resetRemissionForm","remissionctrls","isRemissionLessThanFee","setErrors","confirmRemission","newNetAmount","remissionAmount","trim","LDUrl","routeReuseStrategy","shouldReuseRoute","onSameUrlNavigation","isRemissionCodeEmpty","remissionCodeHasError","isAmountEmpty","amountHasError","isRemissionLessThanFeeError","addRemissionCode","isFromCheckAnsPage","gotoAddRetroRemissionCodePage","iscancelClicked","refundListAmount","isFromRefundStatusPage","refundListReason","selectedRefundReason","selectedValue","gotoCheckRetroRemissionPage","gotoAmountRetroRemission","gotoProcessRetroRemissionPage","gotoProcessRetroRemission","confirmRetroRemission","retroRemission","remissionamt","isRemissionApplied","remission_reference","gotoIssueRefundConfirmation","reduce","c","refundHasError","displayRefundReason","gotoIssueRefundPage","gotoIssuePage","checkboxs","getElementsByTagName","quantity","amountToRefund","apportionAmount","j","fullRefund","elementId","getErrorClass","quantityUpdated","refundAmtForFeeVolumes","innerText","allowedRefundAmount","refundFees","calAmtToRefund","amtToRefund","gotoContactDetailsPage","add","changeIssueRefundReason","confirmIssueRefund","map","gotoRefundReasonPage","localStorage","setItem","isRefundReasonsSelected","showReasonText","reasonLength","gotoPartialFeeRefundScreen","gotoServiceRequestPage","sendOrderDetail","sendOrderRef","gotoRemissionSuccess","gotoCasetransationPageCancelBtnClicked","changeRefundAmount","getFormattedCurrency","concat","hasErrors","class","Array","CcdHyphensPipe","transform","match","Pipe","CapitalizePipe","slice","keyValuePipe","keys","SanitizeHtmlPipe","sanitizer","bypassSecurityTrustHtml","DomSanitizer","XlFileService","exportAsExcelFile","json","excelFileName","worksheet","XLSX.utils","json_to_sheet","header","setDataLossReportHeaders","setUnprocessedReportHeaders","setProcessedUnallocatedReportHeaders","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","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","refund_fees","RefundStatusComponent","refundlist","isEliginbleToAccess","refundStatusForm","getRefundsNotification","getRefundsStatusHistoryList","isProcessRefund","refundButtonState","refund_status","statusHistoryList","refundStatusHistories","status_history_dto_list","isLastUpdatedByCurrentUser","last_updated_by_current_user","notificationList","goToRefundView","gotoReviewDetailsPage","gotoReviewAndReSubmitPage","oldRefundReason","changedAmount","refundreason","notes","isRefundBtnDisabled","gotoAmountPage","goToReviewAndSubmitView","getRefundListReason","refundCode","getRefundAmount","getRefundFees","fee_id","gotoReviewRefundConfirmationPage","resubmitRequest","gotoEditAddressDetails","isEditDetailsClicked","addressDetails","getContactDetailsForRefundList","gotoEditDetailsPage","submitEditDetail","isResendOperationSuccess","resendRequest","putResend","Event","isEditAddressDeatilsClicked","ServiceRequestComponent","isServiceRequest","goToServiceRquestComponent","paymentGroupList","goToPaymentViewComp","IserviceRequestCardPayment","language","IserviceRequestPbaPayment","account_number","customer_reference","orgName","organisation_name","PbaPaymentComponent","isGetPBAAccountSucceed","organisationEntityResponse","pbaAccountList","paymentAccount","selectpbaaccount","currentTarget","isPBADropdownSelected","selectedPbaAccount","pbaAccountRef","isPbaAccountSelected","isInSufficiantFund","isPBAAccountNotExist","isPBAServerError","isPBAAccountPaymentSuccess","pbaAccountrPaymentResult","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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"}