@hmcts/ccpay-web-component 5.0.1-beta08 → 5.0.1-beta104

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 (96) hide show
  1. package/bundles/hmcts-ccpay-web-component.umd.js +2611 -1394
  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 +13 -11
  6. package/esm2015/lib/components/add-remission/add-remission.component.js +274 -162
  7. package/esm2015/lib/components/case-transactions/case-transactions.component.js +37 -59
  8. package/esm2015/lib/components/contact-details/contact-details.component.js +346 -0
  9. package/esm2015/lib/components/payment-view/payment-view.component.js +92 -18
  10. package/esm2015/lib/components/process-refund/process-refund.component.js +95 -9
  11. package/esm2015/lib/components/refund-list/refund-list.component.js +5 -9
  12. package/esm2015/lib/components/refund-status/refund-status.component.js +205 -118
  13. package/esm2015/lib/components/service-request/service-request.component.js +607 -0
  14. package/esm2015/lib/components/status-history/status-history.component.js +2 -2
  15. package/esm2015/lib/components/table/table.component.js +26 -9
  16. package/esm2015/lib/interfaces/IFee.js +3 -1
  17. package/esm2015/lib/interfaces/IPayment.js +3 -1
  18. package/esm2015/lib/interfaces/IPutNotificationRequest.js +25 -0
  19. package/esm2015/lib/interfaces/IRefundContactDetails.js +25 -0
  20. package/esm2015/lib/interfaces/IRefundList.js +3 -1
  21. package/esm2015/lib/interfaces/IRefundsNotifications.js +21 -0
  22. package/esm2015/lib/interfaces/PostIssueRefundRetroRemission.js +6 -2
  23. package/esm2015/lib/interfaces/PostRefundRetroRemission.js +6 -2
  24. package/esm2015/lib/payment-lib.component.js +54 -9
  25. package/esm2015/lib/payment-lib.module.js +8 -4
  26. package/esm2015/lib/payment-lib.service.js +16 -1
  27. package/esm2015/lib/services/notification/notification.service.js +85 -0
  28. package/esm2015/lib/services/orderslist.service.js +193 -1
  29. package/esm2015/lib/services/payment-view/payment-view.service.js +1 -29
  30. package/esm2015/lib/services/refunds/refunds.service.js +10 -1
  31. package/esm2015/lib/services/shared/error-handler.service.js +31 -2
  32. package/esm5/hmcts-ccpay-web-component.js +13 -11
  33. package/esm5/lib/components/add-remission/add-remission.component.js +299 -163
  34. package/esm5/lib/components/case-transactions/case-transactions.component.js +37 -69
  35. package/esm5/lib/components/contact-details/contact-details.component.js +370 -0
  36. package/esm5/lib/components/payment-view/payment-view.component.js +96 -18
  37. package/esm5/lib/components/process-refund/process-refund.component.js +98 -9
  38. package/esm5/lib/components/refund-list/refund-list.component.js +5 -9
  39. package/esm5/lib/components/refund-status/refund-status.component.js +232 -117
  40. package/esm5/lib/components/service-request/service-request.component.js +679 -0
  41. package/esm5/lib/components/status-history/status-history.component.js +2 -2
  42. package/esm5/lib/components/table/table.component.js +25 -10
  43. package/esm5/lib/interfaces/IFee.js +3 -1
  44. package/esm5/lib/interfaces/IPayment.js +3 -1
  45. package/esm5/lib/interfaces/IPutNotificationRequest.js +23 -0
  46. package/esm5/lib/interfaces/IRefundContactDetails.js +25 -0
  47. package/esm5/lib/interfaces/IRefundList.js +3 -1
  48. package/esm5/lib/interfaces/IRefundsNotifications.js +21 -0
  49. package/esm5/lib/interfaces/PostIssueRefundRetroRemission.js +5 -2
  50. package/esm5/lib/interfaces/PostRefundRetroRemission.js +5 -2
  51. package/esm5/lib/payment-lib.component.js +52 -6
  52. package/esm5/lib/payment-lib.module.js +8 -4
  53. package/esm5/lib/payment-lib.service.js +23 -1
  54. package/esm5/lib/services/notification/notification.service.js +89 -0
  55. package/esm5/lib/services/orderslist.service.js +256 -1
  56. package/esm5/lib/services/payment-view/payment-view.service.js +1 -42
  57. package/esm5/lib/services/refunds/refunds.service.js +16 -1
  58. package/esm5/lib/services/shared/error-handler.service.js +31 -2
  59. package/fesm2015/hmcts-ccpay-web-component.js +1727 -686
  60. package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
  61. package/fesm5/hmcts-ccpay-web-component.js +7865 -6632
  62. package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
  63. package/hmcts-ccpay-web-component.d.ts +12 -10
  64. package/hmcts-ccpay-web-component.metadata.json +1 -1
  65. package/lib/components/add-remission/add-remission.component.d.ts +22 -1
  66. package/lib/components/case-transactions/case-transactions.component.d.ts +1 -6
  67. package/lib/components/contact-details/contact-details.component.d.ts +41 -0
  68. package/lib/components/payment-view/payment-view.component.d.ts +12 -3
  69. package/lib/components/process-refund/process-refund.component.d.ts +11 -1
  70. package/lib/components/refund-status/refund-status.component.d.ts +20 -5
  71. package/lib/components/service-request/service-request.component.d.ts +103 -0
  72. package/lib/components/table/table.component.d.ts +5 -2
  73. package/lib/interfaces/IFee.d.ts +1 -0
  74. package/lib/interfaces/IPayment.d.ts +1 -0
  75. package/lib/interfaces/IPutNotificationRequest.d.ts +6 -0
  76. package/lib/interfaces/IRefundContactDetails.d.ts +9 -0
  77. package/lib/interfaces/IRefundList.d.ts +2 -0
  78. package/lib/interfaces/IRefundsNotifications.d.ts +16 -0
  79. package/lib/interfaces/PostIssueRefundRetroRemission.d.ts +3 -1
  80. package/lib/interfaces/PostRefundRetroRemission.d.ts +3 -1
  81. package/lib/payment-lib.component.d.ts +17 -3
  82. package/lib/payment-lib.service.d.ts +3 -0
  83. package/lib/services/notification/notification.service.d.ts +15 -0
  84. package/lib/services/orderslist.service.d.ts +34 -0
  85. package/lib/services/payment-view/payment-view.service.d.ts +0 -5
  86. package/lib/services/refunds/refunds.service.d.ts +2 -0
  87. package/package.json +1 -1
  88. package/esm2015/lib/components/pba-payment/pba-payment.component.js +0 -199
  89. package/esm2015/lib/interfaces/IserviceRequestCardPayment.js +0 -23
  90. package/esm2015/lib/interfaces/IserviceRequestPbaPayment.js +0 -28
  91. package/esm5/lib/components/pba-payment/pba-payment.component.js +0 -216
  92. package/esm5/lib/interfaces/IserviceRequestCardPayment.js +0 -22
  93. package/esm5/lib/interfaces/IserviceRequestPbaPayment.js +0 -25
  94. package/lib/components/pba-payment/pba-payment.component.d.ts +0 -27
  95. package/lib/interfaces/IserviceRequestCardPayment.d.ts +0 -6
  96. package/lib/interfaces/IserviceRequestPbaPayment.d.ts +0 -7
@@ -1 +1 @@
1
- {"version":3,"sources":["ng://@hmcts/ccpay-web-component/lib/payment-lib.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/services/orderslist.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/interfaces/IserviceRequestCardPayment.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IserviceRequestPbaPayment.ts","ng://@hmcts/ccpay-web-component/lib/components/pba-payment/pba-payment.component.ts","ng://@hmcts/ccpay-web-component/lib/payment-lib.module.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\n\nexport class PaymentLibService {\n API_ROOT: string;\n BULKSCAN_API_ROOT: string;\n REFUNDS_API_ROOT: string;\n\n constructor() { }\n\n setApiRootUrl(apiRoot: string): void {\n this.API_ROOT = apiRoot;\n }\n\n getApiRootUrl(): string {\n return this.API_ROOT;\n }\n\n setBulkScanApiRootUrl(bulkscanapiRoot: string): void {\n this.BULKSCAN_API_ROOT = bulkscanapiRoot;\n }\n\n getBulkScanApiRootUrl(): string {\n return this.BULKSCAN_API_ROOT;\n }\n\n setRefundndsApiRootUrl(refundsapiRoot: string): void {\n this.REFUNDS_API_ROOT = refundsapiRoot;\n }\n\n getRefundsApiRootUrl(): string {\n return this.REFUNDS_API_ROOT;\n }\n}\n","import { ChangeDetectorRef, Component, Input, OnInit } from '@angular/core';\nimport { PaymentLibService } from './payment-lib.service';\nimport { IBSPayments } from './interfaces/IBSPayments';\nimport { IPayment } from './interfaces/IPayment';\n\n@Component({\n selector: 'ccpay-payment-lib',\n template: `\n <ccpay-refund-list [USERID]=\"USERID\" [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" [LOGGEDINUSEREMAIL]=\"LOGGEDINUSEREMAIL\" *ngIf=\"viewName === 'refund-list'\"></ccpay-refund-list>\n <ccpay-payment-list *ngIf=\"viewName === 'payment-list'\"></ccpay-payment-list>\n <ccpay-refund-status [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'refundstatuslist'\"> </ccpay-refund-status >\n <ccpay-payment-view [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'payment-view'\"\n [isTurnOff]=\"ISTURNOFF\" [isTakePayment]=\"TAKEPAYMENT\" [caseType]=\"CASETYPE\"\n [isOldPcipalOff]=\"ISOLDPCIPALOFF\"\n [isNewPcipalOff]=\"ISNEWPCIPALOFF\"></ccpay-payment-view>\n\n <ccpay-process-refund *ngIf=\"viewName === 'process-refund'\"\n [refundReference]=\"refundReference\"\n [refundlistsource]=\"refundlistsource\"\n ></ccpay-process-refund>\n <ccpay-pba-payment *ngIf=\"viewName === 'pba-payment'\"\n [pbaPayOrderRef]=\"pbaPayOrderRef\"\n ></ccpay-pba-payment>\n\n <ccpay-case-transactions [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'case-transactions'\"></ccpay-case-transactions>\n <app-mark-unidentified-payment *ngIf=\"viewName === 'unidentifiedPage'\"\n [caseType]=\"CASETYPE\"></app-mark-unidentified-payment>\n <app-mark-unsolicited-payment *ngIf=\"viewName === 'unsolicitedPage'\"\n [caseType]=\"CASETYPE\"></app-mark-unsolicited-payment>\n <app-allocate-payments *ngIf=\"viewName === 'allocate-payments'\"\n [isTurnOff]=\"ISTURNOFF\"\n [caseType]=\"CASETYPE\"\n ></app-allocate-payments>\n <ccpay-fee-summary *ngIf=\"viewName === 'fee-summary'\"\n [ccdCaseNumber]=\"CCD_CASE_NUMBER\" \n [paymentGroupRef]=\"paymentGroupReference\"\n [isTurnOff]=\"ISTURNOFF\"\n [caseType]=\"CASETYPE\"\n [isOldPcipalOff]=\"ISOLDPCIPALOFF\"\n [isNewPcipalOff]=\"ISNEWPCIPALOFF\"\n ></ccpay-fee-summary>\n <ccpay-reports *ngIf=\"viewName === 'reports'\"></ccpay-reports>\n `\n})\n\nexport class PaymentLibComponent implements OnInit {\n @Input('API_ROOT') API_ROOT: string;\n @Input('BULKSCAN_API_ROOT') BULKSCAN_API_ROOT: string;\n @Input('REFUNDS_API_ROOT') REFUNDS_API_ROOT: string;\n @Input('CCD_CASE_NUMBER') CCD_CASE_NUMBER: string;\n @Input('EXC_REFERENCE') EXC_REFERENCE: string;\n @Input('PAYMENT_METHOD') PAYMENT_METHOD: string;\n @Input('VIEW') VIEW: string;\n @Input('VIEWSERVICE') VIEWSERVICE: string;\n @Input('PAYMENT_GROUP_REF') PAYMENT_GROUP_REF?: string;\n @Input('TAKEPAYMENT') TAKEPAYMENT: boolean;\n @Input('SERVICEREQUEST') SERVICEREQUEST: string;\n @Input('DCN_NUMBER') DCN_NUMBER: string;\n @Input('SELECTED_OPTION') SELECTED_OPTION: string;\n @Input('ISBSENABLE') ISBSENABLE: Boolean;\n @Input('ISSFENABLE') ISSFENABLE: boolean;\n @Input('ISTURNOFF') ISTURNOFF: boolean;\n @Input('CASETYPE') CASETYPE: string;\n @Input('ISOLDPCIPALOFF') ISOLDPCIPALOFF: boolean;\n @Input('ISNEWPCIPALOFF') ISNEWPCIPALOFF: boolean;\n @Input('rootUrl') rootUrl: boolean;\n @Input('REFUNDLIST') REFUNDLIST: string;\n @Input('USERID') USERID: string;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: any[];\n @Input('LOGGEDINUSEREMAIL') LOGGEDINUSEREMAIL: string;\n @Input('isFromServiceRequestPage') isFromServiceRequestPage: boolean;\n\n paymentMethod: string;\n bspaymentdcn: string;\n unProcessedPaymentServiceId: string = null;\n paymentGroupReference: string;\n paymentReference: string;\n refundReference: string;\n refundlistsource: any;\n viewName: string;\n isTurnOff: boolean;\n caseType: string;\n isOldPcipalOff: boolean;\n isNewPcipalOff: boolean;\n unProcessedPayment: IBSPayments = null;\n isRefundStatusView: boolean;\n isRedirectFromCaseTransactionPage: string;\n isCallFromRefundList: boolean;\n isFromRefundStatusPage: boolean;\n iscancelClicked : boolean;\n isFromPaymentDetailPage: boolean;\n pbaPayOrderRef: IPayment;\n // isFromServiceRequestPage: boolean;\n\n constructor(private paymentLibService: PaymentLibService,\n private cd: ChangeDetectorRef) { }\n ngAfterContentChecked(): void {\n this.cd.detectChanges();\n } \n\n\n ngOnInit() {\n this.paymentLibService.setApiRootUrl(this.API_ROOT);\n this.paymentLibService.setBulkScanApiRootUrl(this.BULKSCAN_API_ROOT);\n this.paymentLibService.setRefundndsApiRootUrl(this.REFUNDS_API_ROOT);\n if (this.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}\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 if (!err.error) {\n errorMessage = 'Not found';\n } else {\n errorMessage = err.error;\n }\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 errorMessage = JSON.parse(err.error).error;\n }\n \n } else {\n if (err.error.message !== undefined) {\n errorMessage = `${err.error.message}`;\n } else {\n errorMessage = `${err.error}`;\n }\n \n }\n }\n return _throw(errorMessage);\n }\n\n\n getServerErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","import { Injectable } from '@angular/core';\n\nconst noop = (): any => undefined;\n\nexport abstract class Logger {\n\n info: any;\n warn: any;\n error: any;\n}\n\n@Injectable({\n providedIn: 'root'\n})\nexport class LoggerService implements Logger {\n\n info: any;\n warn: any;\n error: any;\n\n invokeConsoleMethod(type: string, args?: any): void {}\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\n\nimport { Observable } from 'rxjs/internal/Observable';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { IPayments } from '../../interfaces/IPayments';\nimport { catchError } from 'rxjs/operators';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PaymentListService {\n payments: IPayments;\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n\n getPaymentByCcdCaseNumber(ccdCaseNumber: string, paymentMethod: string): Observable<IPayments> {\n this.logger.info('Payment-list-service getPaymentByCcdCaseNumber for: ', ccdCaseNumber);\n\n return this.http.get<IPayments>(`${this.paymentLibService.API_ROOT}/cases/${ccdCaseNumber}/payments`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import {Component, OnInit} from '@angular/core';\n\nimport {PaymentListService} from '../../services/payment-list/payment-list.service';\nimport {IPayments} from '../../interfaces/IPayments';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport {IStatusHistory} from '../../interfaces/IStatusHistory';\n\n@Component({\n selector: 'ccpay-payment-list',\n templateUrl: './payment-list.component.html',\n styleUrls: ['./payment-list.component.css']\n})\nexport class PaymentListComponent implements OnInit {\n payments: IPayments;\n errorMessage: string;\n code: string;\n\n constructor(private paymentListService: PaymentListService,\n private paymentLibComponent: PaymentLibComponent) {\n }\n\n ngOnInit() {\n this.paymentListService.getPaymentByCcdCaseNumber(this.paymentLibComponent.CCD_CASE_NUMBER, this.paymentLibComponent.PAYMENT_METHOD)\n .subscribe(\n payments => this.payments = payments,\n (error: any) => this.errorMessage = <any>error\n );\n }\n\n loadPaymentViewComponent(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.paymentLibComponent.paymentMethod = paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n}\n","/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Meta } from '@angular/platform-browser';\nimport { Observable } from 'rxjs';\n\n@Injectable()\nexport class WebComponentHttpClient {\n constructor(\n private http: HttpClient,\n private meta: Meta\n ) { }\n\n post(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.post(url, body, opts);\n }\n\n put(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.put(url, body, opts);\n }\n\n get(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.get(url, opts);\n }\n\n delete(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.delete(url, opts);\n }\n \n patch(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.patch(url, body, opts);\n }\n\n addHeaders(options: any): any {\n const csrfToken = this.meta.getTag('name=csrf-token');\n const headers = {};\n \n if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n if (csrfToken === null) {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith(' XSRF-TOKEN')).split('=')[1];\n } else {\n headers['CSRF-Token'] = csrfToken.content;\n }\n options.headers = new HttpHeaders(headers);\n options.responseType = 'text';\n return options;\n }\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Observable } from 'rxjs/internal/Observable';\n\nimport {IPayment} from '../../interfaces/IPayment';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { catchError } from 'rxjs/operators';\nimport { LoggerService } from '../shared/logger/logger.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { PayhubAntennaRequest } from '../../interfaces/PayhubAntennaRequest';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { Meta } from '@angular/platform-browser';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { IAllocationPaymentsRequest } from '../../interfaces/IAllocationPaymentsRequest';\nimport {IOrderReferenceFee} from '../../interfaces/IOrderReferenceFee';\nimport { BehaviorSubject } from 'rxjs';\nimport { IserviceRequestPbaPayment } from '../../interfaces/IserviceRequestPbaPayment';\nimport { IserviceRequestCardPayment } from '../../interfaces/IserviceRequestCardPayment';\nimport { 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\n getPBAaccountDetails(): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/pba-accounts`;\n return this.http.get(url, { withCredentials: true }).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postWays2PayCardPayment(serviceRef: string, body: IserviceRequestCardPayment): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/service-request/${serviceRef}/card-payments`;\n return this.https.post(url, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n \n postPBAaccountPayment(serviceRef: string, body: IserviceRequestPbaPayment): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/service-request/${serviceRef}/pba-payments`;\n return this.https.post(url, body);\n }\n 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 { 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 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","import { Component, OnInit, Input } from '@angular/core';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\nimport { ChangeDetectorRef } from '@angular/core';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-payment-view',\n templateUrl: './payment-view.component.html',\n styleUrls: ['./payment-view.component.css']\n})\nexport class PaymentViewComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() isTakePayment: boolean;\n @Input() caseType: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() isOldPcipalOff: boolean;\n @Input() orderRef: boolean;\n @Input() orderStatus: boolean;\n @Input() orderTotalPayments: boolean;\n @Input() payment: IPayment;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: 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\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 console.log(this.paymentGroup.payments[0] + '1');\n },\n (error: any) => this.errorMessage = error\n );\n\n }\n\n get isCardPayment(): boolean {\n return this.paymentGroup.payments[0].method === 'card';\n }\n\n get isTelephonyPayment(): boolean {\n return this.paymentGroup.payments[0].channel === 'telephony';\n }\n\n public goToPaymentList(): void {\n this.paymentLibComponent.viewName = 'payment-list';\n }\n\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\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\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 }\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 // this.isAddFeeBtnEnabled = true;\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}","import { Injectable } from '@angular/core';\nimport {HttpClient, HttpHeaders} from '@angular/common/http';\nimport { Meta } from '@angular/platform-browser';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {catchError} from 'rxjs/operators';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { IPatchRefundAction } from '../../interfaces/IPatchRefundAction';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { IssueRefundRequest } from '../../interfaces/IssueRefundRequest';\nimport { IResubmitRefundRequest } from '../../interfaces/IResubmitRefundRequest';\nimport { IRefundStatusHistory } from '../../interfaces/IRefundStatusHistory';\n@Injectable({\n providedIn: 'root'\n})\nexport class RefundsService {\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService,\n private meta: Meta\n ) { }\n\n getRefundReasons(): Observable<IRefundReasons[]> {\n return this.http.get<IRefundReasons[]>(`${this.paymentLibService.REFUNDS_API_ROOT}/reasons`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getRefundRejectReasons(): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/rejection-reasons`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getRefundActions(refundReference: string): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/${refundReference}/actions`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\npatchRefundActions(body:IPatchRefundAction, refundReference: string, reviewerAction: string): Observable<any> {\n // const opts = this.addHeaders({});\n return this.https.patch(`${this.paymentLibService.REFUNDS_API_ROOT}/${refundReference}/action/${reviewerAction}`, body)\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundList(refundstatus?: string, selfexclusive?:boolean): Observable<IRefundList[]> {\n return this.http.get<IRefundList[]>(`${this.paymentLibService.REFUNDS_API_ROOT}?status=${refundstatus}&excludeCurrentUser=${selfexclusive}`, \n {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundStatusHistory(reference?: string) {\n return this.http.get<IRefundStatusHistory>(`${this.paymentLibService.REFUNDS_API_ROOT}/${reference}/status-history`, \n {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundStatusList(ccdCaseNumber:string): Observable<IRefundList[]> {\n return this.http.get<IRefundList[]>(`${this.paymentLibService.REFUNDS_API_ROOT}?ccdCaseNumber=${ccdCaseNumber}`, {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetUserDetails(): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/get-user-details`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n \npostIssueRefund(body: IssueRefundRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.REFUNDS_API_ROOT}/refund`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\npatchResubmitRefund(body: IResubmitRefundRequest, refund_reference: string): Observable<any> {\n // const opts = this.addHeaders({});\n return this.https.patch(`${this.paymentLibService.REFUNDS_API_ROOT}/resubmit/${refund_reference}`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\naddHeaders(options: any): any {\n const csrfToken = this.meta.getTag('name=csrf-token');\n const headers = {};\n if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n if (csrfToken.content === null) {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith(' XSRF-TOKEN')).split('=')[1];\n } else {\n headers['CSRF-Token'] = csrfToken.content;\n }\n options.headers = new HttpHeaders(headers);\n options.responseType = 'text';\n return options;\n}\n}\n","import {Component, OnInit, Input} from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport {RefundsService} from '../../services/refunds/refunds.service';\nimport { IRefundAction } from '../../interfaces/IRefundAction';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { IRefundRejectReason } from '../../interfaces/IRefundRejectReason';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\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\n isConfirmButtondisabled: boolean = true;\n constructor(private RefundsService: RefundsService,\n private formBuilder: FormBuilder,\n private OrderslistService: OrderslistService,\n private paymentLibComponent: PaymentLibComponent,) {\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 \n }\n checkRefundActions(code: string) {\n\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 } else {\n this.paymentLibComponent.viewName = 'refund-list';\n }\n }\n redirecttoRefundListPage() {\n if(this.paymentLibComponent.API_ROOT === 'api/payment-history') {\n window.location.href='/refund-list?takePayment=false&refundlist=true';\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","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 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.isApproveTableVisible = true;\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.dropdownvalue !== 'caseworker-probate-authorize') {\n // this.isAuthorized = false;\n // } else {\n // this.isAuthorized = true;\n // }\n\n if(this.isAuthorized) {\n this.refundService.getRefundList(this.approvalStatus,false).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 // selectchange(args){ \n // this.dropdownvalue = args.target.value;\n // if(args.target.value === 'caseworker-probate-authorize') {\n // this.isApproveTableVisible = true;\n // } else {\n // this.isApproveTableVisible = false;\n // }\n // this.ngOnInit();\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","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';\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 takePayment: boolean;\n servicerequest: string;\n ccdCaseNumber: string;\n excReference: string;\n paymentGroups: any[] = [];\n payments: IPayment[] = [];\n nonPayments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n fees: IFee[] = [];\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalNonOffPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n paymentRef: string;\n isTurnOff: boolean;\n isNewPcipalOff: boolean;\n isRefundRemission: boolean = true;\n isOldPcipalOff: boolean;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = true;\n isExceptionRecord: boolean = false;\n isUnprocessedRecordSelected: boolean = false;\n exceptionRecordReference: string;\n isAnyFeeGroupAvilable: boolean = true;\n isHistoricGroupAvailable: boolean = false;\n isBulkScanEnable;\n isRemissionsMatch: boolean;\n viewStatus = 'main';\n isRemoveBtnDisabled: boolean = false;\n feeId: IFee;\n clAmountDue: number = 0;\n unprocessedRecordCount: number;\n isFeeRecordsExist: boolean = false;\n isGrpOutstandingAmtPositive: boolean = false;\n totalRefundAmount: Number;\n caseType: String;\n 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.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 this.servicerequest = this.paymentLibComponent.SERVICEREQUEST;\n if (this.paymentLibComponent.SERVICEREQUEST === 'true') {\n this.serviceRequestValue = 'true';\n } else {\n this.serviceRequestValue = 'false';\n }\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isNewPcipalOff = this.paymentLibComponent.ISNEWPCIPALOFF;\n this.isOldPcipalOff = this.paymentLibComponent.ISOLDPCIPALOFF;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n if (!this.isTurnOff) {\n\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 // this.viewStatus = 'order-full-view';\n }\n\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).data.content[0];\n\n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.isCPODown = true;\n }\n );\n\n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n } 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).data.content[0];\n\n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.setDefaults();\n this.isCPODown = true;\n }\n );\n\n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n }\n\n if( this.paymentGroups !== undefined) {\n this.checkForExceptionRecord();\n }\n \n if(this.OrderslistService.getisFromServiceRequestPages() !== null) {\n this.OrderslistService.getisFromServiceRequestPages().subscribe((data) => this.isFromServiceRequestPage = data);\n }\n \n }\n\n setDefaults(): void {\n this.totalPayments = 0.00;\n this.totalRemissions = 0.00;\n this.totalNonOffPayments = 0.00;\n this.totalFees = 0.00;\n }\n\n getAllocationStatus(payments: any) {\n\n let paymentAllocation = payments.payment_allocation,\n isAllocationStatusExist = paymentAllocation.length > 0;\n return isAllocationStatusExist ? paymentAllocation[0].allocation_status : '-';\n //return \"-\";\n\n }\n\n checkForExceptionRecord(): void {\n \n if (this.paymentGroups.length === 0 && (this.selectedOption.toLocaleLowerCase() === 'ccdorexception' || this.selectedOption.toLocaleLowerCase() === 'rc')) {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n recordData => {\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length > 0 && recordData['data'].ccd_reference > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length > 0 && recordData['data'].ccd_reference === undefined) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n }\n\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length === undefined && recordData['data'].ccd_reference > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n });\n }\n\n if (this.paymentGroups.length === 0 && this.selectedOption.toLocaleLowerCase() === 'dcn') {\n if (this.paymentLibComponent.CCD_CASE_NUMBER.length > 0 && this.paymentLibComponent.EXC_REFERENCE.length > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n } else if (this.paymentLibComponent.CCD_CASE_NUMBER.length === 0 && this.paymentLibComponent.EXC_REFERENCE.length > 0) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n } else {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n }\n if (this.paymentGroups.length > 0)\n this.paymentGroups.forEach(paymentGroup => {\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.case_reference !== undefined && payment.ccd_case_number === undefined) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n } else {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n\n });\n }\n });\n }\n\n calculateOrderFeesAmounts(): void {\n let feesTotal = 0.00;\n this.paymentGroups.forEach(paymentGroup => {\n this.resetOrderVariables();\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.orderFeesTotal = this.orderFeesTotal + fee.calculated_amount\n }\n )\n }\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n this.orderRemissionTotal = this.orderRemissionTotal + remission.hwf_amount;\n });\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n this.orderTotalPayments = this.orderTotalPayments + payment.amount;\n }\n });\n }\n\n this.orderPendingPayments = (this.orderFeesTotal - this.orderRemissionTotal) - this.orderTotalPayments;\n if (this.orderPendingPayments <= 0.00) {\n this.orderStatus = 'Paid';\n this.orderAddBtnEnable = false;\n } else if (this.orderFeesTotal > 0 && (this.orderTotalPayments > 0 || this.orderRemissionTotal > 0) && (this.orderTotalPayments < this.orderPendingPayments)) {\n this.orderStatus = 'Partially paid'\n this.orderAddBtnEnable = true;\n } else {\n this.orderStatus = 'Not paid'\n this.orderAddBtnEnable = true;\n }\n\n //this.orderLevelFees.push({orderRefId:paymentGroup['payment_group_reference'],orderTotalFees: this.orderFeesTotal,orderStatus: this.orderStatus,orderParty:'Santosh', orderCCDEvent:'Case Creation',orderCreated: new Date(), orderAddBtnEnable: this.orderAddBtnEnable}); this.cpoDetails['createdTimestamp']\n if (this.cpoDetails !== null) {\n this.orderLevelFees.push({ orderRefId: paymentGroup['payment_group_reference'], orderTotalFees: this.orderFeesTotal, orderStatus: this.orderStatus, orderParty: this.cpoDetails['responsibleParty'], orderCCDEvent: this.cpoDetails['action'], orderCreated: paymentGroup['date_created'], orderAddBtnEnable: this.orderAddBtnEnable });\n\n } else {\n this.orderLevelFees.push({ orderRefId: paymentGroup['payment_group_reference'], orderTotalFees: this.orderFeesTotal, orderStatus: this.orderStatus, orderParty: '', orderCCDEvent: '', orderCreated: paymentGroup['date_created'], orderAddBtnEnable: this.orderAddBtnEnable });\n }\n\n if (this.orderStatus !== 'Paid') {\n this.OrderslistService.setOrdersList(this.orderLevelFees);\n }\n });\n };\n\n resetOrderVariables(): void {\n this.orderFeesTotal = 0.00;\n this.orderTotalPayments = 0.00;\n this.orderRemissionTotal = 0.00;\n this.orderPendingPayments = 0.00;\n this.isAddFeeBtnEnabled = true;\n\n };\n\n goToOrderViewDetailSection(orderReferenceObj: any) {\n if (this.isFromServiceRequestPage) {\n this.OrderslistService.setOrderRefId(orderReferenceObj);\n this.orderRef = orderReferenceObj;\n } else {\n this.OrderslistService.setOrderRefId(orderReferenceObj.orderRefId);\n this.orderRef = orderReferenceObj.orderRefId;\n }\n\n this.orderFeesTotal = 0.00;\n this.orderRemissionTotal = 0.00;\n this.orderTotalPayments = 0.00;\n this.orderPendingPayments = 0.00;\n\n this.orderDetail = this.paymentGroups.filter(x => x.payment_group_reference === this.orderRef);\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.fees) {\n orderDetail.fees.forEach(fee => {\n this.orderFeesTotal = this.orderFeesTotal + fee.calculated_amount;\n });\n }\n if (orderDetail.remissions) {\n orderDetail.remissions.forEach(remission => {\n this.orderRemissionTotal = this.orderRemissionTotal + remission.hwf_amount;\n });\n if (orderDetail.payments) {\n this.payment = orderDetail.payments[0];\n orderDetail.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n this.orderTotalPayments = this.orderTotalPayments + payment.amount;\n }\n });\n }\n }\n });\n this.orderPendingPayments = (this.orderFeesTotal - this.orderRemissionTotal) - this.orderTotalPayments;\n // this.orderRef = orderReferenceObj.orderRefId;\n if (this.orderPendingPayments <= 0.00) {\n this.orderStatus = 'Paid';\n } else if (this.orderFeesTotal > 0 && (this.orderTotalPayments > 0 || this.orderRemissionTotal > 0) && (this.orderTotalPayments < this.orderPendingPayments)) {\n this.orderStatus = 'Partially paid'\n } else {\n this.orderStatus = 'Not paid'\n }\n\n if (this.cpoDetails !== null) {\n this.orderParty = this.cpoDetails['responsibleParty'];\n this.orderCreated = this.cpoDetails['createdTimestamp'];\n this.orderCCDEvent = this.cpoDetails['action'];\n } else {\n this.orderParty = '';\n this.orderCCDEvent = '';\n this.orderCreated = orderReferenceObj.orderCreated;\n }\n this.viewStatus = 'order-full-view';\n }\n\n redirectToOrderFeeSearchPage(event: any, orderef: any) {\n if(orderef.orderAddBtnEnable) {\n event.preventDefault();\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = orderef.orderRefId;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n }\n\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n this.isFromServiceRequestPage = false;\n this.viewStatus = 'main'\n this.paymentLibComponent.viewName = 'case-transactions';\n }\n\n\n calculateAmounts(): void {\n let feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00,\n nonOffLinePayment = 0.00;\n\n this.paymentGroups.forEach(paymentGroup => {\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n if (fee.date_created) {\n let a = fee.amount_due === undefined;\n let b = fee.amount_due <= 0;\n this.clAmountDue = a ? this.clAmountDue + fee.net_amount : b ? this.clAmountDue + 0 : this.clAmountDue + fee.amount_due;\n }\n fee['payment_group_reference'] = paymentGroup['payment_group_reference'];\n this.fees.push(fee);\n } else {\n feesTotal = feesTotal + fee.calculated_amount;\n this.fees.push(fee);\n }\n\n });\n }\n if (this.isTurnOff) {\n this.totalFees = feesTotal;\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n let allocationLen = payment.payment_allocation;\n\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n if (allocationLen.length === 0 || allocationLen.length > 0 && allocationLen[0].allocation_status === 'Allocated') {\n nonOffLinePayment = nonOffLinePayment + payment.amount;\n }\n if (allocationLen.length > 0) {\n this.nonPayments.push(payment);\n }\n }\n if (allocationLen.length === 0) {\n this.payments.push(payment);\n }\n payment.paymentGroupReference = paymentGroup.payment_group_reference\n this.allPayments.push(payment);\n } else {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n this.payments.push(payment);\n }\n payment.paymentGroupReference = paymentGroup.payment_group_reference\n this.allPayments.push(payment);\n }\n });\n }\n this.totalPayments = paymentsTotal;\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n this.totalNonOffPayments = nonOffLinePayment;\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remisison => {\n remissionsTotal = remissionsTotal + remisison.hwf_amount;\n this.remissions.push(remisison);\n });\n }\n this.totalRemissions = remissionsTotal;\n });\n\n }\n\n calculateRefundAmount() {\n if (!this.isTurnOff) {\n let isNewPaymentGroup = false;\n\n this.paymentGroups.forEach((paymentGroup, index) => {\n let grpOutstandingAmount = 0.00,\n feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00,\n fees = [];\n\n if (paymentGroup.fees) {\n // this.isFeeRecordsExist = true;\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n\n this.isRemissionsMatch = false;\n paymentGroup.remissions.forEach(rem => {\n if (rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n // if(!fees.find(k => k.code=fee.code))\n // {\n fees.push(fee);\n //}\n }\n });\n\n if (!this.isRemissionsMatch) {\n fees.push(fee);\n }\n\n if (fee.date_created) {\n isNewPaymentGroup = true;\n } else {\n this.isHistoricGroupAvailable = true;\n this.paymentGroups[index]['old'] = true;\n }\n });\n this.paymentGroups[index].fees = fees;\n }\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n }\n grpOutstandingAmount = (feesTotal - remissionsTotal) - paymentsTotal;\n if (grpOutstandingAmount > 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = true;\n this.isFeeRecordsExist = true;\n this.paymentRef = paymentGroup.payment_group_reference;\n }\n if (paymentGroup.fees && paymentGroup.fees.length > 0 && grpOutstandingAmount <= 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = false;\n }\n });\n if ((!isNewPaymentGroup && this.isHistoricGroupAvailable) || (!isNewPaymentGroup && !this.isHistoricGroupAvailable)) {\n this.isAnyFeeGroupAvilable = false;\n }\n } else {\n let totalRefundAmount = 0,\n isFeeAmountZero = false;\n this.paymentGroups.forEach(paymentGroup => {\n let grpOutstandingAmount = 0.00,\n feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00;\n if (paymentGroup.fees) {\n this.isFeeRecordsExist = true;\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n if (fee.calculated_amount === 0) {\n isFeeAmountZero = true\n }\n });\n\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n }\n grpOutstandingAmount = (feesTotal - remissionsTotal) - paymentsTotal;\n if (grpOutstandingAmount < 0) {\n if (totalRefundAmount === 0) {\n totalRefundAmount = grpOutstandingAmount;\n } else {\n totalRefundAmount = (totalRefundAmount + grpOutstandingAmount);\n }\n }\n else if (grpOutstandingAmount > 0 || (grpOutstandingAmount === 0 && isFeeAmountZero)) {\n this.isGrpOutstandingAmtPositive = true;\n }\n });\n return totalRefundAmount * -1;\n }\n }\n\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);;\n }\n\n redirectToFeeSearchPage(event: any) {\n event.preventDefault();\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n url += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n url += `&caseType=${this.caseType}`\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}${url}`);\n }\n\n addRemission(fee: IFee) {\n if(this.chkForAddRemission(fee.code)) {\n this.feeId = fee;\n this.viewStatus = 'addremission';\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n this.viewStatus = 'addrefundforremission';\n \n this.payment = payment;\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.payment.reference));\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n\n redirectToremissionPage(event: any) {\n event.preventDefault();\n this.paymentLibComponent.viewName = 'remission'\n }\n\n redirectToReportsPage(event: any) {\n event.preventDefault();\n this.router.navigateByUrl(`/reports?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}`);\n }\n\n loadFeeSummaryPage(paymentGroup: IPaymentGroup) {\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.payment_group_reference;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n\n goToPaymentViewComponent(paymentGroup: any) {\n this.paymentLibComponent.paymentMethod = paymentGroup.paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentGroup.paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n\n goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent({ paymentGroupReference, paymentReference, paymentMethod });\n }\n\n selectedUnprocessedFeeEvent(unprocessedRecordId: string) {\n if (unprocessedRecordId) {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = false;\n }\n this.isUnprocessedRecordSelected = true;\n } else {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = true;\n }\n this.isUnprocessedRecordSelected = false;\n }\n }\n\n getUnprocessedFeeCount(unProcessedRecordCount: number) {\n this.unprocessedRecordCount = unProcessedRecordCount;\n }\n\n calculateAmountDue(fee: IFee) {\n\n if (fee.date_created) {\n return fee.amount_due !== undefined ? fee.amount_due : fee.net_amount;\n } else {\n return \"0.00\";\n }\n }\n\n confirmRemoveFee(fee: IFee) {\n this.isRemoveBtnDisabled = false;\n this.feeId = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n cancelRemoval() {\n this.viewStatus = 'main';\n }\n\n removeFee(fee: any) {\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n window.location.reload();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n\n issueRefund(payment: IPayment) {\n if (payment !== null && payment !== undefined) {\n if(this.chkIssueRefundBtnEnable(payment)) {\n this.viewStatus = 'issuerefund';\n this.payment = payment;\n this.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.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 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 loadPBAAccountPage(orderRef: IPayment) {\n this.paymentLibComponent.pbaPayOrderRef = orderRef;\n this.paymentLibComponent.viewName = 'pba-payment';\n }\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 @Input() isOldPcipalOff: string;\n @Input() isNewPcipalOff: string;\n\n\n bsPaymentDcnNumber: string;\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n viewStatus = 'main';\n currentFee: IFee;\n totalFee: number;\n payhubHtml: SafeHtml;\n service: string = \"\";\n platForm: string = \"\";\n upPaymentErrorMessage: string;\n selectedOption:string;\n isBackButtonEnable: boolean = true;\n outStandingAmount: number;\n isFeeAmountZero: boolean = false;;\n totalAfterRemission: number = 0;\n isConfirmationBtnDisabled: boolean = false;\n isRemoveBtnDisabled: boolean = false;\n isPaymentExist: boolean = false;\n isRemissionsExist: Boolean = false;\n isRemissionsMatch = false;\n isStrategicFixEnable: boolean;\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private location: Location,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private OrderslistService: OrderslistService\n ) {}\n\n ngOnInit() {\n this.viewStatus = 'main';\n this.caseType = this.paymentLibComponent.CASETYPE;\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.setCaseType(this.paymentLibComponent.CASETYPE);\n if ((!this.isOldPcipalOff && this.isNewPcipalOff)) {\n this.platForm = '8x8';\n } else if ((this.isOldPcipalOff && !this.isNewPcipalOff)) {\n this.platForm = 'Antenna';\n } else if ((this.isOldPcipalOff && this.isNewPcipalOff)){\n this.platForm = '8x8';\n }\n\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n if (this.bsPaymentDcnNumber) {\n this.getUnassignedPaymentlist();\n }\n this.getPaymentGroup();\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.paymentLibComponent.DCN_NUMBER).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error';\n }\n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error'; \n } \n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n }\n\n }\n\n getRemissionByFeeCode(feeCode: string): IRemission {\n if (this.paymentGroup && this.paymentGroup.remissions && this.paymentGroup.remissions.length > 0) {\n for (const remission of this.paymentGroup.remissions) {\n if (remission.fee_code === feeCode) {\n return remission;\n }\n }\n }\n return null;\n }\n\n addRemission(fee: IFee) {\n this.currentFee = fee;\n this.viewStatus = 'add_remission';\n }\n\n getPaymentGroup() {\n let fees = [];\n this.paymentViewService.getPaymentGroupDetails(this.paymentGroupRef).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n this.isPaymentExist = paymentGroup.payments ? paymentGroup.payments.length > 0 : false;\n this.isRemissionsExist = paymentGroup.remissions ? paymentGroup.remissions.length > 0 : false;\n\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.totalAfterRemission = this.totalAfterRemission + fee.net_amount;\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true;\n }\n this.isRemissionsMatch = false;\n paymentGroup.remissions.forEach(rem => {\n if(rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n \n if(!this.isRemissionsMatch) {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees;\n }\n\n this.outStandingAmount = this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n\n confirmRemoveFee(fee: IFee){\n this.isRemoveBtnDisabled = false;\n this.currentFee = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n removeFee(fee: any){\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n if (this.paymentGroup.fees && this.paymentGroup.fees.length > 1){\n this.totalAfterRemission = 0;\n this.getPaymentGroup();\n this.viewStatus = 'main';\n return;\n }\n this.loadCaseTransactionPage();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n loadCaseTransactionPage() {\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n\n let partUrl = `selectedOption=${this.paymentLibComponent.SELECTED_OPTION}`;\n partUrl +=this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl +=this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl +=this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n\n let url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=true&${partUrl}`;\n this.router.navigateByUrl(url);\n }\n cancelRemission() {\n this.viewStatus = 'main';\n }\n redirectToFeeSearchPage(event: any, page?: string) {\n event.preventDefault();\n let partUrl =this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl +=this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl +=this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n\n if(this.viewStatus === 'feeRemovalConfirmation' || this.viewStatus === 'add_remission') {\n this.viewStatus = 'main';\n return;\n }\n let url = `/fee-search?ccdCaseNumber=${this.ccdCaseNumber}&selectedOption=${this.paymentLibComponent.SELECTED_OPTION}&paymentGroupRef=${this.paymentGroupRef}${partUrl}`;\n this.router.navigateByUrl(url);\n }\n takePayment() {\n this.isConfirmationBtnDisabled = true;\n const requestBody = new PaymentToPayhubRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType),\n antennaReqBody = new PayhubAntennaRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType);\n\n if(this.platForm === '8x8') {\n this.paymentViewService.postPaymentToPayHub(requestBody, this.paymentGroupRef).subscribe(\n response => {\n this.location.go(`payment-history?view=fee-summary`);\n this.payhubHtml = response;\n this.viewStatus = 'payhub_view';\n this.isBackButtonEnable=false;\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.router.navigateByUrl('/pci-pal-failure');\n }\n );\n } else if(this.platForm === 'Antenna') {\n\n this.paymentViewService.postPaymentAntennaToPayHub(antennaReqBody, this.paymentGroupRef).subscribe(\n response => {\n this.isBackButtonEnable=false;\n window.location.href = '/makePaymentByTelephoneyProvider';\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.router.navigateByUrl('/pci-pal-failure');\n }\n );\n }\n\n }\n\n goToAllocatePage(outStandingAmount: number, isFeeAmountZero: Boolean) {\n if (outStandingAmount > 0 || (outStandingAmount === 0 && isFeeAmountZero)) {\n this.paymentLibComponent.paymentGroupReference = this.paymentGroupRef;\n this.paymentLibComponent.viewName = 'allocate-payments';\n } else {\n this.loadCaseTransactionPage();\n }\n }\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\n\n\n\n@Component({\n selector: 'ccpay-error-banner',\n templateUrl: './error-banner.component.html',\n styleUrls: ['./error-banner.component.scss']\n})\n\nexport class ErrorBannerComponent implements OnInit {\n @Input('errorMessage') errorMessage;\n\n constructor(\n ) {}\n\n ngOnInit() {\n\n }\n}\n","\nexport class UnidentifiedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n unidentified_reason: string;\n\n constructor(payment_group_reference: string, payment_reference : string, unidentified_reason: any) {\n this.payment_allocation_status = {\n description: '',\n name: \"Unidentified\"\n };\n this.payment_group_reference = payment_group_reference ;\n this.payment_reference= payment_reference;\n this.unidentified_reason= unidentified_reason;\n\n }\n\n\n\n}\n","import { IBSPayments } from \"./IBSPayments\";\n\nexport class AllocatePaymentRequest {\n amount: Number;\n banked_date: String;\n ccd_case_number: String;\n exception_record: string;\n currency: String;\n document_control_number: String;\n external_provider: String;\n giro_slip_no: String;\n payer_name: String;\n payment_channel: Object;\n payment_status: Object;\n payment_method: String;\n case_type: String;\n payment_allocation_dto?: {\n allocation_reason: String,\n allocation_status: String,\n explanation: String,\n payment_allocation_status: Object,\n payment_group_reference: String,\n payment_reference: String,\n reason: String,\n receiving_office: String,\n unidentified_reason: String,\n user_id: String,\n user_name: String,\n case_type: String\n }\n\n constructor(ccd_case_number : string, unAllocatedPayment: IBSPayments, caseType: string, exceptionRecord: string, allocatedRequest?: any) {\n this.amount = unAllocatedPayment.amount;\n this.banked_date = unAllocatedPayment.date_banked;\n this.ccd_case_number = ccd_case_number;\n this.exception_record = exceptionRecord;\n this.currency= unAllocatedPayment.currency;\n this.document_control_number = unAllocatedPayment.dcn_reference;\n this.external_provider = 'exela';\n this.giro_slip_no = unAllocatedPayment.bgc_reference;\n this.payer_name = unAllocatedPayment.payer_name;\n this.payment_channel = {\n description: '',\n name: 'bulk scan'\n };\n this.payment_status ={\n description: 'bulk scan payment completed',\n name: 'success'\n }\n this.payment_method = unAllocatedPayment.payment_method;\n this.case_type= caseType;\n if(allocatedRequest) {\n this.payment_allocation_dto = allocatedRequest;\n }\n\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\n\n@Component({\n selector: 'app-mark-unidentified-payment',\n templateUrl: './mark-unidentified-payment.component.html',\n styleUrls: ['./mark-unidentified-payment.component.scss']\n})\nexport class MarkUnidentifiedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnidentifiedForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n isInvesticationDetailEmpty: boolean = false;\n investicationDetailHasError: boolean = false;\n investicationDetailMinHasError: boolean = false;\n investicationDetailMaxHasError: boolean = false;\n errorMessage = this.getErrorMessage(false);\n unassignedRecord:IBSPayments;\n siteID: string = null;\n investigationComment: string;\n isConfirmButtondisabled:Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n isStrategicFixEnable: boolean = true;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.markPaymentUnidentifiedForm = this.formBuilder.group({\n investicationDetail: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ]))\n });\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.getErrorMessage(false);\n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n saveAndContinue() {\n this.resetForm([false, false, false, false]);\n const investicationField = this.markPaymentUnidentifiedForm.controls.investicationDetail;\n const formerror = investicationField.errors;\n if (this.markPaymentUnidentifiedForm.dirty && this.markPaymentUnidentifiedForm.valid) {\n this.investigationComment = this.markPaymentUnidentifiedForm.controls.investicationDetail.value;\n this.viewStatus = 'unidentifiedContinueConfirm';\n }else {\n if(investicationField.value == '' ) {\n this.resetForm([true, false, false, false]);\n }\n if(investicationField.value != '' && investicationField.invalid ) {\n this.resetForm([false, true, false, false]);\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false, false, true, false]);\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, true]);\n }\n }\n }\n resetForm(val) {\n this.isInvesticationDetailEmpty = val[0];\n this.investicationDetailHasError = val[1];\n this.investicationDetailMinHasError = val[2];\n this.investicationDetailMaxHasError = val[3];\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const reason = this.markPaymentUnidentifiedForm.get('investicationDetail').value;\n\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Unidentified',\n payment_allocation_status: {\n description: '',\n name: 'Unidentified'\n },\n unidentified_reason: reason,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnidentifiedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, reason);\n if (response2.success) {\n this.paymentViewService.postBSUnidentifiedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n cancelMarkUnidentifiedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.markPaymentUnidentifiedForm.get('investicationDetail').value!==\"\"){\n this.viewStatus = 'unidentifiedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.viewStatus = 'mainForm';\n }\n }\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","\nexport class UnsolicitedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n receiving_office: string;\n receiving_email_address: string;\n sending_email_address: string;\n unidentified_reason: string;\n constructor(payment_group_reference: string, payment_reference : string, reason: string,responsible_office: string, responsible_person:string,email_id: string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Transferred\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.unidentified_reason= reason;\n this.receiving_office= responsible_office;\n this.receiving_email_address= email_id;\n this.sending_email_address= responsible_person;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\n\n\n@Component({\n selector: 'app-mark-unsolicited-payment',\n templateUrl: './mark-unsolicited-payment.component.html',\n styleUrls: ['./mark-unsolicited-payment.component.scss']\n})\nexport class MarkUnsolicitedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnsolicitedForm: FormGroup;\n viewStatus: string;\n reasonHasError: boolean = false;\n isReasonEmpty: boolean = false;\n reasonMinHasError: boolean = false;\n reasonMaxHasError: boolean = false;\n responsibleOfficeHasError: boolean = false;\n isResponsibleOfficeEmpty: boolean = false;\n errorMessage = this.getErrorMessage(false);\n ccdCaseNumber: string;\n bspaymentdcn: string;\n unassignedRecord: IBSPayments;\n siteID: string = null;\n reason: string;\n responsiblePerson: string;\n responsibleOffice: string;\n emailId: string;\n isConfirmButtondisabled: Boolean = false;\n isContinueButtondisabled: Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n selectedSiteId: string;\n selectedSiteName: string;\n isStrategicFixEnable: boolean = true;\n siteIDList;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.resetForm([false,false,false,false,false,false], 'all');\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.paymentViewService.getSiteID().subscribe(\n siteids => {\n this.isContinueButtondisabled = false;\n this.errorMessage = this.getErrorMessage(false);\n this.siteIDList = JSON.parse(siteids);\n },\n err => {\n window.scrollTo(0, 0);\n this.isContinueButtondisabled = true;\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n \n this.markPaymentUnsolicitedForm = this.formBuilder.group({\n reason: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n responsibleOffice: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s\\\\n,\\\\.-:]*)$')\n ])),\n responsiblePerson: new FormControl(''),\n emailId: new FormControl('')\n });\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const controls = this.markPaymentUnsolicitedForm.controls;\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Transferred',\n payment_allocation_status: {\n description: '',\n name: 'Transferred'\n },\n unidentified_reason: controls.reason.value,\n receiving_office: this.selectedSiteId,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n // controls.responsibleOffice.setValue('P219');\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const response1 = JSON.parse(res1),\n requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnsolicitedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, controls.reason.value, this.selectedSiteId, controls.responsiblePerson.value, controls.emailId.value);\n if (response2.success) {\n this.paymentViewService.postBSUnsolicitedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n saveAndContinue() {\n this.resetForm([false,false,false,false,false,false], 'all');\n const formerror = this.markPaymentUnsolicitedForm.controls.reason.errors;\n const reasonField = this.markPaymentUnsolicitedForm.controls.reason;\n //const officeIdField = this.selectedSiteId;\n const officeIdField = this.markPaymentUnsolicitedForm.controls.responsibleOffice;\n if (this.markPaymentUnsolicitedForm.dirty && this.markPaymentUnsolicitedForm.valid) {\n const controls = this.markPaymentUnsolicitedForm.controls;\n this.emailId = controls.emailId.value;\n this.responsibleOffice = officeIdField.value;\n this.responsiblePerson = controls.responsiblePerson.value;\n this.reason = controls.reason.value;\n this.viewStatus = 'unsolicitedContinueConfirm';\n }else {\n if( reasonField.value == '' ) {\n this.resetForm([true,false,false,false,false,false], 'reason');\n }\n if(reasonField.value != '' && this.markPaymentUnsolicitedForm.controls.reason.invalid ) {\n this.resetForm([false,true,false,false,false,false], 'reason');\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false,false,true,false,false,false], 'reason');\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false,false,false,true,false,false], 'reason');\n }\n if(officeIdField.value == '') {\n this.resetForm([false,false,false,false,true,false], 'responsibleOffice');\n }\n if(officeIdField.value != '' && officeIdField.invalid) {\n this.resetForm([false,false,false,false,false,true],'responsibleOffice');\n }\n }\n }\n resetForm(val, field) {\n if(field==='reason' || field==='all') {\n this.isReasonEmpty = val[0];\n this.reasonHasError = val[1];\n this.reasonMinHasError = val[2];\n this.reasonMaxHasError = val[3];\n }\n if(field==='responsibleOffice' || field==='all') {\n this.isResponsibleOfficeEmpty = val[4];\n this.responsibleOfficeHasError = val[5];\n }\n }\n\ncancelMarkUnsolicitedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.checkingFormValue()){\n this.viewStatus = 'unsolicitedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.markPaymentUnsolicitedForm.controls.responsibleOffice.setValue('');\n this.viewStatus = 'mainForm';\n }\n }\n checkingFormValue(){\n const formFields = this.markPaymentUnsolicitedForm.value;\n let valueExists = false;\n\n for (var field in formFields) {\n if (formFields.hasOwnProperty(field) && formFields[field] !==\"\") {\n valueExists = true;\n break;\n }\n }\n return valueExists;\n }\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n \n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n\n getErrorMessage(isErrorExist) {\n return {\n title: \"Something went wrong.\",\n body: \"Please try again later.\",\n showError: isErrorExist\n };\n }\n\n selectchange(args){ \n this.selectedSiteId = args.target.value; \n this.selectedSiteName = args.target.options[args.target.selectedIndex].text; \n } \n\n}\n","import { Component, OnInit, Output,Input, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport {Router} from '@angular/router';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-app-unprocessed-payments',\n templateUrl: './unprocessed-payments.component.html',\n styleUrls: ['./unprocessed-payments.component.scss']\n})\nexport class UnprocessedPaymentsComponent implements OnInit {\n\n @Input('FEE_RECORDS_EXISTS') FEE_RECORDS_EXISTS: boolean;\n @Input('PAYMENTREF') PAYMENTREF: string;\n @Input('ISTURNOFF') ISTURNOFF: boolean;\n @Input('IS_BUTTON_ENABLE') IS_BUTTON_ENABLE: boolean;\n @Input('IS_OS_AMT_AVAILABLE') IS_OS_AMT_AVAILABLE: boolean;\n @Input('ISNEWPCIPALOFF') ISNEWPCIPALOFF: boolean;\n @Input('ISOLDPCIPALOFF') ISOLDPCIPALOFF: boolean;\n @Input('ISSFENABLE') ISSFENABLE: boolean;\n @Input('PAYMENTSLENGTH') PAYMENTSLENGTH:Number;\n @Input('LEVEL')LEVEL:Number;\n\n @Output() selectedUnprocessedFeeEvent: EventEmitter<string> = new EventEmitter();\n @Output() getUnprocessedFeeCount: EventEmitter<string> = new EventEmitter();\n\n viewStatus = 'main';\n unassignedRecordList: IBSPayments;\n upPaymentErrorMessage: string = null;\n ccdCaseNumber: string;\n recordId: string = null;\n isRecordExist: boolean = false;\n dcnNumber: string = null;\n selectedOption: string;\n isUnprocessedRecordSelected: boolean = true;\n isAllocateToExistingFeebtnEnabled: boolean = false;\n isMarkAsUnidentifiedbtnEnabled: boolean = false;\n isAllocatedToNewFeebtnEnabled: boolean = false;\n isExceptionCase: boolean = false;\n serviceId: string = null;\n isBulkScanEnable;\n isNewpcipaloff;\n isOldpcipaloff;\n isTurnOff: boolean = true;\n isStFixEnable;\n unassignedRecordSelectedList: IBSPayments;\n unassignedRecordListLength: number = 0;\n showContent: boolean;\n\n constructor(private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private OrderslistService: OrderslistService\n ) { }\n\n ngOnInit() {\n // Todo ...\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isNewpcipaloff = this.paymentLibComponent.ISNEWPCIPALOFF;\n this.isOldpcipaloff = this.paymentLibComponent.ISOLDPCIPALOFF;\n this.isStFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.getFeeExists().subscribe( (data) => this.FEE_RECORDS_EXISTS = data);;\n this.getUnassignedPaymentlist();\n\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.dcnNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n }\n\n }\n\n setValuesForUnassignedRecord(unassignedPayments) {\n \n this.unassignedRecordList = unassignedPayments.payments;\n if(this.unassignedRecordList){\n this.unassignedRecordListLength = unassignedPayments.payments.length\n }\n this.serviceId = unassignedPayments.responsible_service_id;\n if (unassignedPayments['ccd_reference'] === undefined) {\n this.isExceptionCase = true;\n }\n // this.isRecordExist = this.unassignedRecordList.length === 0;\n this.getUnprocessedFeeCount.emit(<any>this.unassignedRecordList.length);\n this.unprocessedPaymentSelectEvent(this.unassignedRecordList);\n }\n\n formatUnassignedRecordId(ID: Number) {\n return `unassignrecord-${ID}`;\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n\n redirectToFeeSearchPage(event: any, dcn_reference:any) {\n event.preventDefault();\n this.recordId = dcn_reference;\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n url += this.isOldpcipaloff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n url += this.isNewpcipaloff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}&dcn=${this.recordId}${url}`);\n }\n\n loadUnsolicitedPage(viewName: string, dcn_reference:any) {\n this.recordId = dcn_reference;\n this.paymentLibComponent.bspaymentdcn = this.recordId;\n this.paymentLibComponent.viewName = viewName;\n }\n\n unprocessedPaymentSelectEvent(selectedRecordReference: any) {\n this.isUnprocessedRecordSelected = true;\n this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit(selectedRecordReference);\n }\n\n resetButtons() {\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n }\n\n goToAllocatePage(dcn_reference:any) {\n this.paymentLibComponent.bspaymentdcn = dcn_reference;\n this.paymentLibComponent.unProcessedPaymentServiceId = this.serviceId\n this.paymentLibComponent.isTurnOff = this.ISTURNOFF;\n this.paymentLibComponent.isNewPcipalOff = this.ISNEWPCIPALOFF;\n this.paymentLibComponent.isOldPcipalOff = this.ISOLDPCIPALOFF;\n this.paymentLibComponent.ISSFENABLE = this.isStFixEnable;\n\n if(this.ISTURNOFF) {\n this.paymentLibComponent.paymentGroupReference = this.PAYMENTREF;\n this.paymentLibComponent.viewName = 'fee-summary';\n }else {\n this.paymentLibComponent.paymentGroupReference = null;\n this.paymentLibComponent.viewName = 'allocate-payments';\n }\n\n }\n\n validateButtons() {\n if ( this.isUnprocessedRecordSelected && this.isExceptionCase) {\n this.isMarkAsUnidentifiedbtnEnabled = true;\n } else if ( this.isUnprocessedRecordSelected && !this.isExceptionCase && !this.FEE_RECORDS_EXISTS) {\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = true;\n } else if( this.isUnprocessedRecordSelected && !this.isExceptionCase && this.FEE_RECORDS_EXISTS ) {\n if(!this.ISTURNOFF) {\n this.isAllocateToExistingFeebtnEnabled = true;\n this.isAllocatedToNewFeebtnEnabled = false;\n } else {\n this.isAllocateToExistingFeebtnEnabled = this.IS_OS_AMT_AVAILABLE;\n this.isAllocatedToNewFeebtnEnabled = true;\n }\n }\n }\n\n unprocessedPaymentUnSelectEvent(event: any) {\n event.preventDefault();\n this.recordId = null;\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n //this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit('');\n }\n\n showDetailRow(event: any,obj: any, i: any) {\n event.preventDefault();\n \n this.unassignedRecordSelectedList = obj;\n \n }\n}\n","import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport {IPayment} from '../../interfaces/IPayment';\nimport {Router} from '@angular/router';\n\n@Component({\n selector: 'ccpay-app-processed-payments',\n templateUrl: './processed-payments.component.html',\n styleUrls: ['./processed-payments.component.scss']\n})\nexport class ProcessedPaymentsComponent implements OnInit {\n\n @Input('NONPAYMENTS') NONPAYMENTS: IPayment[];\n @Output() goToPaymentViewComponent: EventEmitter<any> = new EventEmitter();\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService\n ) { }\n ngOnInit() {\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n redirectToPaymentViewPage(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent.emit({paymentGroupReference, paymentReference, paymentMethod});\n }\n}\n","\nexport class IAllocationPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n reason: string;\n explanation: string;\n user_name: string;\n constructor(payment_group_reference: string, payment_reference : string, reason? : string, explanation? : string, userName? : string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Allocated\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.reason = reason ? reason : null;\n this.explanation = explanation ? explanation : null;\n this.user_name = userName ? userName : null;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {CaseTransactionsService} from '../../services/case-transactions/case-transactions.service'; \nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport {IBSPayments} from '../../interfaces/IBSPayments';\nimport {AllocatePaymentRequest} from '../../interfaces/AllocatePaymentRequest';\nimport {IAllocationPaymentsRequest} from '../../interfaces/IAllocationPaymentsRequest';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n\n\n@Component({\n selector: 'app-allocate-payments',\n templateUrl: './allocate-payments.component.html',\n styleUrls: ['./allocate-payments.component.scss']\n})\nexport class AllocatePaymentsComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() caseType: string;\n\n overUnderPaymentForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n recordId:string;\n feedbackUrlLabel:string;\n unAllocatedPayment: IBSPayments = {\n amount: 0\n };\n siteID: string = null;\n errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n paymentGroup: IPaymentGroup;\n paymentGroups: IPaymentGroup[] = [];\t\n remainingAmount: number;\n isRemainingAmountGtZero: boolean;\n isMoreDetailsBoxHide: boolean = true;\n isRemainingAmountLtZero: boolean;\n afterFeeAllocateOutstanding: number;\n amountForAllocation: number;\n isConfirmButtondisabled: boolean = false;\n isContinueButtondisabled: boolean = true;\n otherPaymentExplanation: string = null;\n selectedOption: string = null;\n isFeeAmountZero: boolean = false;\t\n\n paymentReasonHasError: boolean = false;\n paymentExplanationHasError: boolean = false;\n isPaymentDetailsEmpty: boolean = false;\n isPaymentDetailsInvalid: boolean = false;\n paymentDetailsMinHasError: boolean = false;\n paymentDetailsMaxHasError: boolean = false;\n isUserNameEmpty: boolean = false;\n isUserNameInvalid: boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n paymentReason: string = null;\n paymentExplanation: string = null;\n userName: string = null;\n paymentSectionLabel: any;\n paymentRef: string = null;\n isStrategicFixEnable: boolean = true;\n orderLevelFees: IOrderReferenceFee[] = [];\n cookieUserName: string[] = [];\n enCookieUserName: any;\n userNameField: string = null;\n\n reasonList: { [key: string]: { [key: string]: string } }= {\n overPayment: {\n hwfReward: 'Help with Fees (HWF) awarded. Please include the HWF reference number in the explanatory note',\n wrongFee: 'Incorrect payment received',\n notIssueCase: 'Unable to issue case',\n otherDeduction: 'Other'\n },\n shortFall: {\n helpWithFee: 'Help with Fees (HWF) application declined',\n wrongFee: 'Incorrect payment received',\n other: 'Other'\n }\n }\n explanationList = {\n overPayment: {\n referRefund: 'Details in case notes. Refund due',\n noRefund: 'Details in case notes. No refund due',\n noCase: 'No case created. Refund due',\n other: 'Other'\n },\n shortFall: {\n holdCase: 'I have put a stop on the case and contacted the applicant requesting the balance of payment',\n heldCase: 'I have put a stop on the case. The applicant needs to be contacted to request the balance of payment',\n other: 'Other'\n }\n }\n\n refund = {\n reason: {\n duplicate: 'Duplicate payment',\n humanerror: 'Human error',\n caseWithdrawn: 'Case withdrawn',\n other: 'Other'\n }\n }\n\n\n constructor(\n private errorHandlerService: ErrorHandlerService,\n private caseTransactionsService: CaseTransactionsService,\n private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n if (this.paymentLibComponent.paymentGroupReference !== null) {\n this.viewStatus = 'allocatePaymentConfirmation';\n }\n \n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.paymentRef = this.paymentLibComponent.paymentGroupReference;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.isTurnOff = this.paymentLibComponent.isTurnOff;\n this.overUnderPaymentForm = this.formBuilder.group({\n moreDetails: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n userName: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s]*)$')\n ])),\n });\n this.OrderslistService.getOrdersList().subscribe( (data) =>\n this.orderLevelFees = data.filter(data => data.orderStatus !== 'Paid'));\n this.OrderslistService.getCaseType().subscribe( (data) => this.caseType = data);\n this.getUnassignedPayment();\n }\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n }\n\n getPaymentGroupDetails(){\n\n if(!this.isTurnOff){\n this.paymentViewService.getPaymentGroupDetails(this.paymentRef).subscribe(\n paymentGroup => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.paymentGroup = paymentGroup;\n this.saveAndContinue();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.paymentGroups = paymentGroups['payment_groups'].filter(paymentGroup => {\n paymentGroup.fees.forEach(fee => {\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true\n }\n });\n let fstCon = this.getGroupOutstandingAmount(<IPaymentGroup>paymentGroup),\n scndCn = fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero) && paymentGroup.payment_group_reference === this.paymentRef;\n return this.paymentRef ? scndCn : fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero);\n });\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }\n\n }\n\n selectedPaymentGroup(paymentGroup: IPaymentGroup) {\t\n this.isContinueButtondisabled = false;\t\n this.paymentGroup = paymentGroup;\t\n }\t\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n\n gotoSummaryPage(event: any) { \n event.preventDefault();\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n\n cancelAllocatePayment(event: any){\n event.preventDefault();\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n if(!this.isTurnOff){\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n } else {\n this.viewStatus = 'mainForm';\t\n }\n }\n confirmAllocatePayement(){\n this.enCookieUserName = document.cookie.split(\";\").find(row => row.includes(\"user-info\")).split(\"=\")[1].split(\";\");\n this.cookieUserName = JSON.parse(decodeURIComponent(this.enCookieUserName));\n \n const fullName = this.cookieUserName['forename'] + ' ' + this.cookieUserName['surname'];\n\n const paymentDetailsField = this.overUnderPaymentForm.controls.moreDetails,\n paymentFormError = this.overUnderPaymentForm.controls.moreDetails.errors,\n userNameField = fullName,\n isEmptyCondtion = this.paymentReason && this.paymentExplanation,\n isOtherOptionSelected = this.paymentExplanation === 'Other';\n\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n if ( (!this.isRemainingAmountGtZero && !this.isRemainingAmountLtZero) || isEmptyCondtion && (!isOtherOptionSelected && userNameField.length > 0 || isOtherOptionSelected && userNameField.length > 0 && paymentDetailsField.valid)) {\n this.isConfirmButtondisabled = true;\n this.otherPaymentExplanation = this.paymentExplanation === 'Other' ? paymentDetailsField.value : this.paymentExplanation;\n this.userName = userNameField;\n this.finalServiceCall();\n }else {\n if(!this.paymentReason) {\n this.resetForm([true, false, false, false, false, false, false, false], 'reason');\n }\n if(!this.paymentExplanation) {\n this.resetForm([false, true, false, false, false, false, false, false], 'explanation');\n }\n if(this.paymentExplanation && isOtherOptionSelected) {\n if(paymentDetailsField.value == '' ) {\n this.resetForm([false, false, true, false, false, false, false, false], 'other');\n }\n if(paymentDetailsField.value != '' && paymentDetailsField.invalid ) {\n this.resetForm([false, false, false, true, false, false, false, false], 'other');\n }\n if(paymentFormError && paymentFormError.minlength && paymentFormError.minlength.actualLength < 3 ) {\n this.resetForm([false, false, false, false, true, false, false, false], 'other');\n }\n if(paymentFormError && paymentFormError.maxlength && paymentFormError.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, false, false, true, false, false], 'other');\n }\n }\n if(userNameField.length === 0) {\n this.resetForm([false, false, false, false, false, false, true, false], 'username');\n }\n }\n }\n resetForm(vals, field) {\n if(field==='reason' || field==='all') {\n this.paymentReasonHasError = vals[0];\n }\n if(field==='explanation' || field==='all') {\n this.paymentExplanationHasError = vals[1];\n }\n if(field==='other' || field==='all') {\n this.isPaymentDetailsEmpty = vals[2];\n this.isPaymentDetailsInvalid = vals[3];\n this.paymentDetailsMinHasError = vals[4];\n this.paymentDetailsMaxHasError = vals[5];\n }\n if(field==='username' || field==='all') {\n this.isUserNameEmpty = vals[6];\n this.isUserNameInvalid = vals[7];\n }\n }\n finalServiceCall() {\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n reason: this.paymentReason,\n allocation_status:'Allocated',\n explanation: this.otherPaymentExplanation,\n payment_allocation_status: {\n description: '',\n name: 'Allocated'\n },\n payment_group_reference: this.paymentGroup.payment_group_reference,\n case_type: this.caseType,\n user_name: this.userName\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unAllocatedPayment, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSPaymentStrategic(postStrategicBody , this.paymentGroup.payment_group_reference).subscribe(\n res => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n });\n\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response1 = JSON.parse(res1);\n if (response1.success) {\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unAllocatedPayment, this.siteID, this.exceptionReference);\n this.bulkScaningPaymentService.postBSAllocatePayment(requestBody, this.paymentGroup.payment_group_reference).subscribe(\n res2 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response2 = JSON.parse(res2);\n const reqBody = new IAllocationPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, this.paymentReason, this.otherPaymentExplanation, this.userName);\n if (response2.success) {\n this.paymentViewService.postBSAllocationPayments(reqBody).subscribe(\n \n res3 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n ); \n }\n }\n\n saveAndContinue(){\n if(this.paymentGroup) {\n this.isMoreDetailsBoxHide = true;\n this.overUnderPaymentForm.get('moreDetails').reset();\n this.overUnderPaymentForm.get('moreDetails').setValue('');\n this.overUnderPaymentForm.get('userName').reset();\n this.overUnderPaymentForm.get('userName').setValue('');\n this.paymentReason = '';\n this.paymentExplanation = '';\n let GroupOutstandingAmount = this.getGroupOutstandingAmount(this.paymentGroup);\n const remainingToBeAssigned = this.unAllocatedPayment.amount - GroupOutstandingAmount;\n this.isRemainingAmountGtZero = remainingToBeAssigned > 0;\n this.isRemainingAmountLtZero = remainingToBeAssigned < 0;\n this.paymentSectionLabel = this.isRemainingAmountGtZero ? { \n title: 'There is an Over payment of',\n reason: 'Provide a reason. This will be used in the Refund process.',\n }: this.isRemainingAmountLtZero ? { \n title: 'There is an Under payment of',\n reason: 'Provide a reason',\n }: { \n title:'Amount left to be allocated',\n reason:'',\n };\n this.feedbackUrlLabel = this.isRemainingAmountGtZero ? 'CONFIRMALLOCATION_SURPLUS' : this.isRemainingAmountLtZero ? 'CONFIRMALLOCATION_SHORTFALL' : 'CONFIRMALLOCATION';\n this.remainingAmount = this.isRemainingAmountGtZero ? remainingToBeAssigned : this.isRemainingAmountLtZero ? remainingToBeAssigned * -1 : 0;\n this.afterFeeAllocateOutstanding = remainingToBeAssigned >= 0 ? 0 : (remainingToBeAssigned * -1);\n this.amountForAllocation = GroupOutstandingAmount >= this.unAllocatedPayment.amount ? this.unAllocatedPayment.amount : GroupOutstandingAmount;\n if(this.isTurnOff){\n this.viewStatus = 'allocatePaymentConfirmation';\t\n }\n }\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.unAllocatedPayment = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n this.getPaymentGroupDetails();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }\n selectRadioButton(key, type) {\n this.isMoreDetailsBoxHide = true;\n if( type === 'explanation' && key === 'other' ){\n this.isPaymentDetailsEmpty = false;\n this.isPaymentDetailsInvalid = false;\n this.paymentDetailsMinHasError = false;\n this.paymentDetailsMaxHasError = false;\n this.isMoreDetailsBoxHide = false;\n }\n }\n OrderListSelectEvent(orderef: any){\n this.isContinueButtondisabled = false;\n this.recordId= orderef;\n }\n\n redirectToOrderFeeSearchPage() {\n // this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = this.recordId;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n}\n}\n","import { IFee } from './IFee';\n\nexport class AddRemissionRequest {\n beneficiary_name: string;\n ccd_case_number: string;\n fee: IFee;\n hwf_amount: number;\n hwf_reference: string;\n payment_group_reference: string;\n case_type: string;\n\n constructor(ccd_case_number: string, fee: IFee, hwf_amount: number, hwf_reference: string, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.fee = fee;\n this.hwf_amount = hwf_amount;\n this.hwf_reference = hwf_reference;\n this.case_type = caseType;\n }\n}\n","export class AddRetroRemissionRequest {\n hwf_amount: number;\n hwf_reference: string;\n\n constructor(hwf_amount: number, hwf_reference: string) {\n this.hwf_amount = hwf_amount;\n this.hwf_reference = hwf_reference;\n }\n}\n","export class PostRefundRetroRemission {\n payment_reference: string;\n refund_reason: string;\n \n constructor(payment_reference : string, refund_reason : string) {\n this.payment_reference= payment_reference;\n this.refund_reason = refund_reason;\n } \n}","export class PostIssueRefundRetroRemission {\n remissionReference: string;\n \n constructor(remissionReference : string) {\n this.remissionReference= remissionReference;\n } \n}","import { Component, OnInit, Input, Output, EventEmitter} from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl, RequiredValidator } from '@angular/forms';\nimport { IFee } from '../../interfaces/IFee';\nimport {Router} from '@angular/router';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { RefundsRequest } from '../../interfaces/RefundsRequest';\nimport { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';\nimport { IssueRefundRequest } from '../../interfaces/IssueRefundRequest';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\nimport { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';\nimport {ChangeDetectorRef} from '@angular/core';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { OrderslistService } from '../../services/orderslist.service';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-add-remission',\n templateUrl: './add-remission.component.html',\n styleUrls: ['./add-remission.component.scss']\n})\nexport class AddRemissionComponent implements OnInit {\n @Input() fee: IFee;\n @Input() payment: IPayment;\n @Input() remission: IRemission;\n @Input() ccdCaseNumber: string;\n @Input() caseType: string;\n @Input() viewCompStatus: string;\n @Input() paymentGroupRef: string;\n @Input() isTurnOff: boolean;\n @Input() isRefundRemission: boolean;\n @Input() isOldPcipalOff: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() isStrategicFixEnable: boolean;\n @Input() orderStatus: string;\n @Input() paidAmount: any;\n @Input() isFromRefundListPage: boolean;\n @Input() isFromPaymentDetailPage: boolean;\n @Input() isFromServiceRequestPage: boolean;\n @Input() feeamount: 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 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 // this.cd.detectChanges();\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 // remissionCode: new FormControl('', Validators.compose([ [A-Za-z]{2}[0-9]{2} [0-9]{6}\n // Validators.required,\n // // Validators.pattern('/(^[a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})$/|/^([A-Za-z]{2}[0-9]{2})-([0-9]{6})$/')\n // // Validators.pattern('^([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})$'),\n // Validators.pattern('/^(([A-Za-z]{2}[0-9]{2})-([0-9]{6}))|(([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3}))$/')\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 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 //this.remissionForm.controls['amount'].setErrors(null);\n if (this.remissionForm.dirty && this.remissionForm.valid && isRemissionLessThanFee) {\n this.viewStatus = 'confirmation';\n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false, false], 'amount');\n }\n if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true, false], 'amount');\n }\n }\n }\n\n confirmRemission() {\n this.isConfirmationBtnDisabled = true;\n const newNetAmount = this.remissionForm.controls.amount.value,\n remissionAmount = this.fee.net_amount - newNetAmount,\n requestBody = new AddRemissionRequest\n (this.ccdCaseNumber, this.fee, remissionAmount, this.remissionForm.controls.remissionCode.value, this.caseType);\n this.paymentViewService.postPaymentGroupWithRemissions(decodeURIComponent(this.paymentGroupRef).trim(), this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response).success) {\n let LDUrl = this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable'\n LDUrl += `&caseType=${this.caseType}`\n LDUrl += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable'\n LDUrl += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable'\n if (this.paymentLibComponent.bspaymentdcn) {\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(`/payment-history/${this.ccdCaseNumber}?view=fee-summary&selectedOption=${this.option}&paymentGroupRef=${this.paymentGroupRef}&dcn=${this.paymentLibComponent.bspaymentdcn}${LDUrl}`);\n }else {\n this.gotoCasetransationPage();\n }\n\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n }\n );\n }\n\n resetRemissionForm(val, field){\n if (field==='All'){\n this.isRemissionCodeEmpty = val[0];\n this.remissionCodeHasError = val[1];\n this.isAmountEmpty = val[2];\n this.amountHasError = val[3];\n this.isRemissionLessThanFeeError = val[4];\n this.isReasonEmpty = val[5];\n } else if(field==='remissionCode' || field==='All') {\n this.isRemissionCodeEmpty = val[0];\n this.remissionCodeHasError = val[1];\n } else if (field==='amount' || field==='All'){\n this.isAmountEmpty = val[2];\n this.amountHasError = val[3];\n this.isRemissionLessThanFeeError = val[4];\n } else if (field==='reason' || field==='All'){\n this.isReasonEmpty = val[5];\n }\n }\n\n // Add retro remission changes\n addRemissionCode() {\n this.errorMessage = false;\n this.viewStatus = '';\n this.isRefundRemission = false;\n this.resetRemissionForm([false, false, false, false, false, false], 'All');\n const remissionctrls=this.remissionForm.controls\n // isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value; \n this.remissionForm.controls['refundReason'].setErrors(null);\n this.remissionForm.controls['refundDDReason'].setErrors(null);\n this.remissionForm.controls['amount'].setErrors(null);\n if (this.remissionForm.dirty && this.remissionForm.valid ) {\n this.viewCompStatus = '';\n this.viewStatus = \"processretroremissonpage\";\n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false], 'amount');\n }\n if(remissionctrls['reason'].value == '') {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n }\n if(remissionctrls.amount.valid){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n }\n \n }\n }\n\n\n gotoAddRetroRemissionCodePage() {\n this.errorMessage = false;\n if(this.isRefundRemission) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListAmount.emit();\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n }\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n } \n this.viewStatus = '';\n this.selectedValue = 'yes';\n this.viewCompStatus = \"addremission\";\n this.isRefundRemission = true;\n this.errorMessage = '';\n if(this.isFromPaymentDetailPage) {\n this.paymentLibComponent.viewName = 'payment-view';\n }\n }\n\n gotoCheckRetroRemissionPage(payment: IPayment) {\n this.paymentLibComponent.iscancelClicked = false;\n this.errorMessage = '';\n this.resetRemissionForm([false, false, false, false, false], 'All');\n if( !this.isRefundRemission) {\n var remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value; \n if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' || remissionctrls['amount'].value < 0) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, false, false, true, false], 'amount');\n } else if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n }\n }\n } else {\n var remissionctrls=this.remissionForm.controls;\n //if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' || remissionctrls['amount'].value < 0 ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n this.refundListAmount.emit(remissionctrls['amount'].value);\n }\n //}\n \n }\n }\n\n gotoProcessRetroRemissionPage() {\n this.viewStatus = '';\n this.viewCompStatus = 'addremission';\n this.isRefundRemission = true;\n this.errorMessage = '';\n }\n\n confirmRetroRemission() {\n if(!this.isConfirmationBtnDisabled) {\n this.retroRemission = true;\n this.remissionamt = this.remissionForm.controls.amount.value;\n const requestBody = new AddRetroRemissionRequest(this.remissionamt,this.remissionForm.controls.remissionCode.value )\n this.paymentViewService.postPaymentGroupWithRetroRemissions(decodeURIComponent(this.paymentGroupRef).trim(), this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.isRemissionApplied = true;\n this.viewCompStatus = '';\n this.viewStatus = 'retroremissionconfirmationpage';\n this.remissionReference =JSON.parse(response).remission_reference;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n }\n );\n }\n }\n\n processRefund() {\n this.errorMessage = '';\n this.isConfirmationBtnDisabled = true;\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n if (this.remissionReference === undefined || this.remissionReference === '') {\n this.remissionReference = this.remission.remission_reference;\n }\n const requestBody = new PostIssueRefundRetroRemission(this.remissionReference);\n this.paymentViewService.postRefundRetroRemission(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n })\n }\n\n // Issue Refund changes\n\n gotoIssueRefundConfirmation(payment: IPayment) {\n this.paymentLibComponent.iscancelClicked = false;\n if(this.paymentLibComponent.REFUNDLIST === \"true\") {\n this.isFromRefundListPage = true; \n }\n this.errorMessage = '';\n this.refundReason = this.remissionForm.controls['refundReason'].value === null ? this.remissionForm.controls['refundDDReason'].value : this.remissionForm.controls['refundReason'].value;\n if(!this.refundReason || this.refundReason === 'Select a different reason') {\n this.refundHasError = true;\n } else if(this.selectedRefundReason.includes('Other') && (this.remissionForm.controls['reason'].value == '' || this.remissionForm.controls['reason'].value == null)) {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n } else if (this.selectedRefundReason.includes('Other') && this.remissionForm.controls['reason'].value !== '') {\n this.refundHasError = false;\n this.refundReason += '-' + this.remissionForm.controls['reason'].value;\n this.displayRefundReason = this.remissionForm.controls['reason'].value;\n if ( this.isFromRefundListPage ) {\n this.refundListReason.emit({reason: this.selectedRefundReason, 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 event.preventDefault();\n \n if (this.paymentLibComponent.TAKEPAYMENT === undefined && this.paymentLibComponent.SERVICEREQUEST === undefined) {\n this.paymentLibComponent.SERVICEREQUEST = 'false';\n this.paymentLibComponent.TAKEPAYMENT = false;\n }\n if (this.isFromServiceRequestPage) {\n //this.paymentLibComponent.TAKEPAYMENT = false;\n this.paymentLibComponent.isFromRefundStatusPage = false;\n this.viewStatus = 'main'\n this.paymentLibComponent.viewName = 'case-transactions';\n this.OrderslistService.setisFromServiceRequestPage(true);\n this.OrderslistService.setnavigationPage('servicerequestpage');\n }\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n } \n if(!this.paymentLibComponent.isFromRefundStatusPage) {\n if(this.payment) {\n this.OrderslistService.setpaymentPageView({method: this.payment.method,payment_group_reference: this.paymentGroupRef, reference:this.payment.reference});\n }\n if (this.isFromServiceRequestPage) { \n this.OrderslistService.setnavigationPage('servicerequestpage');\n } else {\n this.OrderslistService.setnavigationPage('paymentdetailspage');\n }\n this.errorMessage = '';\n this.paymentLibComponent.viewName = 'case-transactions';\n // this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n this.paymentLibComponent.isFromServiceRequestPage = true; \n // this.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 this.paymentLibComponent.ISBSENABLE = true;\n let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n if(this.isFromPaymentDetailPage) {\n partUrl += this.paymentLibComponent.isFromPaymentDetailPage\n }\n if(!this.paymentLibComponent.TAKEPAYMENT) {\n this.paymentLibComponent.TAKEPAYMENT = undefined;\n }\n if ( this.paymentLibComponent.SERVICEREQUEST) {\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n } else {\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n \n } else {\n this.paymentLibComponent.viewName === 'refundstatuslist';\n this.paymentLibComponent.isFromRefundStatusPage = true;\n }\n }\n\n gotoCasetransationPage() {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.errorMessage = '';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n this.paymentLibComponent.isFromServiceRequestPage = true; \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 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 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.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.TAKEPAYMENT = true;\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n this.paymentLibComponent.isFromServiceRequestPage = true; \n this.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 = 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\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';\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 ) {}\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, refundDate: IRefundList ) {\n this.paymentLibComponent.refundlistsource = refundDate;\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 window.location.href =`/cases/case-details/:${ccdCaseNumber}`;\n }\n}","export class IResubmitRefundRequest {\n refund_reason: string;\n amount: number;\n \n \n constructor(refund_reason : string, amount: number) {\n this.refund_reason= refund_reason;\n this.amount = amount;\n \n } \n }\n ","import { Component, OnInit, Input } from '@angular/core';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { FormBuilder, FormGroup, Validators, FormControl, RequiredValidator } from '@angular/forms';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { Router } from '@angular/router';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { IRefundStatus } from '../../interfaces/IRefundStatus';\nimport { IResubmitRefundRequest } from '../../interfaces/IResubmitRefundRequest';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-refund-status',\n templateUrl: './refund-status.component.html',\n styleUrls: ['./refund-status.component.css']\n})\nexport class RefundStatusComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[] = [];\n @Input() isOldPcipalOff: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: boolean;\n refundStatusForm: FormGroup;\n selectedRefundReason: string;\n rejectedRefundList: IRefundList[] = [];\n approvalStatus = 'Sent for approval';\n rejectStatus = 'Update required';\n errorMessage = null;\n viewName: string;\n refundReason: string;\n refundlist: IRefundList;\n bsPaymentDcnNumber: string;\n isCallFromRefundList: boolean;\n refundButtonState: string = '';\n isAmountEmpty: boolean = false;\n isReasonEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n refundHasError: boolean = false;\n refundReasons: any[] = [];\n refundStatusHistories: IRefundStatus[];\n refundReference: string;\n refundAmount: string;\n refundCode: string;\n isRefundBtnDisabled: boolean = true;\n oldRefundReason: string;\n refundreason: string;\n navigationpage: string;\n isLastUpdatedByCurrentUser: boolean = true;\n isProcessRefund: boolean = false;\n changedAmount: number;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n\n constructor(private formBuilder: FormBuilder,\n private refundService: RefundsService,\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private router: Router,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n\n if (this.check4AllowedRoles2AccessRefund()) {\n this.resetRemissionForm([false, false, false, false], 'All');\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.isCallFromRefundList = this.paymentLibComponent.isCallFromRefundList;\n // if(this.paymentLibComponent.isFromRefundStatusPage) {\n // this.viewName = 'reviewandsubmitview';\n // }\n if (this.paymentLibComponent.isRefundStatusView) {\n this.viewName = 'refundview';\n this.OrderslistService.getRefundView().subscribe((data) => this.refundlist = data);\n this.OrderslistService.getCCDCaseNumberforRefund.subscribe((data) => this.ccdCaseNumber = data);\n } else {\n this.viewName = 'refundstatuslist';\n this.refundService.getRefundStatusList(this.ccdCaseNumber).subscribe(\n refundList => {\n this.rejectedRefundList = refundList['refund_list'];\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n }\n\n\n this.refundStatusForm = this.formBuilder.group({\n amount: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[0-9]+(\\.[0-9]{1,2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl()\n });\n\n if(this.refundlist !== undefined) {\n this.getRefundsStatusHistoryList();\n\n if (this.LOGGEDINUSERROLES.some(i => i.includes('payments-refund-approver'))) {\n this.isProcessRefund = true;\n this.refundButtonState = this.refundlist.refund_status.name;\n return;\n }\n \n if (this.LOGGEDINUSERROLES.some(i => i.includes('payments-refund'))) {\n this.isProcessRefund = false;\n this.refundButtonState = this.refundlist.refund_status.name;\n }\n }\n }\n }\n \n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n getRefundsStatusHistoryList() {\n if(this.refundlist !== undefined) {\n this.refundService.getRefundStatusHistory(this.refundlist.refund_reference).subscribe(\n statusHistoryList => {\n this.refundStatusHistories = statusHistoryList.status_history_dto_list;\n this.isLastUpdatedByCurrentUser = statusHistoryList.last_updated_by_current_user;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n }; \n }\n }\n\n goToRefundView(refundlist: IRefundList, navigationpage: string) {\n this.OrderslistService.setRefundView(refundlist);\n this.OrderslistService.setCCDCaseNumber(this.ccdCaseNumber);\n this.paymentLibComponent.viewName = 'refundstatuslist';\n this.paymentLibComponent.isRefundStatusView = true;\n this.refundlist = refundlist;\n this.OrderslistService.setnavigationPage(navigationpage);\n }\n\n loadCaseTransactionPage() {\n this.paymentLibComponent.isRefundStatusView = false;\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 let url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&${partUrl}`;\n this.router.navigateByUrl(url);\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 // this.viewName='refundview';\n // this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;\n // this.paymentLibComponent.isRefundStatusView = true;\n // this.paymentLibComponent.isCallFromRefundList = true;\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","export class IserviceRequestCardPayment {\n amount: string\n currency: string\n language: string\n \n constructor(amount : string) {\n this.amount = amount;\n this.currency = 'GBP';\n this.language = 'string';\n } \n}\n ","export class IserviceRequestPbaPayment {\n account_number: string;\n amount: string\n currency: string\n customer_reference: string\n \n constructor(account_number : string, amount : string, customer_reference: string) {\n this.account_number = account_number;\n this.amount = amount;\n this.currency = 'GBP';\n this.customer_reference = customer_reference;\n } \n}\n ","import { Component, OnInit, Input} from '@angular/core';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IserviceRequestCardPayment } from '../../interfaces/IserviceRequestCardPayment';\nimport { IserviceRequestPbaPayment } from '../../interfaces/IserviceRequestPbaPayment';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-pba-payment',\n templateUrl: './pba-payment.component.html',\n styleUrls: ['./pba-payment.component.scss']\n})\nexport class PbaPaymentComponent implements OnInit {\n @Input() pbaPayOrderRef: any;\n viewStatus: string;\n pbaAccountList: string[];\n errorMsg: any;\n isCardPaymentSuccess: boolean = true;\n isInSufficiantFund: boolean = false;\n isPBAAccountNotExist: boolean = false;\n isPBAServerError: boolean = false;\n isGetPBAAccountSucceed: boolean = false;\n selectedPbaAccount: string = '';\n pbaAccountRef: string = '';\n\n isContinueButtondisabled: boolean = true;\n isPBAAccountPaymentSuccess: boolean = false;\n pbaAccountrPaymentResult: any;\n\n constructor(private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService) {}\n\n ngOnInit() {\n this.pbaPayOrderRef = this.paymentLibComponent.pbaPayOrderRef;\n this.viewStatus = 'pba-payment';\n this.errorMsg = null;\n this.paymentViewService.getPBAaccountDetails()\n .subscribe(\n result => {\n this.isGetPBAAccountSucceed = true;\n this.pbaAccountList = result.organisationEntityResponse.paymentAccount;\n },\n error => {\n this.errorMsg = error;\n }\n );\n\n }\n selectpbaaccount(args) {\n if(args.currentTarget.id === 'pbaAccountNumber') {\n this.selectedPbaAccount = args.target.value; \n }\n if(args.currentTarget.id === 'pbaAccountRef') {\n this.pbaAccountRef = args.target.value; \n }\n if(this.selectedPbaAccount !== '' && this.pbaAccountRef !== \"\") {\n this.isContinueButtondisabled = false;\n } else {\n this.isContinueButtondisabled = true;\n }\n }\n saveAndContinue() {\n this.isInSufficiantFund = false;\n this.isPBAAccountNotExist = false;\n this.isPBAServerError = false;\n this.isPBAAccountPaymentSuccess = false;\n if ( this.pbaAccountList.indexOf(this.selectedPbaAccount) !== -1 ) {\n const requestBody = new IserviceRequestPbaPayment(\n this.selectedPbaAccount, this.pbaPayOrderRef.orderTotalFees, this.pbaAccountRef);\n this.paymentViewService.postPBAaccountPayment(this.pbaPayOrderRef.orderRefId, requestBody)\n .subscribe(\n r => {\n this.pbaAccountrPaymentResult = JSON.parse(r).data;\n this.isPBAAccountPaymentSuccess = true;\n },\n e => {\n if(e.status == '402') {\n this.isInSufficiantFund = true;\n } else if(e.status == '410' || e.status == '412') {\n this.isPBAAccountNotExist = true;\n } else {\n this.isPBAServerError = true;\n }\n }\n );\n } else {\n this.isPBAServerError = true;\n }\n }\n cardPayment() {\n this.isCardPaymentSuccess = true;\n const requestBody = new IserviceRequestCardPayment (\n this.pbaPayOrderRef.orderTotalFees);\n this.paymentViewService.postWays2PayCardPayment(this.pbaPayOrderRef.orderRefId, requestBody)\n .subscribe(\n result => {\n const paymentUrl = JSON.parse(result).next_url;\n window.location.href = paymentUrl;\n },\n error => {\n this.isCardPaymentSuccess = false;\n }\n );\n\n }\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = false;\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n }\n}\n","import { NgModule } from '@angular/core';\nimport { HttpClientModule } from '@angular/common/http';\nimport { CommonModule } from '@angular/common';\n\nimport { PaymentListComponent } from './components/payment-list/payment-list.component';\nimport { PaymentViewComponent } from './components/payment-view/payment-view.component';\nimport { ProcessRefundComponent } from './components/process-refund/process-refund.component';\nimport { RefundListComponent } from './components/refund-list/refund-list.component';\n\nimport { CardDetailsComponent } from './components/card-details/card-details.component';\nimport { PageNotFoundComponent } from './components/page-not-found.component';\nimport { PaymentLibComponent } from './payment-lib.component';\nimport { StatusHistoryComponent } from './components/status-history/status-history.component';\nimport { PbaDetailsComponent } from './components/pba-details/pba-details.component';\nimport { LoggerService } from './services/shared/logger/logger.service';\nimport { ConsoleLoggerService } from './services/shared/logger/console-logger.service';\nimport { WebComponentHttpClient } from './services/shared/httpclient/webcomponent.http.client';\nimport { CaseTransactionsComponent } from './components/case-transactions/case-transactions.component';\nimport { FeeSummaryComponent } from './components/fee-summary/fee-summary.component';\nimport { ErrorBannerComponent } from './components/error-banner/error-banner.component';\nimport { MarkUnidentifiedPaymentComponent } from './components/mark-unidentified-payment/mark-unidentified-payment.component';\nimport { MarkUnsolicitedPaymentComponent } from './components/mark-unsolicited-payment/mark-unsolicited-payment.component';\nimport { UnprocessedPaymentsComponent } from './components/unprocessed-payments/unprocessed-payments.component';\nimport { ProcessedPaymentsComponent } from './components/processed-payments/processed-payments.component';\nimport { AllocatePaymentsComponent } from './components/allocate-payments/allocate-payments.component';\nimport { AddRemissionComponent } from './components/add-remission/add-remission.component';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { CcdHyphensPipe } from './pipes/ccd-hyphens.pipe';\nimport { CapitalizePipe } from './pipes/capitalize.pipe';\nimport { keyValuePipe } from './pipes/key-value.pipe';\nimport { SanitizeHtmlPipe } from './pipes/sanitize-html.pipe';\nimport { ReportsComponent } from './components/reports/reports.component';\nimport { XlFileService } from './services/xl-file/xl-file.service';\nimport { TableComponent } from './components/table/table.component';\nimport { MatTableModule } from '@angular/material/table';\nimport { MatPaginatorModule } from '@angular/material/paginator';\nimport { MatSortModule } from '@angular/material/sort';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\n// import { BrowserAnimationsModule } from '@angular/platform-browser/animations';\n// import { NoopAnimationsModule } from '@angular/platform-browser/animations';\nimport { RefundStatusComponent } from './components/refund-status/refund-status.component';\nimport { 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 ],\n exports: [PaymentLibComponent],\n providers: [\n { provide: LoggerService, useClass: ConsoleLoggerService },\n XlFileService,\n WebComponentHttpClient\n ]\n})\n\nexport class PaymentLibModule { }\n"],"names":["PaymentLibService","prototype","setApiRootUrl","apiRoot","this","API_ROOT","getApiRootUrl","setBulkScanApiRootUrl","bulkscanapiRoot","BULKSCAN_API_ROOT","getBulkScanApiRootUrl","setRefundndsApiRootUrl","refundsapiRoot","REFUNDS_API_ROOT","getRefundsApiRootUrl","Injectable","args","providedIn","PaymentLibComponent","ngAfterContentChecked","cd","detectChanges","ngOnInit","paymentLibService","PAYMENT_GROUP_REF","paymentGroupReference","DCN_NUMBER","bspaymentdcn","REFUNDLIST","VIEW","viewName","Component","selector","template","ChangeDetectorRef","Input","unProcessedPaymentServiceId","unProcessedPayment","ErrorHandlerService","handleError","err","errorMessage","error","Error","message","status","messsage","undefined","JSON","parse","stringify","_throw","getServerErrorMessage","isErrorExist","title","body","showError","LoggerService","invokeConsoleMethod","type","PaymentListService","getPaymentByCcdCaseNumber","ccdCaseNumber","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","length","next","value","done","TypeError","WebComponentHttpClient","post","url","options","opts","addHeaders","put","delete","patch","csrfToken","meta","getTag","headers","forEach","element","document","cookie","split","find","row","startsWith","content","HttpHeaders","responseType","Meta","PaymentViewService","getPaymentDetails","getPaymentGroupDetails","getApportionPaymentDetails","getPBAaccountDetails","postWays2PayCardPayment","serviceRef","https","postPBAaccountPayment","postBSPayments","postBSUnidentifiedPayments","postBSUnsolicitedPayments","postBSAllocationPayments","postPaymentGroupWithRemissions","feeId","deleteFeeFromPaymentGroup","postPaymentToPayHub","paymentGroupRef","postPaymentAntennaToPayHub","downloadSelectedReport","reportName","startDate","endDate","getBSfeature","getSiteID","getPartyDetails","caseNumber","setOrdersList","orderLevelFees","ordersList","Object","assign","getOrdersList","postRefundsReason","postPaymentGroupWithRetroRemissions","postRefundRetroRemission","BehaviorSubject","OrderslistService","setRefundView","refundList","refundView","getRefundView","setCaseType","caseType","getCaseType","setCCDCaseNumber","getCCDCaseNumber","setFeeExists","feeExists","getFeeExists","setisFromServiceRequestPage","isFromServiceRequestPage","getisFromServiceRequestPages","setOrderRefId","OrderRefId","getSelectedOrderRefId","setnavigationPage","navigationPage","getnavigationPageValue","setpaymentPageView","paymentpageList","paymentPageView","getpaymentPageView","getcaseType","asObservable","getFeeExist","getCCDCaseNumberforRefund","getisFromServiceRequestPage","getOrderRefId","getnavigationPage","PaymentViewComponent","selectedOption","SELECTED_OPTION","dcnNumber","isTurnOff","ISTURNOFF","serviceReference","viewStatus","paymentViewService","paymentGroup","fees","fee","isRemissionsMatch","remissions","rem","fee_code","code","push","filter","paymentGroupObj","includes","paymentAllocation","payment_allocation","isStatusAllocated","allocation_status","console","log","defineProperty","method","channel","goToPaymentList","goToCaseTransationPage","event","preventDefault","ISBSENABLE","addRemission","chkForAddRemission","reference","payment","isFromPaymentDetailPage","isRefundRemission","checkForFees","addRefundForRemission","remission","chkIsRefundRemissionBtnEnable","remissionFeeAmt","data","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","LOGGEDINUSERROLES","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","statusCode","processRefundForm","formBuilder","group","refundActionField","FormControl","Validators","compose","required","refundRejectReasonField","sendMeBackField","minLength","maxLength","pattern","enterReasonField","checkRefundActions","isConfirmButtondisabled","isSendMeBackClicked","isRejectClicked","isOtherClicked","refundRejectReasonList","processRefundSubmit","processRefundRequest","resetForm","controls","processFormError","errors","dirty","valid","reason","response","isSuccesspageEnable","successMsg","replace","invalid","minlength","actualLength","maxlength","errorMsg","bodyTxt","loadRefundListPage","navigationpage","window","location","href","redirecttoRefundListPage","vals","field","refundActionsHasError","refundRejectReasonHasError","isReasonFieldEmpty","isReasonFieldInvalid","reasonFieldMinHasError","reasonFieldMaxHasError","isReasonEmpty","isReasonInvalid","FormBuilder","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","apply","CaseTransactionsService","getPaymentGroups","BulkScaningPaymentService","getBSPaymentsByCCD","getBSPaymentsByDCN","dcn","postBSAllocatePayment","paymentRef","postBSPaymentStrategic","postBSWoPGStrategic","patchBSChangeStatus","calculateOutStandingAmount","feesTotal","paymentsTotal","remissionsTotal","calculated_amount","toUpperCase","amount","hwf_amount","removeUnwantedString","input","replaceText","CaseTransactionsComponent","paymentView","payment_group_reference","goToPayementView","isGrpOutstandingAmtPositive","CASETYPE","EXC_REFERENCE","excReference","takePayment","TAKEPAYMENT","servicerequest","SERVICEREQUEST","serviceRequestValue","isBulkScanEnable","isNewPcipalOff","ISNEWPCIPALOFF","isOldPcipalOff","ISOLDPCIPALOFF","isStrategicFixEnable","ISSFENABLE","caseTransactionsService","paymentGroups","isAnyFeeGroupAvilable","calculateAmounts","calculateOrderFeesAmounts","totalRefundAmount","calculateRefundAmount","cpoDetails","setDefaults","isCPODown","orderRef","goToOrderViewDetailSection","checkForExceptionRecord","totalPayments","totalRemissions","totalNonOffPayments","totalFees","getAllocationStatus","bulkScaningPaymentService","recordData","exception_record_reference","ccd_reference","isExceptionRecord","case_reference","ccd_case_number","resetOrderVariables","orderFeesTotal","orderRemissionTotal","orderTotalPayments","orderPendingPayments","orderStatus","orderAddBtnEnable","orderRefId","orderTotalFees","orderParty","orderCCDEvent","orderCreated","orderReferenceObj","orderDetail","x","redirectToOrderFeeSearchPage","orderef","nonOffLinePayment","a","b","amount_due","clAmountDue","allocationLen","nonPayments","allPayments","remisison","totalRefundAmount_1","isFeeAmountZero_1","grpOutstandingAmount","isFeeRecordsExist","isNewPaymentGroup_1","index","isHistoricGroupAvailable","getGroupOutstandingAmount","redirectToFeeSearchPage","router","navigateByUrl","redirectToremissionPage","redirectToReportsPage","loadFeeSummaryPage","goToPaymentViewComponent","selectedUnprocessedFeeEvent","unprocessedRecordId","isUnprocessedRecordSelected","getUnprocessedFeeCount","unProcessedRecordCount","unprocessedRecordCount","calculateAmountDue","confirmRemoveFee","isRemoveBtnDisabled","cancelRemoval","removeFee","success","reload","isCheckAmountdueExist","amountDue","isPBA","loadPBAAccountPage","pbaPayOrderRef","Router","isAddRemissionEnable","orderRemissionDetails","ispaymentGroupApisuccess","isAddRemissionBtnEnabled","isEligible4PBAPayment","currentDate","check4AllowedRoles2AccessPBApayment","PaymentToPayhubRequest","currency","description","provider","toFixed","case_type","PayhubAntennaRequest","BS_ENABLE_FLAG","FeeSummaryComponent","bsPaymentDcnNumber","platForm","features","result","feature","uid","enable","getUnassignedPaymentlist","getPaymentGroup","unassignedPayments","service","responsible_service_id","upPaymentErrorMessage","currentFee","isPaymentExist","isRemissionsExist","totalAfterRemission","isFeeAmountZero","outStandingAmount","loadCaseTransactionPage","partUrl","cancelRemission","page","isConfirmationBtnDisabled","requestBody","antennaReqBody","go","payhubHtml","isBackButtonEnable","goToAllocatePage","Location","ErrorBannerComponent","UnidentifiedPaymentsRequest","payment_reference","unidentified_reason","payment_allocation_status","name","AllocatePaymentRequest","unAllocatedPayment","exceptionRecord","allocatedRequest","banked_date","date_banked","exception_record","document_control_number","dcn_reference","external_provider","giro_slip_no","bgc_reference","payer_name","payment_channel","payment_status","payment_method","payment_allocation_dto","MarkUnidentifiedPaymentComponent","getUnassignedPayment","markPaymentUnidentifiedForm","investicationDetail","unassignedRecord","siteID","beCcdNumber","beExceptionNumber","exceptionReference","ccdReference","trimUnderscore","saveAndContinue","investicationField","formerror","investigationComment","val","isInvesticationDetailEmpty","investicationDetailHasError","investicationDetailMinHasError","investicationDetailMaxHasError","confirmPayments","postStrategicBody","res1","res2","response2","reqBody","res3","gotoCasetransationPage","user_id","res","cancelMarkUnidentifiedPayments","UnsolicitedPaymentsRequest","responsible_office","responsible_person","email_id","receiving_office","receiving_email_address","sending_email_address","MarkUnsolicitedPaymentComponent","siteids","isContinueButtondisabled","siteIDList","scrollTo","markPaymentUnsolicitedForm","responsibleOffice","responsiblePerson","emailId","selectedSiteId","reasonField","officeIdField","reasonHasError","reasonMinHasError","reasonMaxHasError","isResponsibleOfficeEmpty","responsibleOfficeHasError","cancelMarkUnsolicitedPayments","checkingFormValue","setValue","formFields","valueExists","hasOwnProperty","selectchange","target","selectedSiteName","selectedIndex","text","UnprocessedPaymentsComponent","isNewpcipaloff","isOldpcipaloff","isStFixEnable","FEE_RECORDS_EXISTS","setValuesForUnassignedRecord","emit","unassignedRecordList","unassignedRecordListLength","serviceId","isExceptionCase","unprocessedPaymentSelectEvent","formatUnassignedRecordId","ID","recordId","loadUnsolicitedPage","selectedRecordReference","validateButtons","resetButtons","isAllocateToExistingFeebtnEnabled","isMarkAsUnidentifiedbtnEnabled","isAllocatedToNewFeebtnEnabled","PAYMENTREF","IS_OS_AMT_AVAILABLE","unprocessedPaymentUnSelectEvent","showDetailRow","obj","unassignedRecordSelectedList","Output","EventEmitter","isRecordExist","ProcessedPaymentsComponent","redirectToPaymentViewPage","IAllocationPaymentsRequest","explanation","userName","user_name","AllocatePaymentsComponent","overUnderPaymentForm","moreDetails","fstCon","scndCn","selectedPaymentGroup","gotoSummaryPage","cancelAllocatePayment","confirmAllocatePayement","enCookieUserName","cookieUserName","decodeURIComponent","fullName","paymentDetailsField","paymentFormError","userNameField","isEmptyCondtion","paymentReason","paymentExplanation","isOtherOptionSelected","isRemainingAmountGtZero","isRemainingAmountLtZero","otherPaymentExplanation","finalServiceCall","paymentReasonHasError","paymentExplanationHasError","isPaymentDetailsEmpty","isPaymentDetailsInvalid","paymentDetailsMinHasError","paymentDetailsMaxHasError","isUserNameEmpty","isUserNameInvalid","GroupOutstandingAmount","remainingToBeAssigned","isMoreDetailsBoxHide","reset","paymentSectionLabel","feedbackUrlLabel","remainingAmount","afterFeeAllocateOutstanding","amountForAllocation","selectRadioButton","key","OrderListSelectEvent","reasonList","overPayment","hwfReward","wrongFee","notIssueCase","otherDeduction","shortFall","helpWithFee","other","explanationList","referRefund","noRefund","noCase","holdCase","heldCase","refund","duplicate","humanerror","caseWithdrawn","AddRemissionRequest","hwf_reference","AddRetroRemissionRequest","PostRefundRetroRemission","refund_reason","PostIssueRefundRetroRemission","remissionReference","AddRemissionComponent","default","pattern1","pattern2","viewCompStatus","volume","remessionPayment","isPaymentSuccess","option","remissionForm","remissionCode","refundReason","refundDDReason","onlySelf","refundReasons","recently_used","commonRefundReasons","sort","toString","localeCompare","isFromRefundListPage","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","gotoCasetransationPageCancelBtnClicked","getFormattedCurrency","concat","hasErrors","CcdHyphensPipe","transform","match","Pipe","CapitalizePipe","slice","keyValuePipe","keys","SanitizeHtmlPipe","sanitizer","bypassSecurityTrustHtml","DomSanitizer","XlFileService","exportAsExcelFile","json","excelFileName","worksheet","XLSX.utils","json_to_sheet","header","setDataLossReportHeaders","setUnprocessedReportHeaders","setProcessedUnallocatedReportHeaders","setShortFallReportHeaders","autoFitColumns","excelBuffer","XLSX.write","Sheets","SheetNames","bookType","saveAsExcelFile","objectMaxLength","ColWidth","values","j","width","A1","v","B1","C1","D1","E1","F1","G1","H1","I1","J1","K1","L1","M1","N1","buffer","fileName","Blob","FileSaver.saveAs","ReportsComponent","fromValidation","getToday","toISOString","getSelectedFromDate","validateDates","reportsForm","selectedStartDate","tranformDate","selectedEndDate","isDateRangeMoreThanWeek","isDateRangeBetnWeek","isStartDateLesthanEndDate","selectedreport","downloadReport","isDownLoadButtondisabled","dataLossRptDefault","loss_resp","payment_asset_dcn","env_ref","env_item","resp_service_id","resp_service_name","bgc_batch","unProcessedRptDefault","exception_ref","ccd_ref","processedUnallocated","allocation_reason","ccd_exception_ref","ccd_case_ref","updated_by","shortFallsRptDefault","surplus_shortfall","balance","payment_amount","ccd_case_reference","ccd_exception_reference","processed_date","selectedReportName","applyDateFormat","substr","convertToFloatValue","Op","xlFileService","getFileName","loc","stDt","formatDate","enDt","now","timestamp","getTwodigit","getHours","getMinutes","getSeconds","getCamelCaseString","strDate","parts","map","amt","Number","parseFloat","TableComponent","STATUS","toLowerCase","isApprovalFlow","DATASOURCE","dataSource","MatTableDataSource","actualcount","reduce","r","_a","user_full_name","ngAfterViewInit","paginator","cdRef","applyFilter","filterValue","goToRefundProcessComponent","refundDate","refundlistsource","goToRefundViewComponent","refundData","isRefundStatusView","isCallFromRefundList","goToCaseReview","ViewChild","MatPaginator","MatSort","displayedColumns","IResubmitRefundRequest","RefundStatusComponent","refundlist","refundStatusForm","getRefundsStatusHistoryList","isProcessRefund","refundButtonState","refund_status","statusHistoryList","refundStatusHistories","status_history_dto_list","isLastUpdatedByCurrentUser","last_updated_by_current_user","goToRefundView","gotoReviewDetailsPage","gotoReviewAndReSubmitPage","oldRefundReason","changedAmount","refundreason","notes","gotoRefundReasonPage","isRefundBtnDisabled","gotoAmountPage","goToReviewAndSubmitView","getRefundListReason","refundCode","getRefundAmount","gotoReviewRefundConfirmationPage","resubmitRequest","IserviceRequestCardPayment","language","IserviceRequestPbaPayment","account_number","customer_reference","PbaPaymentComponent","isGetPBAAccountSucceed","pbaAccountList","organisationEntityResponse","paymentAccount","selectpbaaccount","currentTarget","selectedPbaAccount","pbaAccountRef","isInSufficiantFund","isPBAAccountNotExist","isPBAServerError","isPBAAccountPaymentSuccess","pbaAccountrPaymentResult","e","cardPayment","isCardPaymentSuccess","paymentUrl","next_url","NgModule","imports","CommonModule","HttpClientModule","FormsModule","ReactiveFormsModule","MatTableModule","MatPaginatorModule","MatSortModule","MatFormFieldModule","MatInputModule","declarations","exports","providers","provide","useClass","PaymentLibModule"],"mappings":"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"}
1
+ {"version":3,"sources":["ng://@hmcts/ccpay-web-component/lib/payment-lib.service.ts","ng://@hmcts/ccpay-web-component/lib/services/orderslist.service.ts","ng://@hmcts/ccpay-web-component/lib/payment-lib.component.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/error-handler.service.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/logger/logger.service.ts","ng://@hmcts/ccpay-web-component/lib/services/payment-list/payment-list.service.ts","ng://@hmcts/ccpay-web-component/lib/components/payment-list/payment-list.component.ts","node_modules/tslib/tslib.es6.js","ng://@hmcts/ccpay-web-component/lib/services/shared/httpclient/webcomponent.http.client.ts","ng://@hmcts/ccpay-web-component/lib/services/payment-view/payment-view.service.ts","ng://@hmcts/ccpay-web-component/lib/components/payment-view/payment-view.component.ts","ng://@hmcts/ccpay-web-component/lib/services/refunds/refunds.service.ts","ng://@hmcts/ccpay-web-component/lib/components/process-refund/process-refund.component.ts","ng://@hmcts/ccpay-web-component/lib/components/refund-list/refund-list.component.ts","ng://@hmcts/ccpay-web-component/lib/services/card-details/card-details.service.ts","ng://@hmcts/ccpay-web-component/lib/components/card-details/card-details.component.ts","ng://@hmcts/ccpay-web-component/lib/components/page-not-found.component.ts","ng://@hmcts/ccpay-web-component/lib/services/status-history/status-history.service.ts","ng://@hmcts/ccpay-web-component/lib/components/status-history/status-history.component.ts","ng://@hmcts/ccpay-web-component/lib/components/contact-details/contact-details.component.ts","ng://@hmcts/ccpay-web-component/lib/components/pba-details/pba-details.component.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/logger/console-logger.service.ts","ng://@hmcts/ccpay-web-component/lib/services/case-transactions/case-transactions.service.ts","ng://@hmcts/ccpay-web-component/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.ts","ng://@hmcts/ccpay-web-component/lib/components/case-transactions/case-transactions.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PaymentToPayhubRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PayhubAntennaRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/fee-summary/fee-summary.component.ts","ng://@hmcts/ccpay-web-component/lib/components/error-banner/error-banner.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/UnidentifiedPaymentsRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/AllocatePaymentRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/UnsolicitedPaymentsRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.ts","ng://@hmcts/ccpay-web-component/lib/components/unprocessed-payments/unprocessed-payments.component.ts","ng://@hmcts/ccpay-web-component/lib/components/processed-payments/processed-payments.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/IAllocationPaymentsRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/allocate-payments/allocate-payments.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/AddRemissionRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/AddRetroRemissionRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PostRefundRetroRemission.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PostIssueRefundRetroRemission.ts","ng://@hmcts/ccpay-web-component/lib/components/add-remission/add-remission.component.ts","ng://@hmcts/ccpay-web-component/lib/pipes/ccd-hyphens.pipe.ts","ng://@hmcts/ccpay-web-component/lib/pipes/capitalize.pipe.ts","ng://@hmcts/ccpay-web-component/lib/pipes/key-value.pipe.ts","ng://@hmcts/ccpay-web-component/lib/pipes/sanitize-html.pipe.ts","ng://@hmcts/ccpay-web-component/lib/services/xl-file/xl-file.service.ts","ng://@hmcts/ccpay-web-component/lib/components/reports/reports.component.ts","ng://@hmcts/ccpay-web-component/lib/components/table/table.component.ts","ng://@hmcts/ccpay-web-component/lib/services/notification/notification.service.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/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\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}\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';\n// import { IPayment } from './interfaces/IPayment';\n\n@Component({\n selector: 'ccpay-payment-lib',\n template: `\n <ccpay-refund-list [USERID]=\"USERID\" [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" [LOGGEDINUSEREMAIL]=\"LOGGEDINUSEREMAIL\" *ngIf=\"viewName === 'refund-list'\"></ccpay-refund-list>\n <ccpay-payment-list *ngIf=\"viewName === 'payment-list'\"></ccpay-payment-list>\n <ccpay-refund-status [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'refundstatuslist'\"> </ccpay-refund-status >\n <ccpay-payment-view [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'payment-view'\"\n [isTurnOff]=\"ISTURNOFF\" [isTakePayment]=\"TAKEPAYMENT\" [caseType]=\"CASETYPE\"\n [isOldPcipalOff]=\"ISOLDPCIPALOFF\"\n [isNewPcipalOff]=\"ISNEWPCIPALOFF\"></ccpay-payment-view>\n\n <ccpay-process-refund *ngIf=\"viewName === 'process-refund'\"\n [refundReference]=\"refundReference\"\n [refundlistsource]=\"refundlistsource\"\n ></ccpay-process-refund>\n\n\n <ccpay-case-transactions [isTakePayment]=\"isTakePayment\" [LOGGEDINUSERROLES]=\"LOGGEDINUSERROLES\" *ngIf=\"viewName === 'case-transactions'\"></ccpay-case-transactions>\n <app-mark-unidentified-payment *ngIf=\"viewName === 'unidentifiedPage'\"\n [caseType]=\"CASETYPE\"></app-mark-unidentified-payment>\n <app-mark-unsolicited-payment *ngIf=\"viewName === 'unsolicitedPage'\"\n [caseType]=\"CASETYPE\"></app-mark-unsolicited-payment>\n <app-allocate-payments *ngIf=\"viewName === 'allocate-payments'\"\n [isTurnOff]=\"ISTURNOFF\"\n [caseType]=\"CASETYPE\"\n ></app-allocate-payments>\n <ccpay-fee-summary *ngIf=\"viewName === 'fee-summary'\"\n [ccdCaseNumber]=\"CCD_CASE_NUMBER\" \n [paymentGroupRef]=\"paymentGroupReference\"\n [isTurnOff]=\"ISTURNOFF\"\n [caseType]=\"CASETYPE\"\n [isOldPcipalOff]=\"ISOLDPCIPALOFF\"\n [isNewPcipalOff]=\"ISNEWPCIPALOFF\"\n ></ccpay-fee-summary>\n <ccpay-reports *ngIf=\"viewName === 'reports'\"></ccpay-reports>\n `\n})\n\nexport class PaymentLibComponent implements OnInit {\n @Input('API_ROOT') API_ROOT: string;\n @Input('BULKSCAN_API_ROOT') BULKSCAN_API_ROOT: string;\n @Input('REFUNDS_API_ROOT') REFUNDS_API_ROOT: string;\n @Input('NOTIFICATION_API_ROOT') NOTIFICATION_API_ROOT: string;\n @Input('CCD_CASE_NUMBER') CCD_CASE_NUMBER: string;\n @Input('EXC_REFERENCE') EXC_REFERENCE: string;\n @Input('PAYMENT_METHOD') PAYMENT_METHOD: string;\n @Input('VIEW') VIEW: string;\n @Input('VIEWSERVICE') VIEWSERVICE: string;\n @Input('PAYMENT_GROUP_REF') PAYMENT_GROUP_REF?: string;\n @Input('TAKEPAYMENT') TAKEPAYMENT: boolean;\n @Input('SERVICEREQUEST') SERVICEREQUEST: string;\n @Input('DCN_NUMBER') DCN_NUMBER: string;\n @Input('SELECTED_OPTION') SELECTED_OPTION: string;\n @Input('ISBSENABLE') ISBSENABLE: Boolean;\n @Input('ISSFENABLE') ISSFENABLE: boolean;\n @Input('ISTURNOFF') ISTURNOFF: boolean;\n @Input('CASETYPE') CASETYPE: string;\n @Input('ISOLDPCIPALOFF') ISOLDPCIPALOFF: boolean;\n @Input('ISNEWPCIPALOFF') ISNEWPCIPALOFF: boolean;\n @Input('rootUrl') rootUrl: boolean;\n @Input('REFUNDLIST') REFUNDLIST: string;\n @Input('USERID') USERID: string;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: any[];\n @Input('LOGGEDINUSEREMAIL') LOGGEDINUSEREMAIL: string;\n @Input('isFromServiceRequestPage') isFromServiceRequestPage: boolean;\n\n paymentMethod: string;\n bspaymentdcn: string;\n unProcessedPaymentServiceId: string = null;\n paymentGroupReference: string;\n paymentReference: string;\n refundReference: string;\n refundlistsource: any;\n viewName: string;\n isTurnOff: boolean;\n caseType: string;\n isOldPcipalOff: boolean;\n isNewPcipalOff: boolean;\n unProcessedPayment: IBSPayments = null;\n isRefundStatusView: boolean;\n isRedirectFromCaseTransactionPage: string;\n isCallFromRefundList: boolean;\n isFromRefundStatusPage: boolean;\n iscancelClicked : boolean;\n isFromPaymentDetailPage: boolean;\n isTakePayment: boolean;\n // pbaPayOrderRef: IPayment;\n // isFromServiceRequestPage: boolean;\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\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 if (!err.error) {\n errorMessage = 'Not found';\n } else {\n errorMessage = err.error;\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 // if (JSON.parse(err.error).statusCode !== undefined && JSON.parse(err.error).statusCode === 500)\n // {\n // errorMessage = 'Internal server error';\n // } else {\n // errorMessage = err.error;\n // }\n if(err.error.length > 60) {\n if (JSON.parse(err.error).statusCode !== undefined && JSON.parse(err.error).statusCode === 500)\n {\n errorMessage = 'Internal server error';\n } else {\n if(err.error.length > 60) {\n errorMessage = JSON.parse(err.error).error;\n } else {\n errorMessage = err.error;\n }\n \n }\n } else {\n errorMessage = err.error;\n }\n } else {\n errorMessage = JSON.parse(err.error).error;\n }\n \n }\n \n } else {\n if (err.error.message !== undefined) {\n errorMessage = `${err.error.message}`;\n } else {\n errorMessage = `${err.error}`;\n }\n \n }\n }\n return _throw(errorMessage);\n }\n\n\n getServerErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","import { Injectable } from '@angular/core';\n\nconst noop = (): any => undefined;\n\nexport abstract class Logger {\n\n info: any;\n warn: any;\n error: any;\n}\n\n@Injectable({\n providedIn: 'root'\n})\nexport class LoggerService implements Logger {\n\n info: any;\n warn: any;\n error: any;\n\n invokeConsoleMethod(type: string, args?: any): void {}\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\n\nimport { Observable } from 'rxjs/internal/Observable';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { IPayments } from '../../interfaces/IPayments';\nimport { catchError } from 'rxjs/operators';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PaymentListService {\n payments: IPayments;\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n\n getPaymentByCcdCaseNumber(ccdCaseNumber: string, paymentMethod: string): Observable<IPayments> {\n this.logger.info('Payment-list-service getPaymentByCcdCaseNumber for: ', ccdCaseNumber);\n\n return this.http.get<IPayments>(`${this.paymentLibService.API_ROOT}/cases/${ccdCaseNumber}/payments`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import {Component, OnInit} from '@angular/core';\n\nimport {PaymentListService} from '../../services/payment-list/payment-list.service';\nimport {IPayments} from '../../interfaces/IPayments';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport {IStatusHistory} from '../../interfaces/IStatusHistory';\n\n@Component({\n selector: 'ccpay-payment-list',\n templateUrl: './payment-list.component.html',\n styleUrls: ['./payment-list.component.css']\n})\nexport class PaymentListComponent implements OnInit {\n payments: IPayments;\n errorMessage: string;\n code: string;\n\n constructor(private paymentListService: PaymentListService,\n private paymentLibComponent: PaymentLibComponent) {\n }\n\n ngOnInit() {\n this.paymentListService.getPaymentByCcdCaseNumber(this.paymentLibComponent.CCD_CASE_NUMBER, this.paymentLibComponent.PAYMENT_METHOD)\n .subscribe(\n payments => this.payments = payments,\n (error: any) => this.errorMessage = <any>error\n );\n }\n\n loadPaymentViewComponent(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.paymentLibComponent.paymentMethod = paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n}\n","/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Meta } from '@angular/platform-browser';\nimport { Observable } from 'rxjs';\n\n@Injectable()\nexport class WebComponentHttpClient {\n constructor(\n private http: HttpClient,\n private meta: Meta\n ) { }\n\n post(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.post(url, body, opts);\n }\n\n put(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.put(url, body, opts);\n }\n\n get(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.get(url, opts);\n }\n\n delete(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.delete(url, opts);\n }\n \n patch(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.patch(url, body, opts);\n }\n\n addHeaders(options: any): any {\n const csrfToken = this.meta.getTag('name=csrf-token');\n const headers = {};\n \n if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n if (csrfToken === null) {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith(' XSRF-TOKEN')).split('=')[1];\n } else {\n headers['CSRF-Token'] = csrfToken.content;\n }\n options.headers = new HttpHeaders(headers);\n options.responseType = 'text';\n return options;\n }\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Observable } from 'rxjs/internal/Observable';\n\nimport {IPayment} from '../../interfaces/IPayment';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { catchError } from 'rxjs/operators';\nimport { LoggerService } from '../shared/logger/logger.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { PayhubAntennaRequest } from '../../interfaces/PayhubAntennaRequest';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { Meta } from '@angular/platform-browser';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { IAllocationPaymentsRequest } from '../../interfaces/IAllocationPaymentsRequest';\nimport {IOrderReferenceFee} from '../../interfaces/IOrderReferenceFee';\nimport { BehaviorSubject } from 'rxjs';\nimport { RefundsRequest } from '../../interfaces/RefundsRequest';\nimport { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\nimport { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';\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\n postBSPayments(body: AllocatePaymentRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/bulk-scan-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSUnidentifiedPayments(body: UnidentifiedPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSUnsolicitedPayments(body: UnsolicitedPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSAllocationPayments(body: IAllocationPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postPaymentGroupWithRemissions(paymentGroupReference: string, feeId: number, body: AddRemissionRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}/fees/${feeId}/remissions`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n deleteFeeFromPaymentGroup(feeId: number): Observable<any> {\n this.logger.info('Payment-view-service deleteFeeFromPaymentGroup for: ', feeId);\n return this.https.delete(`${this.paymentLibService.API_ROOT}/fees/${feeId}`).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postPaymentToPayHub(body: PaymentToPayhubRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/card-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postPaymentAntennaToPayHub(body: PayhubAntennaRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/telephony-card-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n downloadSelectedReport(reportName: string, startDate: string, endDate:string): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/report/data?date_from=${startDate}&date_to=${endDate}&report_type=${reportName}`;\n return this.https.get(url, { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getBSfeature(): Observable<any> {\n return this.https.get('api/payment-history/bulk-scan-feature', { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getSiteID(): Observable<any> {\n return this.https.get('api/payment-history/refdata/legacy-sites', { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getPartyDetails(caseNumber: string): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/case-payment-orders?case_ids=${caseNumber}`;\n return this.https.get(url, { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n \n setOrdersList(orderLevelFees: IOrderReferenceFee[]): void {\n this.ordersList.next(Object.assign([], orderLevelFees));\n}\n getOrdersList() {\n return this.ordersList;\n }\n\n //issue refund\n postRefundsReason(body: PostRefundRetroRemission): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/refund-for-payment`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n // retro remissions\n postPaymentGroupWithRetroRemissions(paymentGroupReference: string, feeId: number, body: AddRetroRemissionRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}/fees/${feeId}/retro-remission`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postRefundRetroRemission(body:PostIssueRefundRetroRemission) {\n return this.https.post(`${this.paymentLibService.API_ROOT}/refund-retro-remission`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\nimport { ChangeDetectorRef } from '@angular/core';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-payment-view',\n templateUrl: './payment-view.component.html',\n styleUrls: ['./payment-view.component.css']\n})\nexport class PaymentViewComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() isTakePayment: boolean;\n @Input() caseType: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() isOldPcipalOff: boolean;\n @Input() orderRef: string;\n @Input() orderStatus: string;\n @Input() orderTotalPayments: number;\n @Input() payment: IPayment;\n @Input() LOGGEDINUSERROLES: string[];\n @Input() orderParty: string;\n @Input() orderCreated: Date;\n @Input() orderCCDEvent: string;\n @Input() orderFeesTotal: number;\n @Input() orderRemissionTotal: number;\n @Input() orderDetail: any[];\n\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n ccdCaseNumber: string;\n selectedOption: string;\n dcnNumber: string;\n isStatusAllocated: boolean;\n isRemissionsMatch: boolean;\n feeId: IFee;\n viewStatus: string;\n isRefundRemission: boolean = false;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n remissions: IRemission[] = [];\n remissionFeeAmt: number;\n isRefundRemissionBtnEnable: boolean;\n serviceReference: string;\n isFromServiceRequestPage: boolean;\n isFromPaymentDetailPage: boolean;\n\n constructor(private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) {\n }\n\n ngAfterContentChecked(): void {\n this.cd.detectChanges();\n } \n\n ngOnInit() {\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION;\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.serviceReference = this.paymentLibComponent.paymentGroupReference;\n this.viewStatus = 'paymentview';\n this.paymentViewService.getApportionPaymentDetails(this.paymentLibComponent.paymentReference).subscribe(\n paymentGroup => {\n let fees = [];\n paymentGroup.fees.forEach(fee => {\n this.isRemissionsMatch = false;\n\n paymentGroup.remissions.forEach(rem => {\n if (rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n if (!this.isRemissionsMatch) {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n console.log(this.paymentGroup.payments[0] + '1');\n },\n (error: any) => this.errorMessage = error\n );\n\n }\n\n get isCardPayment(): boolean {\n return this.paymentGroup.payments[0].method === 'card';\n }\n\n get isTelephonyPayment(): boolean {\n return this.paymentGroup.payments[0].channel === 'telephony';\n }\n\n public goToPaymentList(): void {\n this.paymentLibComponent.viewName = 'payment-list';\n }\n\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n\n if (!this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.resetOrderData();\n } else {\n this.OrderslistService.getorderRefs().subscribe((data) => this.orderRef = data);\n this.OrderslistService.getorderCCDEvents().subscribe((data) => this.orderCCDEvent = data);\n this.OrderslistService.getorderCreateds().subscribe((data) => this.orderCreated = data);\n this.OrderslistService.getorderDetail().subscribe((data) => this.orderDetail = data);\n this.OrderslistService.getorderPartys().subscribe((data) => this.orderParty = data);\n this.OrderslistService.getorderRemissionTotals().subscribe((data) => this.orderRemissionTotal = data);\n this.OrderslistService.getorderFeesTotals().subscribe((data) => this.orderFeesTotal = data);\n this.OrderslistService.getoorderTotalPaymentss().subscribe((data) => this.orderTotalPayments = data);\n this.viewStatus = 'order-full-view';\n }\n \n }\n\n addRemission(fee: IFee) {\n if(this.chkForAddRemission(fee.code)) {\n this.feeId = fee;\n this.paymentViewService.getApportionPaymentDetails(this.paymentGroup.payments[0].reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n this.paymentLibComponent.isFromPaymentDetailPage = true;\n this.viewStatus = 'addremission';\n this.isRefundRemission = true;\n this.cd.detectChanges();\n },\n (error: any) => this.errorMessage = error\n );\n }\n }\n\n checkForFees(paymentGroup: any) {\n if(paymentGroup !== null && paymentGroup !== undefined)\n {\n if (paymentGroup.fees !== null && paymentGroup.fees !== undefined) {\n return true;\n }\n \n }\n return false;\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n if(this.chkIsRefundRemissionBtnEnable()) {\n this.payment = payment;\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.payment.reference));\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n this.viewStatus = 'addrefundforremission';\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n if (this.paymentGroup !== null && this.paymentGroup !== undefined) {\n this.paymentGroup.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n issueRefund(paymentgrp: IPaymentGroup) {\n if (paymentgrp !== null && paymentgrp !== undefined) {\n if(this.chkIssueRefundBtnEnable(paymentgrp.payments[0])) {\n this.paymentGroup = paymentgrp;\n this.viewStatus = 'issuerefund';\n this.isRefundRemission = true;\n this.paymentLibComponent.isFromPaymentDetailPage = true;\n this.isFromPaymentDetailPage = true;\n this.isFromServiceRequestPage = this.paymentLibComponent.isFromServiceRequestPage;\n }\n }\n }\n\n getRemissionByFeeCode(feeCode: string, remissions: IRemission[]): IRemission {\n if (remissions && remissions.length > 0) {\n for (const remission of remissions) {\n if (remission.fee_code === feeCode) {\n return remission;\n }\n }\n }\n return null;\n }\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n this.isIssueRefunfBtnEnable = true;\n }\n if (this.isIssueRefunfBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n\n chkForPBAPayment(): boolean {\n if (this.paymentGroup !== null && this.paymentGroup !== undefined) {\n let payment = this.paymentGroup.payments[0];\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n return true;\n }\n return false;\n }\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(this.paymentGroup.payments[0])) {\n if (this.paymentGroup.remissions && this.paymentGroup.remissions.length > 0) {\n for (const remission of this.paymentGroup.remissions) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n return true;\n }\n return true;\n\n } else {\n return false;\n }\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n if(payment !== null && payment !== undefined) {\n let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\n }\n }\n\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n}","import { Injectable } from '@angular/core';\nimport {HttpClient, HttpHeaders} from '@angular/common/http';\nimport { Meta } from '@angular/platform-browser';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {catchError} from 'rxjs/operators';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { IPatchRefundAction } from '../../interfaces/IPatchRefundAction';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { IssueRefundRequest } from '../../interfaces/IssueRefundRequest';\nimport { IResubmitRefundRequest } from '../../interfaces/IResubmitRefundRequest';\nimport { IRefundStatusHistory } from '../../interfaces/IRefundStatusHistory';\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 headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith(' XSRF-TOKEN')).split('=')[1];\n } else {\n headers['CSRF-Token'] = csrfToken.content;\n }\n options.headers = new HttpHeaders(headers);\n options.responseType = 'text';\n return options;\n}\n}\n","import {Component, OnInit, Input} from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport {RefundsService} from '../../services/refunds/refunds.service';\nimport { IRefundAction } from '../../interfaces/IRefundAction';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { IRefundRejectReason } from '../../interfaces/IRefundRejectReason';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { 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 cpoDetails:any = null;\n isCPODown: boolean;\n isConfirmButtondisabled: boolean = true;\n constructor(private RefundsService: RefundsService,\n private paymentViewService: PaymentViewService,\n private formBuilder: FormBuilder,\n private OrderslistService: OrderslistService,\n private paymentLibComponent: PaymentLibComponent,\n private router: Router,\n private activeRoute: ActivatedRoute) {\n }\n\n ngOnInit() {\n this.viewStatus = 'RefundProcess';\n this.RefundsService.getRefundActions(this.refundReference).subscribe(\n refundActionList => {\n this.refundActionList = <any>refundActionList;\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err, err);\n }\n );\n this.processRefundForm = this.formBuilder.group({\n refundActionField: new FormControl('', Validators.compose([\n Validators.required\n ])),\n refundRejectReasonField: new FormControl('', Validators.compose([\n Validators.required\n ])),\n sendMeBackField: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$'),\n\n ])),\n enterReasonField: new FormControl('', Validators.compose([\n Validators.required,\n Validators.maxLength(30),\n Validators.pattern('^([a-zA-Z0-9.\\\\s]*)$'),\n ])),\n });\n this.ccdCaseNumber = this.refundlistsource.ccd_case_number;\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).content[0];\n\n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.isCPODown = true;\n }\n );\n }\n \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, OnInit, Output, EventEmitter, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\n\n@Component({\n selector: 'ccpay-contact-details',\n templateUrl: './contact-details.component.html',\n styleUrls: ['./contact-details.component.css']\n})\nexport class ContactDetailsComponent implements OnInit {\n @Input('isEditOperation') isEditOperation: boolean;\n @Input('addressObj') addressObj: any;\n @Output() assignContactDetails: EventEmitter<any> = new EventEmitter();\n @Output() redirectToIssueRefund: EventEmitter<any> = new EventEmitter();\n pageTitle: string = 'Payment status history';\n errorMessage: string;\n isEmailSAddressClicked: boolean = true;\n isPostcodeClicked: boolean = false;\n isManualAddressClicked: boolean = false;\n emailAddressForm: FormGroup;\n postCodeForm: FormGroup;\n manualAddressForm: FormGroup;\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 paymentLibComponent: PaymentLibComponent) { }\n\n ngOnInit() {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,false,false,false], 'all');\n\n this.emailAddressForm = this.formBuilder.group({\n email: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[a-z0-9._%+-]+@[a-z0-9-]+\\\\.[a-z]{2,4}$')\n ]))\n });\n this.postCodeForm = this.formBuilder.group({\n postcode: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([A-Z]{1,2}[0-9]{1,2}[A-Z]{0,1} ?[0-9][A-Z]{2})')\n ]))\n });\n this.manualAddressForm = this.formBuilder.group({\n addressl1: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[a-zA-Z0-9\\\\s,\\'-]*$')\n ])),\n addressl2: new FormControl('', Validators.compose([\n Validators.pattern('^[a-zA-Z0-9\\\\s,\\'-]*$')\n ])),\n townorcity: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[a-zA-Z0-9\\\\s,\\'-]*$')\n ])),\n county: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[a-zA-Z0-9\\\\s,\\'-]*$')\n ])),\n mpostcode: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([A-Z]{1,2}[0-9]{1,2}[A-Z]{0,1} ?[0-9][A-Z]{2})')\n ])),\n country: new FormControl('', Validators.compose([\n Validators.required\n ]))\n });\n if(this.addressObj !== undefined && this.addressObj !== '') {\n this.setEditDetails();\n }\n }\n setEditDetails() {\n if(this.addressObj.notification_type === 'EMAIL') {\n this.isEmailSAddressClicked = true;\n this.isPostcodeClicked = false;\n this.isManualAddressClicked = false;\n this.emailAddressForm.setValue({ email: this.addressObj.contact_details.email });\n } else if(this.addressObj.notification_type === 'LETTER') {\n this.isEmailSAddressClicked = false;\n this.isPostcodeClicked = true;\n this.isManualAddressClicked = true;\n this.manualAddressForm.patchValue({ \n addressl1: this.addressObj.contact_details.address_line,\n townorcity: this.addressObj.contact_details.city,\n county: this.addressObj.contact_details.county,\n country: this.addressObj.contact_details.country,\n mpostcode: this.addressObj.contact_details.postal_code\n });\n }\n }\n\n selectContactOption(type, isLinkedClied) {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,false,false,false,false], 'all');\n if( type === 'Email' && isLinkedClied === 'false'){\n this.isEmailSAddressClicked = true;\n this.isPostcodeClicked = false;\n this.isManualAddressClicked = false;\n } else if(type === 'Postcode' && isLinkedClied === 'false') {\n this.isEmailSAddressClicked = false;\n this.isPostcodeClicked = true;\n this.isManualAddressClicked = false;\n } else if(type === 'Postcode' && isLinkedClied === 'true') {\n this.isEmailSAddressClicked = false;\n this.isPostcodeClicked = true;\n this.isManualAddressClicked = true;\n\n }\n }\n\n finalFormSubmit() {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,false,false,false,false], 'all');\n if( this.isEmailSAddressClicked ){\n const emailField = this.emailAddressForm.controls.email;\n if (this.emailAddressForm.dirty && this.emailAddressForm.valid) {\n this.assignContactDetails.emit( {\n email: emailField.value,\n notification_type: 'EMAIL'\n } );\n } else {\n if( emailField.value == '' ) {\n this.resetForm([true,false,false,false,false,false,false,false,false,false,false,false,false,false], 'email');\n }\n if(emailField.value != '' && emailField.invalid ) {\n this.resetForm([false,true,false,false,false,false,false,false,false,false,false,false,false,false], 'email');\n }\n }\n } else if( this.isPostcodeClicked && !this.isManualAddressClicked ) {\n this.postcodeValidation();\n } else if(this.isPostcodeClicked && this.isManualAddressClicked) {\n const fieldCtrls = this.manualAddressForm.controls;\n if (this.manualAddressForm.dirty && this.manualAddressForm.valid) {\n this.assignContactDetails.emit({\n address_line: fieldCtrls.addressl1.value+' '+fieldCtrls.addressl2.value,\n city: fieldCtrls.townorcity.value,\n county: fieldCtrls.county.value,\n postal_code: fieldCtrls.mpostcode.value,\n country: fieldCtrls.country.value,\n notification_type: 'LETTER'\n });\n } else {\n if( fieldCtrls.addressl1.value == '' ) {\n this.resetForm([false,false,false,false,true,false,false,false,false,false,false,false,false,false], 'address1');\n }\n if(fieldCtrls.addressl1.value != '' && fieldCtrls.addressl1.invalid ) {\n this.resetForm([false,false,false,false,false,true,false,false,false,false,false,false,false,false], 'address1');\n }\n if(fieldCtrls.addressl2.value != '' && fieldCtrls.addressl2.invalid ) {\n this.resetForm([false,false,false,false,false,false,true,false,false,false,false,false,false,false], 'address2');\n }\n if( fieldCtrls.townorcity.value == '' ) {\n this.resetForm([false,false,false,false,false,false,false,true,false,false,false,false,false,false], 'town');\n }\n if(fieldCtrls.townorcity.value != '' && fieldCtrls.townorcity.invalid ) {\n this.resetForm([false,false,false,false,false,false,false,false,true,false,false,false,false,false], 'town');\n }\n if( fieldCtrls.county.value == '' ) {\n this.resetForm([false,false,false,false,false,false,false,false,false,true,false,false,false,false], 'county');\n }\n if(fieldCtrls.county.value != '' && fieldCtrls.county.invalid ) {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,true,false,false,false], 'county');\n }\n if( fieldCtrls.mpostcode.value == '' ) {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,true,false,false], 'mpostcode');\n }\n if(fieldCtrls.mpostcode.value != '' && fieldCtrls.mpostcode.invalid ) {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,false,true,false], 'mpostcode');\n }\n if( fieldCtrls.country.value == '' ) {\n this.resetForm([false,false,false,false,false,false,false,false,false,false,false,false,false,true], 'country');\n }\n }\n\n }\n\n }\n postcodeValidation() {\n const postcodeField = this.postCodeForm.controls.postcode;\n if (this.postCodeForm.dirty && this.postCodeForm.valid) {\n this.assignContactDetails.emit({});\n } else {\n if( postcodeField.value == '' ) {\n this.resetForm([false,false,true,false,false,false,false,false,false,false,false,false,false], 'postcode');\n }\n if(postcodeField.value != '' && postcodeField.invalid ) {\n this.resetForm([false,false,false,true,false,false,false,false,false,false,false,false,false], 'postcode');\n }\n }\n }\n redirection(event:any) {\n this.redirectToIssueRefund.emit(event);\n }\n resetForm(val, field) {\n if(field==='email' || field==='all') {\n this.isEmailEmpty = val[0];\n this.emailHasError = val[1];\n }\n if(field==='postcode' || field==='all') {\n this.isPostcodeEmpty = val[2];\n this.postcodeHasError = val[3];\n }\n if(field==='address1' || field==='all') {\n this.isaddressLine1Empty = val[4];\n this.addressLine1HasError = val[5];\n }\n if(field==='address2' || field==='all') {\n this.addressLine2HasError = val[6];\n }\n if(field==='town' || field==='all') {\n this.isTownOrCityEmpty = val[7];\n this.townOrCityHasError = val[8];\n }\n if(field==='county' || field==='all') {\n this.isCountyEmpty = val[9];\n this.countyHasError = val[10];\n }\n if(field==='mpostcode' || field==='all') {\n this.isMPostcodeEmpty = val[11];\n this.mpostcodeHasError = val[12];\n }\n if(field==='country' || field==='all') {\n this.isCountryEmpty = val[13];\n }\n \n }\n}\n","import { Component, Input, OnInit } from '@angular/core';\nimport { IPayment } from '../../interfaces/IPayment';\n\n@Component({\n selector: 'ccpay-pba-details',\n templateUrl: './pba-details.component.html',\n styleUrls: ['./pba-details.component.css']\n})\nexport class PbaDetailsComponent implements OnInit {\n @Input() payment: IPayment;\n\n constructor() { }\n\n ngOnInit() {\n }\n\n}\n","import { Injectable } from '@angular/core';\nimport { Logger } from './logger.service';\n\nexport let isDebugMode = false;\n\nconst noop = (): any => undefined;\n\n@Injectable({\n providedIn: 'root'\n})\nexport class ConsoleLoggerService implements Logger {\n\n get info() {\n if (isDebugMode) {\n return console.info.bind(console);\n } else {\n return noop;\n }\n }\n\n get warn() {\n if (isDebugMode) {\n return console.warn.bind(console);\n } else {\n return noop;\n }\n }\n\n get error() {\n if (isDebugMode) {\n return console.error.bind(console);\n } else {\n return noop;\n }\n }\n\n invokeConsoleMethod(type: string, args?: any): void {\n const logFn: Function = (console)[type] || console.log || noop;\n logFn.apply(console, [args]);\n }\n}\n","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {LoggerService} from '../shared/logger/logger.service';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport {catchError} from 'rxjs/operators';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class CaseTransactionsService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService\n ) { }\n\n getPaymentGroups(ccdCaseNumber: string): Observable<IPaymentGroup[]> {\n this.logger.info('Case-transactions-service getPaymentGroups for: ', ccdCaseNumber);\n\n return this.http.get<IPaymentGroup[]>(`${this.paymentLibService.API_ROOT}/cases/${ccdCaseNumber}/paymentgroups`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {catchError} from 'rxjs/operators';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class BulkScaningPaymentService {\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService\n ) { }\n\n getBSPaymentsByCCD(ccdCaseNumber: string): Observable<IBSPayments> {\n return this.http.get<IBSPayments>(`${this.paymentLibService.BULKSCAN_API_ROOT}/cases/${ccdCaseNumber}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getBSPaymentsByDCN(dcn: string): Observable<IBSPayments> {\n return this.http.get<IBSPayments>(`${this.paymentLibService.BULKSCAN_API_ROOT}/cases?document_control_number=${dcn}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSAllocatePayment(body: AllocatePaymentRequest, paymentRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentRef}/bulk-scan-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSPaymentStrategic(body: AllocatePaymentRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/bulk-scan-payments-strategic`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSWoPGStrategic(body: AllocatePaymentRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/bulk-scan-payments-strategic`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n patchBSChangeStatus(dcnNumber: string, status: string): Observable<any> {\n return this.https.patch(`${this.paymentLibService.API_ROOT}/bulk-scan-payments/${dcnNumber}/status/${status}`, status).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n calculateOutStandingAmount(paymentGroup: IPaymentGroup): number {\n let feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00;\n\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n });\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n } \n return (feesTotal - remissionsTotal) - paymentsTotal;\n }\n\n removeUnwantedString(input: string, replaceText: string) {\n const pattern = /[\\_]/gi;\n return input.replace(pattern, replaceText);\n }\n\n downloadSelectedReport(reportName: string, startDate: string, endDate:string): Observable<any> {\n return this.https.get(`${this.paymentLibService.BULKSCAN_API_ROOT}/report/data?date_from=${startDate}&date_to=${endDate}&report_type=${reportName}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { CaseTransactionsService } from '../../services/case-transactions/case-transactions.service';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IPaymentView } from '../../interfaces/IPaymentView';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { Router } from '@angular/router';\nimport { ServiceRequestComponent } from '../../components/service-request/service-request.component';\n// import * as ls from \"local-storage\";\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-case-transactions',\n templateUrl: './case-transactions.component.html',\n styleUrls: ['./case-transactions.component.css']\n})\nexport class CaseTransactionsComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input() isTakePayment: boolean;\n takePayment: boolean;\n servicerequest: string;\n ccdCaseNumber: string;\n excReference: string;\n paymentGroups: any[] = [];\n payments: IPayment[] = [];\n nonPayments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n fees: IFee[] = [];\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalNonOffPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n paymentRef: string;\n isTurnOff: boolean;\n isNewPcipalOff: boolean;\n isRefundRemission: boolean = true;\n isOldPcipalOff: boolean;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = true;\n isExceptionRecord: boolean = false;\n isUnprocessedRecordSelected: boolean = false;\n exceptionRecordReference: string;\n isAnyFeeGroupAvilable: boolean = true;\n isHistoricGroupAvailable: boolean = false;\n isBulkScanEnable;\n isRemissionsMatch: boolean;\n viewStatus = 'main';\n isRemoveBtnDisabled: boolean = false;\n feeId: IFee;\n clAmountDue: number = 0;\n unprocessedRecordCount: number;\n isFeeRecordsExist: boolean = false;\n isGrpOutstandingAmtPositive: boolean = false;\n totalRefundAmount: Number;\n caseType: String;\n // lsCcdNumber: any = ls.get<any>('ccdNumber');\n payment: IPayment;\n paymentGroup: IPaymentGroup;\n paymentView: IPaymentView;\n\n //Order changes\n orderDetail: any[] = [];\n\n isAddRemissionEnable: boolean = false;\n orderRemissionDetails: any[] = [];\n orderLevelFees: IOrderReferenceFee[] = [];\n 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 isFromServiceRequestPage: boolean;\n navigationpage: string;\n remissionFeeAmt: number;\n constructor(private router: Router,\n private paymentViewService: PaymentViewService,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private caseTransactionsService: CaseTransactionsService,\n private paymentLibComponent: PaymentLibComponent,\n private OrderslistService: OrderslistService\n ) { }\n\n ngOnInit() {\n this.navigationpage = '';\n if(this.OrderslistService.getpaymentPageView() !== null) {\n this.OrderslistService.getpaymentPageView().subscribe((data) => this.paymentView = data);\n }\n if((this.LOGGEDINUSERROLES === undefined || this.LOGGEDINUSERROLES.length === 0 )&&this.OrderslistService.getUserRolesList() !== null) {\n this.OrderslistService.getUserRolesList().subscribe((data) => this.LOGGEDINUSERROLES = data);\n }\n if(this.OrderslistService.getnavigationPageValue() !== null) {\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n }\n \n \n if (this.paymentView !== undefined && this.paymentView !== null && this.paymentView.payment_group_reference !== undefined && this.navigationpage === 'paymentdetailspage') {\n this.goToPayementView(this.paymentView.payment_group_reference, this.paymentView.reference, this.paymentView.method);\n }\n this.isGrpOutstandingAmtPositive = false;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.caseType = this.paymentLibComponent.CASETYPE;\n if (this.paymentLibComponent.CCD_CASE_NUMBER === '') {\n this.ccdCaseNumber = this.paymentLibComponent.EXC_REFERENCE;\n }\n this.excReference = this.paymentLibComponent.EXC_REFERENCE;\n this.takePayment = this.paymentLibComponent.TAKEPAYMENT;\n\n this.servicerequest = this.paymentLibComponent.SERVICEREQUEST;\n if (this.paymentLibComponent.SERVICEREQUEST === 'true') {\n this.serviceRequestValue = 'true';\n } else {\n this.serviceRequestValue = 'false';\n }\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isNewPcipalOff = this.paymentLibComponent.ISNEWPCIPALOFF;\n this.isOldPcipalOff = this.paymentLibComponent.ISOLDPCIPALOFF;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n if (!this.isTurnOff) {\n // if (this.lsCcdNumber !== this.ccdCaseNumber) {\n // this.router.navigateByUrl(`/ccd-search?takePayment=true`);\n // }\n\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.isAnyFeeGroupAvilable =true;\n this.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts();\n this.calculateOrderFeesAmounts();\n this.calculateRefundAmount();\n if (this.isFromServiceRequestPage) {\n this.OrderslistService.getSelectedOrderRefId().subscribe((data) => this.orderRef = data);\n this.goToOrderViewDetailSection(this.orderRef);\n } else {\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).content[0];\n \n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.isCPODown = true;\n }\n );\n \n }\n\n \n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n } else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.isAnyFeeGroupAvilable =true;\n this.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts();\n this.calculateOrderFeesAmounts();\n this.totalRefundAmount = this.calculateRefundAmount();\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).content[0];\n\n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.setDefaults();\n this.isCPODown = true;\n }\n );\n\n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n }\n\n if( this.paymentGroups !== undefined) {\n this.checkForExceptionRecord();\n }\n \n if(this.OrderslistService.getisFromServiceRequestPages() !== null) {\n this.OrderslistService.getisFromServiceRequestPages().subscribe((data) => this.isFromServiceRequestPage = data);\n }\n \n }\n\n setDefaults(): void {\n this.totalPayments = 0.00;\n this.totalRemissions = 0.00;\n this.totalNonOffPayments = 0.00;\n this.totalFees = 0.00;\n }\n\n getAllocationStatus(payments: any) {\n\n let paymentAllocation = payments.payment_allocation,\n isAllocationStatusExist = paymentAllocation.length > 0;\n return isAllocationStatusExist ? paymentAllocation[0].allocation_status : '-';\n //return \"-\";\n\n }\n\n checkForExceptionRecord(): void {\n \n if (this.paymentGroups.length === 0 && (this.selectedOption.toLocaleLowerCase() === 'ccdorexception' || this.selectedOption.toLocaleLowerCase() === 'rc')) {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n recordData => {\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length > 0 && recordData['data'].ccd_reference > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length > 0 && recordData['data'].ccd_reference === undefined) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n }\n\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length === undefined && recordData['data'].ccd_reference > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n });\n }\n\n if (this.paymentGroups.length === 0 && this.selectedOption.toLocaleLowerCase() === 'dcn') {\n if (this.paymentLibComponent.CCD_CASE_NUMBER.length > 0 && this.paymentLibComponent.EXC_REFERENCE.length > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n } else if (this.paymentLibComponent.CCD_CASE_NUMBER.length === 0 && this.paymentLibComponent.EXC_REFERENCE.length > 0) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n } else {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n }\n if (this.paymentGroups.length > 0)\n this.paymentGroups.forEach(paymentGroup => {\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.case_reference !== undefined && payment.ccd_case_number === undefined) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n } else {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n\n });\n }\n });\n }\n\n calculateOrderFeesAmounts(): void {\n let feesTotal = 0.00;\n this.paymentGroups.forEach(paymentGroup => {\n this.resetOrderVariables();\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.orderFeesTotal = this.orderFeesTotal + fee.calculated_amount\n }\n )\n }\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n this.orderRemissionTotal = this.orderRemissionTotal + remission.hwf_amount;\n });\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n this.orderTotalPayments = this.orderTotalPayments + payment.amount;\n }\n });\n }\n\n this.orderPendingPayments = (this.orderFeesTotal - this.orderRemissionTotal) - this.orderTotalPayments;\n if (this.orderPendingPayments <= 0.00) {\n this.orderStatus = 'Paid';\n this.orderAddBtnEnable = false;\n } else if (this.orderFeesTotal > 0 && (this.orderTotalPayments > 0 || this.orderRemissionTotal > 0) && (this.orderTotalPayments < this.orderPendingPayments)) {\n this.orderStatus = 'Partially paid'\n this.orderAddBtnEnable = true;\n } else {\n this.orderStatus = 'Not paid'\n this.orderAddBtnEnable = true;\n }\n\n //this.orderLevelFees.push({orderRefId:paymentGroup['payment_group_reference'],orderTotalFees: this.orderFeesTotal,orderStatus: this.orderStatus,orderParty:'Santosh', orderCCDEvent:'Case Creation',orderCreated: new Date(), orderAddBtnEnable: this.orderAddBtnEnable}); this.cpoDetails['createdTimestamp']\n if (this.cpoDetails !== null) {\n this.orderLevelFees.push({ orderRefId: paymentGroup['payment_group_reference'], orderTotalFees: this.orderFeesTotal, orderStatus: this.orderStatus, orderParty: this.cpoDetails['responsibleParty'], orderCCDEvent: this.cpoDetails['action'], orderCreated: paymentGroup['date_created'], orderAddBtnEnable: this.orderAddBtnEnable });\n\n } else {\n this.orderLevelFees.push({ orderRefId: paymentGroup['payment_group_reference'], orderTotalFees: this.orderFeesTotal, orderStatus: this.orderStatus, orderParty: '', orderCCDEvent: '', orderCreated: paymentGroup['date_created'], orderAddBtnEnable: this.orderAddBtnEnable });\n }\n\n if (this.orderStatus !== 'Paid') {\n this.OrderslistService.setOrdersList(this.orderLevelFees);\n }\n });\n };\n\n resetOrderVariables(): void {\n this.orderFeesTotal = 0.00;\n this.orderTotalPayments = 0.00;\n this.orderRemissionTotal = 0.00;\n this.orderPendingPayments = 0.00;\n this.isAddFeeBtnEnabled = true;\n\n };\n\n goToOrderViewDetailSection(orderReferenceObj: any) {\n if (this.isFromServiceRequestPage) {\n this.OrderslistService.setOrderRefId(orderReferenceObj);\n this.orderRef = orderReferenceObj;\n } else {\n this.OrderslistService.setOrderRefId(orderReferenceObj.orderRefId);\n this.orderRef = orderReferenceObj.orderRefId;\n }\n\n this.orderFeesTotal = 0.00;\n this.orderRemissionTotal = 0.00;\n this.orderTotalPayments = 0.00;\n this.orderPendingPayments = 0.00;\n\n this.orderDetail = this.paymentGroups.filter(x => x.payment_group_reference === this.orderRef);\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.fees) {\n orderDetail.fees.forEach(fee => {\n this.orderFeesTotal = this.orderFeesTotal + fee.calculated_amount;\n });\n }\n if (orderDetail.remissions) {\n orderDetail.remissions.forEach(remission => {\n this.orderRemissionTotal = this.orderRemissionTotal + remission.hwf_amount;\n });\n if (orderDetail.payments) {\n this.payment = orderDetail.payments[0];\n orderDetail.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n this.orderTotalPayments = this.orderTotalPayments + payment.amount;\n }\n });\n }\n }\n });\n this.orderPendingPayments = (this.orderFeesTotal - this.orderRemissionTotal) - this.orderTotalPayments;\n // this.orderRef = orderReferenceObj.orderRefId;\n if (this.orderPendingPayments <= 0.00) {\n this.orderStatus = 'Paid';\n } else if (this.orderFeesTotal > 0 && (this.orderTotalPayments > 0 || this.orderRemissionTotal > 0) && (this.orderTotalPayments < this.orderPendingPayments)) {\n this.orderStatus = 'Partially paid'\n } else {\n this.orderStatus = 'Not paid'\n }\n\n if (this.cpoDetails !== null) {\n this.orderParty = this.cpoDetails['responsibleParty'];\n this.orderCreated = this.cpoDetails['createdTimestamp'];\n this.orderCCDEvent = this.cpoDetails['action'];\n } else {\n this.orderParty = '';\n this.orderCCDEvent = '';\n this.orderCreated = orderReferenceObj.orderCreated;\n }\n this.viewStatus = 'order-full-view';\n }\n\n redirectToOrderFeeSearchPage(event: any, orderef: any) {\n if(orderef.orderAddBtnEnable) {\n event.preventDefault();\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = orderef.orderRefId;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n }\n\n \n\n\n calculateAmounts(): void {\n let feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00,\n nonOffLinePayment = 0.00;\n\n this.paymentGroups.forEach(paymentGroup => {\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n if (fee.date_created) {\n let a = fee.amount_due === undefined;\n let b = fee.amount_due <= 0;\n this.clAmountDue = a ? this.clAmountDue + fee.net_amount : b ? this.clAmountDue + 0 : this.clAmountDue + fee.amount_due;\n }\n fee['payment_group_reference'] = paymentGroup['payment_group_reference'];\n this.fees.push(fee);\n } else {\n feesTotal = feesTotal + fee.calculated_amount;\n this.fees.push(fee);\n }\n\n });\n }\n if (this.isTurnOff) {\n this.totalFees = feesTotal;\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n let allocationLen = payment.payment_allocation;\n\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n if (allocationLen.length === 0 || allocationLen.length > 0 && allocationLen[0].allocation_status === 'Allocated') {\n nonOffLinePayment = nonOffLinePayment + payment.amount;\n }\n if (allocationLen.length > 0) {\n this.nonPayments.push(payment);\n }\n }\n if (allocationLen.length === 0) {\n this.payments.push(payment);\n }\n payment.paymentGroupReference = paymentGroup.payment_group_reference\n this.allPayments.push(payment);\n } else {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n this.payments.push(payment);\n }\n payment.paymentGroupReference = paymentGroup.payment_group_reference\n this.allPayments.push(payment);\n }\n });\n }\n this.totalPayments = paymentsTotal;\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n this.totalNonOffPayments = nonOffLinePayment;\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remisison => {\n remissionsTotal = remissionsTotal + remisison.hwf_amount;\n this.remissions.push(remisison);\n });\n }\n this.totalRemissions = remissionsTotal;\n });\n\n }\n\n calculateRefundAmount() {\n if (!this.isTurnOff) {\n let isNewPaymentGroup = false;\n\n this.paymentGroups.forEach((paymentGroup, index) => {\n let grpOutstandingAmount = 0.00,\n feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00,\n fees = [];\n\n if (paymentGroup.fees) {\n // this.isFeeRecordsExist = true;\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n\n this.isRemissionsMatch = false;\n paymentGroup.remissions.forEach(rem => {\n if (rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n // if(!fees.find(k => k.code=fee.code))\n // {\n fees.push(fee);\n //}\n }\n });\n\n if (!this.isRemissionsMatch) {\n fees.push(fee);\n }\n\n if (fee.date_created) {\n isNewPaymentGroup = true;\n } else {\n this.isHistoricGroupAvailable = true;\n this.paymentGroups[index]['old'] = true;\n }\n });\n this.paymentGroups[index].fees = fees;\n }\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n }\n grpOutstandingAmount = (feesTotal - remissionsTotal) - paymentsTotal;\n if (grpOutstandingAmount > 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = true;\n this.isFeeRecordsExist = true;\n this.paymentRef = paymentGroup.payment_group_reference;\n }\n if (paymentGroup.fees && paymentGroup.fees.length > 0 && grpOutstandingAmount <= 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = false;\n }\n });\n if ((!isNewPaymentGroup && this.isHistoricGroupAvailable) || (!isNewPaymentGroup && !this.isHistoricGroupAvailable)) {\n this.isAnyFeeGroupAvilable = false;\n }\n } else {\n let totalRefundAmount = 0,\n isFeeAmountZero = false;\n this.paymentGroups.forEach(paymentGroup => {\n let grpOutstandingAmount = 0.00,\n feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00;\n if (paymentGroup.fees) {\n this.isFeeRecordsExist = true;\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n if (fee.calculated_amount === 0) {\n isFeeAmountZero = true\n }\n });\n\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n }\n grpOutstandingAmount = (feesTotal - remissionsTotal) - paymentsTotal;\n if (grpOutstandingAmount < 0) {\n if (totalRefundAmount === 0) {\n totalRefundAmount = grpOutstandingAmount;\n } else {\n totalRefundAmount = (totalRefundAmount + grpOutstandingAmount);\n }\n }\n else if (grpOutstandingAmount > 0 || (grpOutstandingAmount === 0 && isFeeAmountZero)) {\n this.isGrpOutstandingAmtPositive = true;\n }\n });\n return totalRefundAmount * -1;\n }\n }\n\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);;\n }\n\n redirectToFeeSearchPage(event: any) {\n event.preventDefault();\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n url += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n url += `&caseType=${this.caseType}`\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}${url}`);\n }\n\n addRemission(fee: IFee) {\n if(this.chkForAddRemission(fee.code)) {\n this.feeId = fee;\n this.viewStatus = 'addremission';\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n this.viewStatus = 'addrefundforremission';\n \n this.payment = payment;\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.payment.reference));\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n\n redirectToremissionPage(event: any) {\n event.preventDefault();\n this.paymentLibComponent.viewName = 'remission'\n }\n\n redirectToReportsPage(event: any) {\n event.preventDefault();\n this.router.navigateByUrl(`/reports?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}`);\n }\n\n loadFeeSummaryPage(paymentGroup: IPaymentGroup) {\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.payment_group_reference;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n\n goToPaymentViewComponent(paymentGroup: any) {\n this.paymentLibComponent.paymentMethod = paymentGroup.paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentGroup.paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n\n goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent({ paymentGroupReference, paymentReference, paymentMethod });\n }\n\n selectedUnprocessedFeeEvent(unprocessedRecordId: string) {\n if (unprocessedRecordId) {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = false;\n }\n this.isUnprocessedRecordSelected = true;\n } else {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = true;\n }\n this.isUnprocessedRecordSelected = false;\n }\n }\n\n getUnprocessedFeeCount(unProcessedRecordCount: number) {\n this.unprocessedRecordCount = unProcessedRecordCount;\n }\n\n calculateAmountDue(fee: IFee) {\n\n if (fee.date_created) {\n return fee.amount_due !== undefined ? fee.amount_due : fee.net_amount;\n } else {\n return \"0.00\";\n }\n }\n\n confirmRemoveFee(fee: IFee) {\n this.isRemoveBtnDisabled = false;\n this.feeId = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n cancelRemoval() {\n this.viewStatus = 'main';\n }\n\n removeFee(fee: any) {\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n window.location.reload();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n\n issueRefund(payment: IPayment) {\n if (payment !== null && payment !== undefined) {\n if(this.chkIssueRefundBtnEnable(payment)) {\n this.viewStatus = 'issuerefund';\n this.payment = payment;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.isRefundRemission = true;\n }\n }\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund()) {\n if (this.orderDetail[0]['remissions'].length > 0) {\n for (const remission of this.orderDetail[0]['remissions']) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n }\n return true;\n } else {\n return false;\n }\n }\n\n chkForPBAPayment(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isPBA = true;\n }\n });\n }\n });\n if (this.isPBA) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n this.isIssueRefunfBtnEnable = true;\n }\n if (this.isIssueRefunfBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\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}","export class PaymentToPayhubRequest {\n currency = 'GBP';\n description = 'PayBubble payment';\n channel = 'telephony';\n provider = 'pci pal';\n case_type: string;\n\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.case_type= caseType;\n }\n}\n","export class PayhubAntennaRequest {\n currency = 'GBP';\n case_type: string;\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.case_type= caseType;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IFee } from '../../interfaces/IFee';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { PayhubAntennaRequest } from '../../interfaces/PayhubAntennaRequest';\nimport { SafeHtml } from '@angular/platform-browser';\nimport {Router} from '@angular/router';\nimport {Location} from '@angular/common';\nimport { OrderslistService } from '../../services/orderslist.service';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-fee-summary',\n templateUrl: './fee-summary.component.html',\n styleUrls: ['./fee-summary.component.scss']\n})\n\nexport class FeeSummaryComponent implements OnInit {\n @Input() paymentGroupRef: string;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: string;\n @Input() caseType: string;\n @Input() isOldPcipalOff: string;\n @Input() isNewPcipalOff: string;\n\n\n bsPaymentDcnNumber: string;\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n viewStatus = 'main';\n currentFee: IFee;\n totalFee: number;\n payhubHtml: SafeHtml;\n service: string = \"\";\n platForm: string = \"\";\n upPaymentErrorMessage: string;\n selectedOption:string;\n isBackButtonEnable: boolean = true;\n outStandingAmount: number;\n isFeeAmountZero: boolean = false;;\n totalAfterRemission: number = 0;\n isConfirmationBtnDisabled: boolean = false;\n isRemoveBtnDisabled: boolean = false;\n isPaymentExist: boolean = false;\n isRemissionsExist: Boolean = false;\n isRemissionsMatch = false;\n isStrategicFixEnable: boolean;\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private location: Location,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private OrderslistService: OrderslistService\n ) {}\n\n ngOnInit() {\n this.viewStatus = 'main';\n this.caseType = this.paymentLibComponent.CASETYPE;\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.setCaseType(this.paymentLibComponent.CASETYPE);\n if ((!this.isOldPcipalOff && this.isNewPcipalOff)) {\n this.platForm = '8x8';\n } else if ((this.isOldPcipalOff && !this.isNewPcipalOff)) {\n this.platForm = 'Antenna';\n } else if ((this.isOldPcipalOff && this.isNewPcipalOff)){\n this.platForm = '8x8';\n }\n\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n if (this.bsPaymentDcnNumber) {\n this.getUnassignedPaymentlist();\n }\n this.getPaymentGroup();\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.paymentLibComponent.DCN_NUMBER).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error';\n }\n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error'; \n } \n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n }\n\n }\n\n getRemissionByFeeCode(feeCode: string): IRemission {\n if (this.paymentGroup && this.paymentGroup.remissions && this.paymentGroup.remissions.length > 0) {\n for (const remission of this.paymentGroup.remissions) {\n if (remission.fee_code === feeCode) {\n return remission;\n }\n }\n }\n return null;\n }\n\n addRemission(fee: IFee) {\n this.currentFee = fee;\n this.viewStatus = 'add_remission';\n }\n\n getPaymentGroup() {\n let fees = [];\n this.paymentViewService.getPaymentGroupDetails(this.paymentGroupRef).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n this.isPaymentExist = paymentGroup.payments ? paymentGroup.payments.length > 0 : false;\n this.isRemissionsExist = paymentGroup.remissions ? paymentGroup.remissions.length > 0 : false;\n\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.totalAfterRemission = this.totalAfterRemission + fee.net_amount;\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true;\n }\n this.isRemissionsMatch = false;\n paymentGroup.remissions.forEach(rem => {\n if(rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n \n if(!this.isRemissionsMatch) {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees;\n }\n\n this.outStandingAmount = this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n\n confirmRemoveFee(fee: IFee){\n this.isRemoveBtnDisabled = false;\n this.currentFee = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n removeFee(fee: any){\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n if (this.paymentGroup.fees && this.paymentGroup.fees.length > 1){\n this.totalAfterRemission = 0;\n this.getPaymentGroup();\n this.viewStatus = 'main';\n return;\n }\n this.loadCaseTransactionPage();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n loadCaseTransactionPage() {\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n\n let partUrl = `selectedOption=${this.paymentLibComponent.SELECTED_OPTION}`;\n partUrl +=this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl +=this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl +=this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n\n let url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=true&${partUrl}`;\n this.router.navigateByUrl(url);\n }\n cancelRemission() {\n this.viewStatus = 'main';\n }\n redirectToFeeSearchPage(event: any, page?: string) {\n event.preventDefault();\n let partUrl =this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl +=this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl +=this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n\n if(this.viewStatus === 'feeRemovalConfirmation' || this.viewStatus === 'add_remission') {\n this.viewStatus = 'main';\n return;\n }\n let url = `/fee-search?ccdCaseNumber=${this.ccdCaseNumber}&selectedOption=${this.paymentLibComponent.SELECTED_OPTION}&paymentGroupRef=${this.paymentGroupRef}${partUrl}`;\n this.router.navigateByUrl(url);\n }\n takePayment() {\n this.isConfirmationBtnDisabled = true;\n const requestBody = new PaymentToPayhubRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType),\n antennaReqBody = new PayhubAntennaRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType);\n\n if(this.platForm === '8x8') {\n this.paymentViewService.postPaymentToPayHub(requestBody, this.paymentGroupRef).subscribe(\n response => {\n this.location.go(`payment-history?view=fee-summary`);\n this.payhubHtml = response;\n this.viewStatus = 'payhub_view';\n this.isBackButtonEnable=false;\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.router.navigateByUrl('/pci-pal-failure');\n }\n );\n } else if(this.platForm === 'Antenna') {\n\n this.paymentViewService.postPaymentAntennaToPayHub(antennaReqBody, this.paymentGroupRef).subscribe(\n response => {\n this.isBackButtonEnable=false;\n window.location.href = '/makePaymentByTelephoneyProvider';\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.router.navigateByUrl('/pci-pal-failure');\n }\n );\n }\n\n }\n\n goToAllocatePage(outStandingAmount: number, isFeeAmountZero: Boolean) {\n if (outStandingAmount > 0 || (outStandingAmount === 0 && isFeeAmountZero)) {\n this.paymentLibComponent.paymentGroupReference = this.paymentGroupRef;\n this.paymentLibComponent.viewName = 'allocate-payments';\n } else {\n this.loadCaseTransactionPage();\n }\n }\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\n\n\n\n@Component({\n selector: 'ccpay-error-banner',\n templateUrl: './error-banner.component.html',\n styleUrls: ['./error-banner.component.scss']\n})\n\nexport class ErrorBannerComponent implements OnInit {\n @Input('errorMessage') errorMessage;\n\n constructor(\n ) {}\n\n ngOnInit() {\n\n }\n}\n","\nexport class UnidentifiedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n unidentified_reason: string;\n\n constructor(payment_group_reference: string, payment_reference : string, unidentified_reason: any) {\n this.payment_allocation_status = {\n description: '',\n name: \"Unidentified\"\n };\n this.payment_group_reference = payment_group_reference ;\n this.payment_reference= payment_reference;\n this.unidentified_reason= unidentified_reason;\n\n }\n\n\n\n}\n","import { IBSPayments } from \"./IBSPayments\";\n\nexport class AllocatePaymentRequest {\n amount: Number;\n banked_date: String;\n ccd_case_number: String;\n exception_record: string;\n currency: String;\n document_control_number: String;\n external_provider: String;\n giro_slip_no: String;\n payer_name: String;\n payment_channel: Object;\n payment_status: Object;\n payment_method: String;\n case_type: String;\n payment_allocation_dto?: {\n allocation_reason: String,\n allocation_status: String,\n explanation: String,\n payment_allocation_status: Object,\n payment_group_reference: String,\n payment_reference: String,\n reason: String,\n receiving_office: String,\n unidentified_reason: String,\n user_id: String,\n user_name: String,\n case_type: String\n }\n\n constructor(ccd_case_number : string, unAllocatedPayment: IBSPayments, caseType: string, exceptionRecord: string, allocatedRequest?: any) {\n this.amount = unAllocatedPayment.amount;\n this.banked_date = unAllocatedPayment.date_banked;\n this.ccd_case_number = ccd_case_number;\n this.exception_record = exceptionRecord;\n this.currency= unAllocatedPayment.currency;\n this.document_control_number = unAllocatedPayment.dcn_reference;\n this.external_provider = 'exela';\n this.giro_slip_no = unAllocatedPayment.bgc_reference;\n this.payer_name = unAllocatedPayment.payer_name;\n this.payment_channel = {\n description: '',\n name: 'bulk scan'\n };\n this.payment_status ={\n description: 'bulk scan payment completed',\n name: 'success'\n }\n this.payment_method = unAllocatedPayment.payment_method;\n this.case_type= caseType;\n if(allocatedRequest) {\n this.payment_allocation_dto = allocatedRequest;\n }\n\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\n\n@Component({\n selector: 'app-mark-unidentified-payment',\n templateUrl: './mark-unidentified-payment.component.html',\n styleUrls: ['./mark-unidentified-payment.component.scss']\n})\nexport class MarkUnidentifiedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnidentifiedForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n isInvesticationDetailEmpty: boolean = false;\n investicationDetailHasError: boolean = false;\n investicationDetailMinHasError: boolean = false;\n investicationDetailMaxHasError: boolean = false;\n errorMessage = this.getErrorMessage(false);\n unassignedRecord:IBSPayments;\n siteID: string = null;\n investigationComment: string;\n isConfirmButtondisabled:Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n isStrategicFixEnable: boolean = true;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.markPaymentUnidentifiedForm = this.formBuilder.group({\n investicationDetail: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ]))\n });\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.getErrorMessage(false);\n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n saveAndContinue() {\n this.resetForm([false, false, false, false]);\n const investicationField = this.markPaymentUnidentifiedForm.controls.investicationDetail;\n const formerror = investicationField.errors;\n if (this.markPaymentUnidentifiedForm.dirty && this.markPaymentUnidentifiedForm.valid) {\n this.investigationComment = this.markPaymentUnidentifiedForm.controls.investicationDetail.value;\n this.viewStatus = 'unidentifiedContinueConfirm';\n }else {\n if(investicationField.value == '' ) {\n this.resetForm([true, false, false, false]);\n }\n if(investicationField.value != '' && investicationField.invalid ) {\n this.resetForm([false, true, false, false]);\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false, false, true, false]);\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, true]);\n }\n }\n }\n resetForm(val) {\n this.isInvesticationDetailEmpty = val[0];\n this.investicationDetailHasError = val[1];\n this.investicationDetailMinHasError = val[2];\n this.investicationDetailMaxHasError = val[3];\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const reason = this.markPaymentUnidentifiedForm.get('investicationDetail').value;\n\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Unidentified',\n payment_allocation_status: {\n description: '',\n name: 'Unidentified'\n },\n unidentified_reason: reason,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnidentifiedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, reason);\n if (response2.success) {\n this.paymentViewService.postBSUnidentifiedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n cancelMarkUnidentifiedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.markPaymentUnidentifiedForm.get('investicationDetail').value!==\"\"){\n this.viewStatus = 'unidentifiedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.viewStatus = 'mainForm';\n }\n }\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","\nexport class UnsolicitedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n receiving_office: string;\n receiving_email_address: string;\n sending_email_address: string;\n unidentified_reason: string;\n constructor(payment_group_reference: string, payment_reference : string, reason: string,responsible_office: string, responsible_person:string,email_id: string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Transferred\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.unidentified_reason= reason;\n this.receiving_office= responsible_office;\n this.receiving_email_address= email_id;\n this.sending_email_address= responsible_person;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\n\n\n@Component({\n selector: 'app-mark-unsolicited-payment',\n templateUrl: './mark-unsolicited-payment.component.html',\n styleUrls: ['./mark-unsolicited-payment.component.scss']\n})\nexport class MarkUnsolicitedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnsolicitedForm: FormGroup;\n viewStatus: string;\n reasonHasError: boolean = false;\n isReasonEmpty: boolean = false;\n reasonMinHasError: boolean = false;\n reasonMaxHasError: boolean = false;\n responsibleOfficeHasError: boolean = false;\n isResponsibleOfficeEmpty: boolean = false;\n errorMessage = this.getErrorMessage(false);\n ccdCaseNumber: string;\n bspaymentdcn: string;\n unassignedRecord: IBSPayments;\n siteID: string = null;\n reason: string;\n responsiblePerson: string;\n responsibleOffice: string;\n emailId: string;\n isConfirmButtondisabled: Boolean = false;\n isContinueButtondisabled: Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n selectedSiteId: string;\n selectedSiteName: string;\n isStrategicFixEnable: boolean = true;\n siteIDList;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.resetForm([false,false,false,false,false,false], 'all');\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.paymentViewService.getSiteID().subscribe(\n siteids => {\n this.isContinueButtondisabled = false;\n this.errorMessage = this.getErrorMessage(false);\n this.siteIDList = JSON.parse(siteids);\n },\n err => {\n window.scrollTo(0, 0);\n this.isContinueButtondisabled = true;\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n \n this.markPaymentUnsolicitedForm = this.formBuilder.group({\n reason: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n responsibleOffice: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s\\\\n,\\\\.-:]*)$')\n ])),\n responsiblePerson: new FormControl(''),\n emailId: new FormControl('')\n });\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const controls = this.markPaymentUnsolicitedForm.controls;\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Transferred',\n payment_allocation_status: {\n description: '',\n name: 'Transferred'\n },\n unidentified_reason: controls.reason.value,\n receiving_office: this.selectedSiteId,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n // controls.responsibleOffice.setValue('P219');\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const response1 = JSON.parse(res1),\n requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnsolicitedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, controls.reason.value, this.selectedSiteId, controls.responsiblePerson.value, controls.emailId.value);\n if (response2.success) {\n this.paymentViewService.postBSUnsolicitedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n saveAndContinue() {\n this.resetForm([false,false,false,false,false,false], 'all');\n const formerror = this.markPaymentUnsolicitedForm.controls.reason.errors;\n const reasonField = this.markPaymentUnsolicitedForm.controls.reason;\n //const officeIdField = this.selectedSiteId;\n const officeIdField = this.markPaymentUnsolicitedForm.controls.responsibleOffice;\n if (this.markPaymentUnsolicitedForm.dirty && this.markPaymentUnsolicitedForm.valid) {\n const controls = this.markPaymentUnsolicitedForm.controls;\n this.emailId = controls.emailId.value;\n this.responsibleOffice = officeIdField.value;\n this.responsiblePerson = controls.responsiblePerson.value;\n this.reason = controls.reason.value;\n this.viewStatus = 'unsolicitedContinueConfirm';\n }else {\n if( reasonField.value == '' ) {\n this.resetForm([true,false,false,false,false,false], 'reason');\n }\n if(reasonField.value != '' && this.markPaymentUnsolicitedForm.controls.reason.invalid ) {\n this.resetForm([false,true,false,false,false,false], 'reason');\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false,false,true,false,false,false], 'reason');\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false,false,false,true,false,false], 'reason');\n }\n if(officeIdField.value == '') {\n this.resetForm([false,false,false,false,true,false], 'responsibleOffice');\n }\n if(officeIdField.value != '' && officeIdField.invalid) {\n this.resetForm([false,false,false,false,false,true],'responsibleOffice');\n }\n }\n }\n resetForm(val, field) {\n if(field==='reason' || field==='all') {\n this.isReasonEmpty = val[0];\n this.reasonHasError = val[1];\n this.reasonMinHasError = val[2];\n this.reasonMaxHasError = val[3];\n }\n if(field==='responsibleOffice' || field==='all') {\n this.isResponsibleOfficeEmpty = val[4];\n this.responsibleOfficeHasError = val[5];\n }\n }\n\ncancelMarkUnsolicitedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.checkingFormValue()){\n this.viewStatus = 'unsolicitedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.markPaymentUnsolicitedForm.controls.responsibleOffice.setValue('');\n this.viewStatus = 'mainForm';\n }\n }\n checkingFormValue(){\n const formFields = this.markPaymentUnsolicitedForm.value;\n let valueExists = false;\n\n for (var field in formFields) {\n if (formFields.hasOwnProperty(field) && formFields[field] !==\"\") {\n valueExists = true;\n break;\n }\n }\n return valueExists;\n }\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n \n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n\n getErrorMessage(isErrorExist) {\n return {\n title: \"Something went wrong.\",\n body: \"Please try again later.\",\n showError: isErrorExist\n };\n }\n\n selectchange(args){ \n this.selectedSiteId = args.target.value; \n this.selectedSiteName = args.target.options[args.target.selectedIndex].text; \n } \n\n}\n","import { Component, OnInit, Output,Input, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport {Router} from '@angular/router';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-app-unprocessed-payments',\n templateUrl: './unprocessed-payments.component.html',\n styleUrls: ['./unprocessed-payments.component.scss']\n})\nexport class UnprocessedPaymentsComponent implements OnInit {\n\n @Input('FEE_RECORDS_EXISTS') FEE_RECORDS_EXISTS: boolean;\n @Input('PAYMENTREF') PAYMENTREF: string;\n @Input('ISTURNOFF') ISTURNOFF: boolean;\n @Input('IS_BUTTON_ENABLE') IS_BUTTON_ENABLE: boolean;\n @Input('IS_OS_AMT_AVAILABLE') IS_OS_AMT_AVAILABLE: boolean;\n @Input('ISNEWPCIPALOFF') ISNEWPCIPALOFF: boolean;\n @Input('ISOLDPCIPALOFF') ISOLDPCIPALOFF: boolean;\n @Input('ISSFENABLE') ISSFENABLE: boolean;\n @Input('PAYMENTSLENGTH') PAYMENTSLENGTH:Number;\n @Input('LEVEL')LEVEL:Number;\n\n @Output() selectedUnprocessedFeeEvent: EventEmitter<string> = new EventEmitter();\n @Output() getUnprocessedFeeCount: EventEmitter<string> = new EventEmitter();\n\n viewStatus = 'main';\n unassignedRecordList: IBSPayments;\n upPaymentErrorMessage: string = null;\n ccdCaseNumber: string;\n recordId: string = null;\n isRecordExist: boolean = false;\n dcnNumber: string = null;\n selectedOption: string;\n isUnprocessedRecordSelected: boolean = true;\n isAllocateToExistingFeebtnEnabled: boolean = false;\n isMarkAsUnidentifiedbtnEnabled: boolean = false;\n isAllocatedToNewFeebtnEnabled: boolean = false;\n isExceptionCase: boolean = false;\n serviceId: string = null;\n isBulkScanEnable;\n isNewpcipaloff;\n isOldpcipaloff;\n isTurnOff: boolean = true;\n isStFixEnable;\n unassignedRecordSelectedList: IBSPayments;\n unassignedRecordListLength: number = 0;\n showContent: boolean;\n\n constructor(private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private OrderslistService: OrderslistService\n ) { }\n\n ngOnInit() {\n // Todo ...\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isNewpcipaloff = this.paymentLibComponent.ISNEWPCIPALOFF;\n this.isOldpcipaloff = this.paymentLibComponent.ISOLDPCIPALOFF;\n this.isStFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.getFeeExists().subscribe( (data) => this.FEE_RECORDS_EXISTS = data);;\n this.getUnassignedPaymentlist();\n\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.dcnNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n }\n\n }\n\n setValuesForUnassignedRecord(unassignedPayments) {\n \n this.unassignedRecordList = unassignedPayments.payments;\n if(this.unassignedRecordList){\n this.unassignedRecordListLength = unassignedPayments.payments.length\n }\n this.serviceId = unassignedPayments.responsible_service_id;\n if (unassignedPayments['ccd_reference'] === undefined) {\n this.isExceptionCase = true;\n }\n // this.isRecordExist = this.unassignedRecordList.length === 0;\n this.getUnprocessedFeeCount.emit(<any>this.unassignedRecordList.length);\n this.unprocessedPaymentSelectEvent(this.unassignedRecordList);\n }\n\n formatUnassignedRecordId(ID: Number) {\n return `unassignrecord-${ID}`;\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n\n redirectToFeeSearchPage(event: any, dcn_reference:any) {\n event.preventDefault();\n this.recordId = dcn_reference;\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n url += this.isOldpcipaloff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n url += this.isNewpcipaloff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}&dcn=${this.recordId}${url}`);\n }\n\n loadUnsolicitedPage(viewName: string, dcn_reference:any) {\n this.recordId = dcn_reference;\n this.paymentLibComponent.bspaymentdcn = this.recordId;\n this.paymentLibComponent.viewName = viewName;\n }\n\n unprocessedPaymentSelectEvent(selectedRecordReference: any) {\n this.isUnprocessedRecordSelected = true;\n this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit(selectedRecordReference);\n }\n\n resetButtons() {\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n }\n\n goToAllocatePage(dcn_reference:any) {\n this.paymentLibComponent.bspaymentdcn = dcn_reference;\n this.paymentLibComponent.unProcessedPaymentServiceId = this.serviceId\n this.paymentLibComponent.isTurnOff = this.ISTURNOFF;\n this.paymentLibComponent.isNewPcipalOff = this.ISNEWPCIPALOFF;\n this.paymentLibComponent.isOldPcipalOff = this.ISOLDPCIPALOFF;\n this.paymentLibComponent.ISSFENABLE = this.isStFixEnable;\n\n if(this.ISTURNOFF) {\n this.paymentLibComponent.paymentGroupReference = this.PAYMENTREF;\n this.paymentLibComponent.viewName = 'fee-summary';\n }else {\n this.paymentLibComponent.paymentGroupReference = null;\n this.paymentLibComponent.viewName = 'allocate-payments';\n }\n\n }\n\n validateButtons() {\n if ( this.isUnprocessedRecordSelected && this.isExceptionCase) {\n this.isMarkAsUnidentifiedbtnEnabled = true;\n } else if ( this.isUnprocessedRecordSelected && !this.isExceptionCase && !this.FEE_RECORDS_EXISTS) {\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = true;\n } else if( this.isUnprocessedRecordSelected && !this.isExceptionCase && this.FEE_RECORDS_EXISTS ) {\n if(!this.ISTURNOFF) {\n this.isAllocateToExistingFeebtnEnabled = true;\n this.isAllocatedToNewFeebtnEnabled = false;\n } else {\n this.isAllocateToExistingFeebtnEnabled = this.IS_OS_AMT_AVAILABLE;\n this.isAllocatedToNewFeebtnEnabled = true;\n }\n }\n }\n\n unprocessedPaymentUnSelectEvent(event: any) {\n event.preventDefault();\n this.recordId = null;\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n //this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit('');\n }\n\n showDetailRow(event: any,obj: any, i: any) {\n event.preventDefault();\n \n this.unassignedRecordSelectedList = obj;\n \n }\n}\n","import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport {IPayment} from '../../interfaces/IPayment';\nimport {Router} from '@angular/router';\n\n@Component({\n selector: 'ccpay-app-processed-payments',\n templateUrl: './processed-payments.component.html',\n styleUrls: ['./processed-payments.component.scss']\n})\nexport class ProcessedPaymentsComponent implements OnInit {\n\n @Input('NONPAYMENTS') NONPAYMENTS: IPayment[];\n @Output() goToPaymentViewComponent: EventEmitter<any> = new EventEmitter();\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService\n ) { }\n ngOnInit() {\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n redirectToPaymentViewPage(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent.emit({paymentGroupReference, paymentReference, paymentMethod});\n }\n}\n","\nexport class IAllocationPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n reason: string;\n explanation: string;\n user_name: string;\n constructor(payment_group_reference: string, payment_reference : string, reason? : string, explanation? : string, userName? : string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Allocated\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.reason = reason ? reason : null;\n this.explanation = explanation ? explanation : null;\n this.user_name = userName ? userName : null;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {CaseTransactionsService} from '../../services/case-transactions/case-transactions.service'; \nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport {IBSPayments} from '../../interfaces/IBSPayments';\nimport {AllocatePaymentRequest} from '../../interfaces/AllocatePaymentRequest';\nimport {IAllocationPaymentsRequest} from '../../interfaces/IAllocationPaymentsRequest';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n\n\n@Component({\n selector: 'app-allocate-payments',\n templateUrl: './allocate-payments.component.html',\n styleUrls: ['./allocate-payments.component.scss']\n})\nexport class AllocatePaymentsComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() caseType: string;\n\n overUnderPaymentForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n recordId:string;\n feedbackUrlLabel:string;\n unAllocatedPayment: IBSPayments = {\n amount: 0\n };\n siteID: string = null;\n errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n paymentGroup: IPaymentGroup;\n paymentGroups: IPaymentGroup[] = [];\t\n remainingAmount: number;\n isRemainingAmountGtZero: boolean;\n isMoreDetailsBoxHide: boolean = true;\n isRemainingAmountLtZero: boolean;\n afterFeeAllocateOutstanding: number;\n amountForAllocation: number;\n isConfirmButtondisabled: boolean = false;\n isContinueButtondisabled: boolean = true;\n otherPaymentExplanation: string = null;\n selectedOption: string = null;\n isFeeAmountZero: boolean = false;\t\n\n paymentReasonHasError: boolean = false;\n paymentExplanationHasError: boolean = false;\n isPaymentDetailsEmpty: boolean = false;\n isPaymentDetailsInvalid: boolean = false;\n paymentDetailsMinHasError: boolean = false;\n paymentDetailsMaxHasError: boolean = false;\n isUserNameEmpty: boolean = false;\n isUserNameInvalid: boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n paymentReason: string = null;\n paymentExplanation: string = null;\n userName: string = null;\n paymentSectionLabel: any;\n paymentRef: string = null;\n isStrategicFixEnable: boolean = true;\n orderLevelFees: IOrderReferenceFee[] = [];\n cookieUserName: string[] = [];\n enCookieUserName: any;\n userNameField: string = null;\n\n reasonList: { [key: string]: { [key: string]: string } }= {\n overPayment: {\n hwfReward: 'Help with Fees (HWF) awarded. Please include the HWF reference number in the explanatory note',\n wrongFee: 'Incorrect payment received',\n notIssueCase: 'Unable to issue case',\n otherDeduction: 'Other'\n },\n shortFall: {\n helpWithFee: 'Help with Fees (HWF) application declined',\n wrongFee: 'Incorrect payment received',\n other: 'Other'\n }\n }\n explanationList = {\n overPayment: {\n referRefund: 'Details in case notes. Refund due',\n noRefund: 'Details in case notes. No refund due',\n noCase: 'No case created. Refund due',\n other: 'Other'\n },\n shortFall: {\n holdCase: 'I have put a stop on the case and contacted the applicant requesting the balance of payment',\n heldCase: 'I have put a stop on the case. The applicant needs to be contacted to request the balance of payment',\n other: 'Other'\n }\n }\n\n refund = {\n reason: {\n duplicate: 'Duplicate payment',\n humanerror: 'Human error',\n caseWithdrawn: 'Case withdrawn',\n other: 'Other'\n }\n }\n\n\n constructor(\n private errorHandlerService: ErrorHandlerService,\n private caseTransactionsService: CaseTransactionsService,\n private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n if (this.paymentLibComponent.paymentGroupReference !== null) {\n this.viewStatus = 'allocatePaymentConfirmation';\n }\n \n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.paymentRef = this.paymentLibComponent.paymentGroupReference;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.isTurnOff = this.paymentLibComponent.isTurnOff;\n this.overUnderPaymentForm = this.formBuilder.group({\n moreDetails: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n userName: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s]*)$')\n ])),\n });\n this.OrderslistService.getOrdersList().subscribe( (data) =>\n this.orderLevelFees = data.filter(data => data.orderStatus !== 'Paid'));\n this.OrderslistService.getCaseType().subscribe( (data) => this.caseType = data);\n this.getUnassignedPayment();\n }\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n }\n\n getPaymentGroupDetails(){\n\n if(!this.isTurnOff){\n this.paymentViewService.getPaymentGroupDetails(this.paymentRef).subscribe(\n paymentGroup => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.paymentGroup = paymentGroup;\n this.saveAndContinue();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.paymentGroups = paymentGroups['payment_groups'].filter(paymentGroup => {\n paymentGroup.fees.forEach(fee => {\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true\n }\n });\n let fstCon = this.getGroupOutstandingAmount(<IPaymentGroup>paymentGroup),\n scndCn = fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero) && paymentGroup.payment_group_reference === this.paymentRef;\n return this.paymentRef ? scndCn : fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero);\n });\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }\n\n }\n\n selectedPaymentGroup(paymentGroup: IPaymentGroup) {\t\n this.isContinueButtondisabled = false;\t\n this.paymentGroup = paymentGroup;\t\n }\t\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n\n gotoSummaryPage(event: any) { \n event.preventDefault();\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n\n cancelAllocatePayment(event: any){\n event.preventDefault();\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n if(!this.isTurnOff){\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n } else {\n this.viewStatus = 'mainForm';\t\n }\n }\n confirmAllocatePayement(){\n this.enCookieUserName = document.cookie.split(\";\").find(row => row.includes(\"user-info\")).split(\"=\")[1].split(\";\");\n this.cookieUserName = JSON.parse(decodeURIComponent(this.enCookieUserName));\n \n const fullName = this.cookieUserName['forename'] + ' ' + this.cookieUserName['surname'];\n\n const paymentDetailsField = this.overUnderPaymentForm.controls.moreDetails,\n paymentFormError = this.overUnderPaymentForm.controls.moreDetails.errors,\n userNameField = fullName,\n isEmptyCondtion = this.paymentReason && this.paymentExplanation,\n isOtherOptionSelected = this.paymentExplanation === 'Other';\n\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n if ( (!this.isRemainingAmountGtZero && !this.isRemainingAmountLtZero) || isEmptyCondtion && (!isOtherOptionSelected && userNameField.length > 0 || isOtherOptionSelected && userNameField.length > 0 && paymentDetailsField.valid)) {\n this.isConfirmButtondisabled = true;\n this.otherPaymentExplanation = this.paymentExplanation === 'Other' ? paymentDetailsField.value : this.paymentExplanation;\n this.userName = userNameField;\n this.finalServiceCall();\n }else {\n if(!this.paymentReason) {\n this.resetForm([true, false, false, false, false, false, false, false], 'reason');\n }\n if(!this.paymentExplanation) {\n this.resetForm([false, true, false, false, false, false, false, false], 'explanation');\n }\n if(this.paymentExplanation && isOtherOptionSelected) {\n if(paymentDetailsField.value == '' ) {\n this.resetForm([false, false, true, false, false, false, false, false], 'other');\n }\n if(paymentDetailsField.value != '' && paymentDetailsField.invalid ) {\n this.resetForm([false, false, false, true, false, false, false, false], 'other');\n }\n if(paymentFormError && paymentFormError.minlength && paymentFormError.minlength.actualLength < 3 ) {\n this.resetForm([false, false, false, false, true, false, false, false], 'other');\n }\n if(paymentFormError && paymentFormError.maxlength && paymentFormError.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, false, false, true, false, false], 'other');\n }\n }\n if(userNameField.length === 0) {\n this.resetForm([false, false, false, false, false, false, true, false], 'username');\n }\n }\n }\n resetForm(vals, field) {\n if(field==='reason' || field==='all') {\n this.paymentReasonHasError = vals[0];\n }\n if(field==='explanation' || field==='all') {\n this.paymentExplanationHasError = vals[1];\n }\n if(field==='other' || field==='all') {\n this.isPaymentDetailsEmpty = vals[2];\n this.isPaymentDetailsInvalid = vals[3];\n this.paymentDetailsMinHasError = vals[4];\n this.paymentDetailsMaxHasError = vals[5];\n }\n if(field==='username' || field==='all') {\n this.isUserNameEmpty = vals[6];\n this.isUserNameInvalid = vals[7];\n }\n }\n finalServiceCall() {\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n reason: this.paymentReason,\n allocation_status:'Allocated',\n explanation: this.otherPaymentExplanation,\n payment_allocation_status: {\n description: '',\n name: 'Allocated'\n },\n payment_group_reference: this.paymentGroup.payment_group_reference,\n case_type: this.caseType,\n user_name: this.userName\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unAllocatedPayment, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSPaymentStrategic(postStrategicBody , this.paymentGroup.payment_group_reference).subscribe(\n res => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n });\n\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response1 = JSON.parse(res1);\n if (response1.success) {\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unAllocatedPayment, this.siteID, this.exceptionReference);\n this.bulkScaningPaymentService.postBSAllocatePayment(requestBody, this.paymentGroup.payment_group_reference).subscribe(\n res2 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response2 = JSON.parse(res2);\n const reqBody = new IAllocationPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, this.paymentReason, this.otherPaymentExplanation, this.userName);\n if (response2.success) {\n this.paymentViewService.postBSAllocationPayments(reqBody).subscribe(\n \n res3 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n ); \n }\n }\n\n saveAndContinue(){\n if(this.paymentGroup) {\n this.isMoreDetailsBoxHide = true;\n this.overUnderPaymentForm.get('moreDetails').reset();\n this.overUnderPaymentForm.get('moreDetails').setValue('');\n this.overUnderPaymentForm.get('userName').reset();\n this.overUnderPaymentForm.get('userName').setValue('');\n this.paymentReason = '';\n this.paymentExplanation = '';\n let GroupOutstandingAmount = this.getGroupOutstandingAmount(this.paymentGroup);\n const remainingToBeAssigned = this.unAllocatedPayment.amount - GroupOutstandingAmount;\n this.isRemainingAmountGtZero = remainingToBeAssigned > 0;\n this.isRemainingAmountLtZero = remainingToBeAssigned < 0;\n this.paymentSectionLabel = this.isRemainingAmountGtZero ? { \n title: 'There is an Over payment of',\n reason: 'Provide a reason. This will be used in the Refund process.',\n }: this.isRemainingAmountLtZero ? { \n title: 'There is an Under payment of',\n reason: 'Provide a reason',\n }: { \n title:'Amount left to be allocated',\n reason:'',\n };\n this.feedbackUrlLabel = this.isRemainingAmountGtZero ? 'CONFIRMALLOCATION_SURPLUS' : this.isRemainingAmountLtZero ? 'CONFIRMALLOCATION_SHORTFALL' : 'CONFIRMALLOCATION';\n this.remainingAmount = this.isRemainingAmountGtZero ? remainingToBeAssigned : this.isRemainingAmountLtZero ? remainingToBeAssigned * -1 : 0;\n this.afterFeeAllocateOutstanding = remainingToBeAssigned >= 0 ? 0 : (remainingToBeAssigned * -1);\n this.amountForAllocation = GroupOutstandingAmount >= this.unAllocatedPayment.amount ? this.unAllocatedPayment.amount : GroupOutstandingAmount;\n if(this.isTurnOff){\n this.viewStatus = 'allocatePaymentConfirmation';\t\n }\n }\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.unAllocatedPayment = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n this.getPaymentGroupDetails();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }\n selectRadioButton(key, type) {\n this.isMoreDetailsBoxHide = true;\n if( type === 'explanation' && key === 'other' ){\n this.isPaymentDetailsEmpty = false;\n this.isPaymentDetailsInvalid = false;\n this.paymentDetailsMinHasError = false;\n this.paymentDetailsMaxHasError = false;\n this.isMoreDetailsBoxHide = false;\n }\n }\n OrderListSelectEvent(orderef: any){\n this.isContinueButtondisabled = false;\n this.recordId= orderef;\n }\n\n redirectToOrderFeeSearchPage() {\n // this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = this.recordId;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n}\n}\n","import { IFee } from './IFee';\n\nexport class AddRemissionRequest {\n beneficiary_name: string;\n ccd_case_number: string;\n fee: IFee;\n hwf_amount: number;\n hwf_reference: string;\n payment_group_reference: string;\n case_type: string;\n\n constructor(ccd_case_number: string, fee: IFee, hwf_amount: number, hwf_reference: string, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.fee = fee;\n this.hwf_amount = hwf_amount;\n this.hwf_reference = hwf_reference;\n this.case_type = caseType;\n }\n}\n","export class AddRetroRemissionRequest {\n hwf_amount: number;\n hwf_reference: string;\n\n constructor(hwf_amount: number, hwf_reference: string) {\n this.hwf_amount = hwf_amount;\n this.hwf_reference = hwf_reference;\n }\n}\n","import { IRefundContactDetails } from './IRefundContactDetails';\n\nexport class PostRefundRetroRemission {\n payment_reference: string;\n refund_reason: string;\n contact_details: IRefundContactDetails\n \n constructor(payment_reference : string, refund_reason : string, contactDeatils: any) {\n this.payment_reference= payment_reference;\n this.refund_reason = refund_reason;\n this.contact_details = contactDeatils;\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 } from '@angular/forms';\nimport { IFee } from '../../interfaces/IFee';\nimport {Router} from '@angular/router';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';\nimport { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\nimport { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';\nimport {ChangeDetectorRef} from '@angular/core';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { OrderslistService } from '../../services/orderslist.service';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-add-remission',\n templateUrl: './add-remission.component.html',\n styleUrls: ['./add-remission.component.scss']\n})\nexport class AddRemissionComponent implements OnInit {\n @Input() fee: IFee;\n @Input() payment: IPayment;\n @Input() remission: IRemission;\n @Input() ccdCaseNumber: string;\n @Input() caseType: string;\n @Input() viewCompStatus: string;\n @Input() paymentGroupRef: string;\n @Input() isTurnOff: boolean;\n @Input() isRefundRemission: boolean;\n @Input() isOldPcipalOff: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() isStrategicFixEnable: boolean;\n @Input() paidAmount: any;\n @Input() isFromRefundListPage: boolean;\n @Input() isFromPaymentDetailPage: boolean;\n @Input() isFromServiceRequestPage: boolean;\n @Input() feeamount: number;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input('orderDetail') orderDetail: any[];\n @Input('orderRef') orderRef: string;\n @Input('orderStatus') orderStatus: string;\n @Input('orderParty') orderParty: string;\n @Input('orderCreated') orderCreated: Date;\n @Input('orderCCDEvent') orderCCDEvent: string;\n @Input('takepayment') takePayment: boolean;\n @Input('orderFeesTotal') orderFeesTotal: number;\n @Input('orderTotalPayments') orderTotalPayments: number;\n @Input('orderRemissionTotal') orderRemissionTotal: number;\n @Output() cancelRemission: EventEmitter<void> = new EventEmitter();\n //@Output() refundListReason: EventEmitter<any> = new EventEmitter({reason:string, code:string});\n @Output() refundListReason = new EventEmitter<{reason: string, code: string}>();\n @Output() refundListAmount: EventEmitter<string> = new EventEmitter();\n\n refund = {\n reason: {\n duplicate: 'Duplicate payment',\n humanerror: 'Human error',\n caseWithdrawn: 'Case withdrawn',\n other: 'Other'\n }\n }\n contactDetailsObj: IRefundContactDetails;\n remissionForm: FormGroup;\n hasErrors = false;\n viewStatus = 'main';\n errorMessage = null;\n option: string = null;\n isConfirmationBtnDisabled: boolean = false;\n bsPaymentDcnNumber: string;\n selectedValue = 'yes';\n amount: any;\n retroRemission: boolean = false;\n remissionReference: string = '';\n refundReference: string;\n refundAmount: string;\n paymentExplanationHasError: boolean = false;\n refundReason:string;\n selectedRefundReason: string;\n displayRefundReason: string;\n refundCode:string;\n remessionPayment:IPayment;\n isRemissionCodeEmpty: boolean = false;\n remissionCodeHasError: boolean = false;\n isAmountEmpty: boolean = false;\n isReasonEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n refundHasError:boolean = false;\n isPaymentSuccess: boolean = false;\n isRemissionApplied: boolean = false;\n remissionamt:number;\n // refundReasons: any[] = [];\n commonRefundReasons: any[] = [];\n showReasonText: boolean;\n isRefundReasonsSelected: boolean;\n default: string;\n reasonLength: number;\n refundReasons:IRefundReasons[];\n pattern1: string;\n pattern2: string;\n sendOrderDetail: any[];\n sendOrderRef: string;\n component: { account_number: string; amount: number; case_reference: string; ccd_case_number: string; channel: string; currency: string; customer_reference: string; date_created: string; date_updated: string; description: string; method: string; organisation_name: string; payment_allocation: any[]; reference: string; service_name: string; site_id: string; status: string; };\n\n constructor(private formBuilder: FormBuilder,\n private router: Router,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private refundService: RefundsService,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.default = 'Select a different reason';\n this.pattern1 = '^([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})$';\n this.pattern2 = '^([A-Za-z]{2}[0-9]{2})-([0-9]{6})$';\n if(this.viewCompStatus !== '' && this.viewCompStatus !== undefined){\n this.viewStatus = '';\n }\n if(this.remission) {\n }\n if(this.fee) {\n this.amount = (this.fee.volume * this.fee.calculated_amount);\n }\n if (this.payment){\n this.remessionPayment = this.payment;\n if(this.payment.status === 'Success') {\n this.isPaymentSuccess = true;\n }\n }\n this.option = this.paymentLibComponent.SELECTED_OPTION;\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.remissionForm = this.formBuilder.group({\n remissionCode: new FormControl('', \n Validators.compose([\n Validators.required,\n Validators.pattern(`(${this.pattern1})|(${this.pattern2})`)\n ]) \n ),\n amount: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[0-9]+(\\.[0-9]{1,2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n refundDDReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl()\n });\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundDDReason'].setValue('Select a different reason', {onlySelf: true});\n \n if(this.viewCompStatus === ''){\n this.viewStatus = 'main';\n }\n \n if(this.viewCompStatus === 'issuerefund'){\n this.refundService.getRefundReasons().subscribe(\n refundReasons => { \n this.refundReasons = refundReasons.filter((data) => data.recently_used === false);\n this.refundReasons = this.refundReasons.filter((data) => data.name !== 'Retrospective remission');\n this.cd.detectChanges();\n this.commonRefundReasons = refundReasons.filter((data) => data.recently_used === true);\n this.commonRefundReasons.sort((a, b) => a.toString().localeCompare(b));\n this.cd.detectChanges();\n } );\n }\n \n if(this.viewCompStatus === 'processretroremissonpage' && this.isFromRefundListPage){\n this.viewStatus = 'processretroremissonpage';\n }\n\n }\n\n addRemission() {\n this.resetRemissionForm([false, false, false, false, false, false], 'All');\n const remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount > remissionctrls.amount.value; \n this.remissionForm.controls['refundReason'].setErrors(null);\n this.remissionForm.controls['refundDDReason'].setErrors(null);\n if (this.remissionForm.dirty && this.remissionForm.valid && isRemissionLessThanFee) {\n this.viewStatus = 'confirmation';\n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false, false], 'amount');\n }\n if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true, false], 'amount');\n }\n }\n }\n\n confirmRemission() {\n this.isConfirmationBtnDisabled = true;\n const newNetAmount = this.remissionForm.controls.amount.value,\n remissionAmount = this.fee.net_amount - newNetAmount,\n requestBody = new AddRemissionRequest\n (this.ccdCaseNumber, this.fee, remissionAmount, this.remissionForm.controls.remissionCode.value, this.caseType);\n this.paymentViewService.postPaymentGroupWithRemissions(decodeURIComponent(this.paymentGroupRef).trim(), this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response).success) {\n let LDUrl = this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable'\n LDUrl += `&caseType=${this.caseType}`\n LDUrl += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable'\n LDUrl += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable'\n if (this.paymentLibComponent.bspaymentdcn) {\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(`/payment-history/${this.ccdCaseNumber}?view=fee-summary&selectedOption=${this.option}&paymentGroupRef=${this.paymentGroupRef}&dcn=${this.paymentLibComponent.bspaymentdcn}${LDUrl}`);\n }else {\n this.gotoCasetransationPage();\n }\n\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n }\n );\n }\n\n resetRemissionForm(val, field){\n if (field==='All'){\n this.isRemissionCodeEmpty = val[0];\n this.remissionCodeHasError = val[1];\n this.isAmountEmpty = val[2];\n this.amountHasError = val[3];\n this.isRemissionLessThanFeeError = val[4];\n this.isReasonEmpty = val[5];\n } else if(field==='remissionCode' || field==='All') {\n this.isRemissionCodeEmpty = val[0];\n this.remissionCodeHasError = val[1];\n } else if (field==='amount' || field==='All'){\n this.isAmountEmpty = val[2];\n this.amountHasError = val[3];\n this.isRemissionLessThanFeeError = val[4];\n } else if (field==='reason' || field==='All'){\n this.isReasonEmpty = val[5];\n }\n }\n\n // Add retro remission changes\n addRemissionCode() {\n this.errorMessage = false;\n this.viewStatus = '';\n this.isRefundRemission = false;\n this.resetRemissionForm([false, false, false, false, false, false], 'All');\n const remissionctrls=this.remissionForm.controls\n // isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value; \n this.remissionForm.controls['refundReason'].setErrors(null);\n this.remissionForm.controls['refundDDReason'].setErrors(null);\n this.remissionForm.controls['amount'].setErrors(null);\n if (this.remissionForm.dirty && this.remissionForm.valid ) {\n this.viewCompStatus = '';\n this.viewStatus = \"processretroremissonpage\";\n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false], 'amount');\n }\n if(remissionctrls['reason'].value == '') {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n }\n if(remissionctrls.amount.valid){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n }\n \n }\n }\n\n\n gotoAddRetroRemissionCodePage() {\n this.errorMessage = false;\n if(this.isRefundRemission) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListAmount.emit();\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n }\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n } \n this.viewStatus = '';\n this.selectedValue = 'yes';\n this.viewCompStatus = \"addremission\";\n this.isRefundRemission = true;\n this.errorMessage = '';\n if(this.isFromPaymentDetailPage) {\n this.paymentLibComponent.viewName = 'payment-view';\n }\n }\n\n gotoCheckRetroRemissionPage(payment: IPayment) {\n this.paymentLibComponent.iscancelClicked = false;\n this.errorMessage = '';\n this.resetRemissionForm([false, false, false, false, false], 'All');\n if( !this.isRefundRemission) {\n var remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value; \n if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' || remissionctrls['amount'].value < 0) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, false, false, true, false], 'amount');\n } else if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n }\n }\n } else {\n var remissionctrls=this.remissionForm.controls;\n //if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' || remissionctrls['amount'].value < 0 ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n this.refundListAmount.emit(remissionctrls['amount'].value);\n }\n //}\n \n }\n }\n gotoAmountRetroRemission() {\n this.viewStatus = 'processretroremissonpage';\n this.viewCompStatus = '';\n this.isRefundRemission = true;\n this.errorMessage = '';\n }\n gotoProcessRetroRemissionPage() {\n this.viewStatus = '';\n this.viewCompStatus = 'addremission';\n this.isRefundRemission = true;\n this.errorMessage = '';\n }\n\n gotoProcessRetroRemission() {\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.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 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 = 'contactDetailsPage';\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 = '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.refundHasError = false;\n this.isReasonEmpty = false;\n }\n\n gotoContactDetailsPage() {\n this.errorMessage = '';\n this.viewCompStatus = '';\n this.viewStatus = 'contactDetailsPage';\n this.isRefundRemission = true;\n this.errorMessage = 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, this.contactDetailsObj);\n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference =JSON.parse(response).refund_reference;\n if(JSON.parse(response).refund_amount) {\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n })\n }\n\n// 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', 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.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 gotoServiceRequestPage(event: any) {\n this.errorMessage ='';\n event.preventDefault();\n if (this.isFromServiceRequestPage && !this.isFromPaymentDetailPage) {\n this.viewStatus = 'order-full-view';\n this.viewCompStatus = '';\n } else if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n } else {\n this.paymentLibComponent.paymentMethod = this.payment.method;\n this.paymentLibComponent.paymentGroupReference = this.paymentLibComponent.paymentGroupReference\n this.paymentLibComponent.paymentReference = this.payment.reference;\n this.paymentLibComponent.viewName = 'payment-view';\n this.OrderslistService.setOrderRef(this.orderRef);\n this.OrderslistService.setorderCCDEvent(this.orderCCDEvent);\n this.OrderslistService.setorderCreated(this.orderCreated);\n this.OrderslistService.setorderDetail(this.orderDetail);\n this.OrderslistService.setorderParty(this.orderParty);\n this.OrderslistService.setorderTotalPayments(this.orderTotalPayments);\n this.OrderslistService.setorderRemissionTotal(this.orderRemissionTotal);\n this.OrderslistService.setorderFeesTotal(this.orderFeesTotal);\n this.viewStatus = 'payment-view';\n this.sendOrderDetail = this.orderDetail;\n this.sendOrderRef = this.orderRef;\n if(this.LOGGEDINUSERROLES === undefined) {\n this.OrderslistService.getUserRolesList().subscribe((data) => this.LOGGEDINUSERROLES = data);\n }\n this.viewCompStatus = '';\n }\n // if (this.paymentLibComponent.TAKEPAYMENT === undefined && this.paymentLibComponent.SERVICEREQUEST === undefined) {\n // this.paymentLibComponent.SERVICEREQUEST = 'false';\n // this.paymentLibComponent.TAKEPAYMENT = false;\n // }\n // if (this.isFromServiceRequestPage) {\n // //this.paymentLibComponent.TAKEPAYMENT = false;\n // this.paymentLibComponent.isFromRefundStatusPage = false;\n // this.viewStatus = 'main'\n // this.paymentLibComponent.viewName = 'case-transactions';\n // this.OrderslistService.setisFromServiceRequestPage(true);\n // this.OrderslistService.setnavigationPage('servicerequestpage');\n // }\n // if ( this.isFromRefundListPage ) {\n // this.paymentLibComponent.iscancelClicked = true;\n // this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n // this.paymentLibComponent.isFromRefundStatusPage = true;\n // } \n // if(!this.paymentLibComponent.isFromRefundStatusPage) {\n // if(this.payment) {\n // this.OrderslistService.setpaymentPageView({method: this.payment.method,payment_group_reference: this.paymentGroupRef, reference:this.payment.reference});\n // }\n // if (this.isFromServiceRequestPage) { \n // this.OrderslistService.setnavigationPage('servicerequestpage');\n // } else {\n // this.OrderslistService.setnavigationPage('paymentdetailspage');\n // }\n // this.errorMessage = '';\n // this.paymentLibComponent.viewName = 'case-transactions';\n // // this.paymentLibComponent.TAKEPAYMENT = true;\n // this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n // this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n // this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n // this.paymentLibComponent.isFromServiceRequestPage = true; \n // this.paymentLibComponent.ISBSENABLE = true;\n // let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n // partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n // partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n // partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n // partUrl += `&caseType=${this.caseType}`;\n // partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n // partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n // if(this.isFromPaymentDetailPage) {\n // partUrl += this.paymentLibComponent.isFromPaymentDetailPage\n // }\n // if(!this.paymentLibComponent.TAKEPAYMENT) {\n // this.paymentLibComponent.TAKEPAYMENT = undefined;\n // }\n // if ( this.paymentLibComponent.SERVICEREQUEST) {\n // const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&selectedOption=${this.option}${partUrl}`;\n // this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n // this.router.onSameUrlNavigation = 'reload';\n // this.router.navigateByUrl(url);\n // } else {\n // const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n // this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n // this.router.onSameUrlNavigation = 'reload';\n // this.router.navigateByUrl(url);\n // }\n \n // } else {\n // this.paymentLibComponent.viewName === 'refundstatuslist';\n // this.paymentLibComponent.isFromRefundStatusPage = true;\n // }\n }\n gotoAddressPage() {\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.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.VIEW = 'case-transactions';\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n this.paymentLibComponent.isFromServiceRequestPage = true; \n this.resetOrderData();\n let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n\n gotoCasetransationPageCancelBtnClicked(event: Event) {\n event.preventDefault();\n if( !this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.VIEW ='case-transactions';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n this.resetOrderData(); let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n } else { \n\n if (this.paymentLibComponent.REFUNDLIST) {\n this.paymentLibComponent.viewName = 'refund-list';\n return;\n }\n if (this.paymentLibComponent.TAKEPAYMENT === undefined && this.paymentLibComponent.SERVICEREQUEST === undefined) {\n this.paymentLibComponent.SERVICEREQUEST = 'false';\n }\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.OrderslistService.setpaymentPageView({method: '',payment_group_reference: '', reference:''});\n this.OrderslistService.setnavigationPage('casetransactions');\n this.errorMessage = '';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n this.paymentLibComponent.isFromServiceRequestPage = true; \n this.paymentLibComponent.ISBSENABLE = true;\n let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n if(this.isFromPaymentDetailPage) {\n partUrl += this.paymentLibComponent.isFromPaymentDetailPage\n }\n\n if(!this.paymentLibComponent.SERVICEREQUEST) {\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n } else {\n const url =`/payment-history/${this.ccdCaseNumber}?selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n }\n \n }\n\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n\n\n getFormattedCurrency(currency:number){\n if(currency.toString().includes(\".\")){\n return currency\n }\n return currency.toString().concat(\".00\");\n }\n \n}","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'ccdHyphens'\n})\nexport class CcdHyphensPipe implements PipeTransform {\n constructor() {}\n transform(value: any, args?: any): any {\n const pattern = /^([0-9]{4})+([0-9]{4})+([0-9]{4})+([0-9]{4})$/;\n if ( value.match(pattern)) {\n return value.replace(pattern,'$1-$2-$3-$4') \n }\n return value;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'capitalize'\n})\nexport class CapitalizePipe implements PipeTransform {\n constructor() { }\n transform(s: any, args?: any): any {\n return s && s[0].toUpperCase() + s.slice(1) || \"\";\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'keyValue'\n})\nexport class keyValuePipe implements PipeTransform {\n constructor() {}\n transform(input: any): any {\n let keys = [];\n for (let key in input) {\n if (input.hasOwnProperty(key)) {\n keys.push({ key: key, value: input[key]});\n }\n }\n return keys;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\nimport { DomSanitizer, SafeHtml } from '@angular/platform-browser';\n\n@Pipe({ name: 'sanitizeHtml' })\nexport class SanitizeHtmlPipe implements PipeTransform {\n constructor(private sanitizer: DomSanitizer) {}\n transform(value: any): SafeHtml {\n return this.sanitizer.bypassSecurityTrustHtml(value);\n }\n}\n","import { Injectable } from '@angular/core';\nimport * as FileSaver from 'file-saver';\nimport * as XLSX from 'xlsx';\nimport * as XLSXStyle from 'xlsx-style';\n\n\nconst EXCEL_TYPE = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8';\nconst EXCEL_EXTENSION = '.xlsx';\n\n@Injectable()\nexport class XlFileService {\n\n constructor() { }\n\n public exportAsExcelFile(json: any[], excelFileName: string): void {\n let worksheet: XLSX.WorkSheet; \n let workbook: XLSX.WorkBook; \n\n if(excelFileName.match('Data_Loss')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['loss_resp','payment_asset_dcn','env_ref','env_item','resp_service_id','resp_service_name','date_banked','bgc_batch','payment_method','amount']});\n worksheet = this.setDataLossReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Unprocessed')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','exception_ref','ccd_ref','date_banked','bgc_batch','payment_asset_dcn','env_ref','env_item','payment_method','amount']});\n worksheet = this.setUnprocessedReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Processed_Unallocated')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','allocation_status','receiving_office','allocation_reason','ccd_exception_reference','ccd_case_reference','payment_asset_dcn','env_ref','env_item','date_banked','bgc_batch','payment_method','amount']});\n worksheet = this.setProcessedUnallocatedReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else {\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','surplus_shortfall','balance','payment_amount','ccd_case_reference', 'ccd_exception_reference', 'processed_date', 'reason', 'explanation', 'user_name']});\n worksheet = this.setShortFallReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n }\n workbook = { Sheets: { 'data': worksheet }, SheetNames: ['data'] };\n const excelBuffer: any = XLSX.write(workbook, { bookType: 'xlsx', type: 'array' });\n this.saveAsExcelFile(excelBuffer, excelFileName);\n }\n\n\nprivate autoFitColumns (worksheet: XLSX.WorkSheet,json:any) : XLSX.WorkSheet {\n let objectMaxLength = []; \n let ColWidth = [];\n let obj = <any>Object;\n for (let i = 0; i < json.length; i++) {\n let value = obj.values(json[i]);\n let key = obj.keys(json[i]);\n for (let j = 0; j < value.length; j++) {\n if(value[j] === null){\n value[j] = '';\n }\n objectMaxLength[j] =\n key[j].length >= value[j].length\n ? key[j].length+2\n : value[j].length+1;\n if( value[j].length === undefined){\n objectMaxLength[j] = key[j].length+2;\n }\n ColWidth.push({'width': +objectMaxLength[j]});\n }\n }\n worksheet['!cols'] = ColWidth;\n return worksheet;\n}\n\n\nprivate setDataLossReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Loss_Resp\";\n worksheet.B1.v = \"Payment_Asset_DCN\";\n worksheet.C1.v = \"Envelope_Ref\";\n worksheet.D1.v = \"Envelope_Item\";\n worksheet.E1.v = \"Resp_Service ID\";\n worksheet.F1.v = \"Resp_Service Name\";\n worksheet.G1.v = \"Date_Banked\";\n worksheet.H1.v = \"BGC_Batch\";\n worksheet.I1.v = \"Payment_Method\";\n worksheet.J1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setUnprocessedReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Exception_Ref\";\n worksheet.D1.v = \"CCD_Ref\";\n worksheet.E1.v = \"Date_Banked\";\n worksheet.F1.v = \"BGC_Batch\";\n worksheet.G1.v = \"Payment_Asset_DCN\";\n worksheet.H1.v = \"Envelope_Ref\";\n worksheet.I1.v = \"Envelope_Item\";\n worksheet.J1.v = \"Payment_Method\";\n worksheet.K1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setProcessedUnallocatedReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Allocation_Status\";\n worksheet.D1.v = \"Receiving_Office\";\n worksheet.E1.v = \"Allocation_Reason\";\n worksheet.F1.v = \"CCD_Exception_Ref\";\n worksheet.G1.v = \"CCD_Case_Ref\";\n worksheet.H1.v = \"Payment_Asset_DCN\";\n worksheet.I1.v = \"Envelope_Ref\";\n worksheet.J1.v = \"Envelope_Item\";\n worksheet.K1.v = \"Date_Banked\";\n worksheet.L1.v = \"BGC_Batch\";\n worksheet.M1.v = \"Payment_Method\";\n worksheet.N1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setShortFallReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Over Payment_Under Payment\";\n worksheet.D1.v = \"Balance\";\n worksheet.E1.v = \"Payment_Amount\";\n worksheet.F1.v = \"CCD_Case_Ref\";\n worksheet.G1.v = \"Exception_Ref\";\n worksheet.H1.v = \"Processed_Date\";\n worksheet.I1.v = \"Reason\";\n worksheet.J1.v = \"Explanation\";\n worksheet.K1.v = \"Updated Name\";\n return worksheet;\n}\n\nprivate saveAsExcelFile(buffer: any, fileName: string): void {\n const data: Blob = new Blob([buffer], {\n type: EXCEL_TYPE\n });\n FileSaver.saveAs(data, fileName + EXCEL_EXTENSION);\n }\n}\n","import { Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormGroup, FormControl } from '@angular/forms';\nimport { formatDate } from \"@angular/common\";\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {XlFileService} from '../../services/xl-file/xl-file.service';\n\n@Component({\n selector: 'ccpay-reports',\n templateUrl: './reports.component.html',\n styleUrls: ['./reports.component.scss']\n})\nexport class ReportsComponent implements OnInit {\n reportsForm: FormGroup;\n startDate: string;\n endDate: string;\n ccdCaseNumber: string;\n isDownLoadButtondisabled:Boolean = false;\n isStartDateLesthanEndDate: Boolean = false;\n isDateRangeBetnWeek: Boolean = false;\n errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n paymentGroups: IPaymentGroup[] = [];\n\n constructor(\n private xlFileService: XlFileService,\n private errorHandlerService: ErrorHandlerService,\n private formBuilder: FormBuilder,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private paymentViewService: PaymentViewService) { }\n \n\n ngOnInit() {\n this.fromValidation();\n\n }\n\n getToday(): string {\n return new Date().toISOString().split('T')[0];\n }\n\n getSelectedFromDate(): void {\n this.validateDates(this.reportsForm.get('selectedreport').value);\n }\n\n validateDates(reportName){\n const selectedStartDate = this.tranformDate(this.reportsForm.get('startDate').value),\n selectedEndDate = this.tranformDate(this.reportsForm.get('endDate').value);\n const isDateRangeMoreThanWeek = (<any>new Date(selectedStartDate) - <any>new Date(selectedEndDate))/(1000 * 3600 * -24) > 7;\n if(new Date(selectedStartDate) > new Date(selectedEndDate) && selectedEndDate !== ''){\n this.reportsForm.get('startDate').setValue('');\n this.isDateRangeBetnWeek = false;\n this.isStartDateLesthanEndDate = true;\n } else if(reportName && reportName ==='SURPLUS_AND_SHORTFALL' && isDateRangeMoreThanWeek ) {\n this.isDateRangeBetnWeek = true;\n this.isStartDateLesthanEndDate = false;\n } else {\n this.isDateRangeBetnWeek = false;\n this.isStartDateLesthanEndDate = false;\n }\n\n }\n\n fromValidation() {\n this.reportsForm = this.formBuilder.group({\n selectedreport: new FormControl('') ,\n startDate: new FormControl(''),\n endDate: new FormControl('') \n });\n}\n\ndownloadReport(){\n this.isDownLoadButtondisabled = true;\n const dataLossRptDefault = [{loss_resp:'',payment_asset_dcn:'',env_ref:'',env_item:'',resp_service_id:'',resp_service_name:'',date_banked:'',bgc_batch:'',payment_method:'',amount:''}],\n unProcessedRptDefault = [{resp_service_id:'',resp_service_name:'',exception_ref:'',ccd_ref:'',date_banked:'',bgc_batch:'',payment_asset_dcn:'',env_ref:'',env_item:'',payment_method:'',amount:''}],\n processedUnallocated =[{resp_service_id:'',resp_service_name:'',allocation_status:'',receiving_office:'',allocation_reason:'',ccd_exception_ref:'',ccd_case_ref:'',payment_asset_dcn:'',env_ref:'',env_item:'',date_banked:'',bgc_batch:'',payment_method:'',amount:'',updated_by:''}],\n shortFallsRptDefault = [{resp_service_id:'',resp_service_name:'',surplus_shortfall:'',balance:'',payment_amount:'',ccd_case_reference:'',ccd_exception_reference:'',processed_date:'', reason:'', explanation:'', user_name:''}],\n selectedReportName = this.reportsForm.get('selectedreport').value,\n selectedStartDate = this.tranformDate(this.reportsForm.get('startDate').value),\n selectedEndDate = this.tranformDate(this.reportsForm.get('endDate').value);\n\n if(selectedReportName === 'PROCESSED_UNALLOCATED' || selectedReportName === 'SURPLUS_AND_SHORTFALL' ){\n this.paymentViewService.downloadSelectedReport(selectedReportName,selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n const result = JSON.parse(response);\n let res= {data: this.applyDateFormat(result)};\n if(res['data'].length === 0 && selectedReportName === 'PROCESSED_UNALLOCATED' ){\n res.data= processedUnallocated;\n } else if(res['data'].length === 0 && selectedReportName === 'SURPLUS_AND_SHORTFALL' ) {\n res.data= shortFallsRptDefault;\n } \n if(result['data'].length > 0) {\n for( var i=0; i< res['data'].length; i++) {\n if(res['data'][i][\"payment_asset_dcn\"] !== undefined) {\n res['data'][i]['env_ref'] = res['data'][i][\"payment_asset_dcn\"].substr(0,13);\n res['data'][i]['env_item'] = res['data'][i][\"payment_asset_dcn\"].substr(13,21);\n }\n if(res['data'][i][\"amount\"] !== undefined) {\n res['data'][i]['amount'] = this.convertToFloatValue(res['data'][i]['amount']);\n }\n if(res['data'][i][\"balance\"] !== undefined) {\n res['data'][i]['balance'] = this.convertToFloatValue(res['data'][i][\"balance\"]);\n }\n let Op = res['data'][i][\"surplus_shortfall\"];\n if(Op !== undefined) {\n res['data'][i]['surplus_shortfall'] = Op ==\"Surplus\" ? \"Over payment\":\"Under payment\";\n }\n if(res['data'][i][\"payment_amount\"] !== undefined) {\n res['data'][i]['payment_amount'] = this.convertToFloatValue(res['data'][i]['payment_amount']);\n }\n }\n } \n this.isDownLoadButtondisabled = false;\n this.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate));\n },\n (error: any) => {\n this.isDownLoadButtondisabled = false;\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n })\n } else {\n this.bulkScaningPaymentService.downloadSelectedReport(selectedReportName,selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n const result = JSON.parse(response);\n let res = {data: this.applyDateFormat(result)};\n if(res['data'].length === 0 && selectedReportName === 'DATA_LOSS' ){\n res.data= dataLossRptDefault;\n } else if(res['data'].length === 0 && selectedReportName === 'UNPROCESSED'){\n res.data = unProcessedRptDefault;\n }\n if(result['data'].length > 0) {\n for( var i=0; i< res['data'].length; i++) {\n if(res['data'][i][\"amount\"] !== undefined) {\n res['data'][i]['amount'] = this.convertToFloatValue(res['data'][i]['amount']);\n }\n if(res['data'][i][\"payment_asset_dcn\"] !== undefined) {\n res['data'][i]['env_ref'] = res['data'][i][\"payment_asset_dcn\"].substr(0,13);\n res['data'][i]['env_item'] = res['data'][i][\"payment_asset_dcn\"].substr(13,21);\n }\n }\n }\n this.isDownLoadButtondisabled = false;\n this.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate ));\n },\n (error: any) => {\n this.isDownLoadButtondisabled = false;\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n })\n }\n }\n\n getFileName(selectedOption: string, startDate: string, endDate: string ) {\n const loc = 'en-US',\n stDt = formatDate(startDate, 'ddMMyy', loc),\n enDt = formatDate(endDate, 'ddMMyy', loc),\n now = new Date(),\n currentDate = formatDate(now, 'ddMMyy', loc),\n timestamp = `${currentDate}_${this.getTwodigit(now.getHours())}${this.getTwodigit(now.getMinutes())}${this.getTwodigit(now.getSeconds())}`,\n selectedOptionTxt = this.getCamelCaseString(selectedOption);\n \n return selectedOptionTxt+'_'+stDt+'_To_'+enDt+'_Run_'+ timestamp;\n } \n tranformDate(strDate: string) {\n let result = '';\n if (strDate) {\n let parts = strDate.split('-');\n result = `${parts[1]}/${parts[2]}/${parts[0]}`;\n }\n return result;\n }\n getTwodigit(input: number){\n return (\"0\" + input).slice(-2);\n }\n getCamelCaseString(selectedOption) {\n let result;\n switch(selectedOption) { \n case 'UNPROCESSED': { \n result = 'Unprocessed';\n break; \n } \n case 'DATA_LOSS': { \n result = 'Data_Loss';\n break; \n } \n case 'PROCESSED_UNALLOCATED': { \n result = 'Processed_Unallocated';\n break; \n } \n case 'SURPLUS_AND_SHORTFALL': { \n result = 'Over Payment_Under Payment';\n break; \n } \n default: { \n result = selectedOption;\n break; \n } \n } \n return result;\n }\n applyDateFormat(res) {\n const fmt = 'dd/MM/yyyy',\n loc = 'en-US';\n return res['data'].map(value => {\n if (value['date_banked']) {\n value['date_banked'] = formatDate(value['date_banked'], fmt, loc);\n }\n return value;\n });\n }\n \n convertToFloatValue(amt) {\n return amt ? Number.parseFloat(amt).toFixed(2): '0.00';\n }\n}\n","import {Component, ViewChild, Input, ChangeDetectorRef} from '@angular/core';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport { MatTableDataSource} from '@angular/material/table';\nimport {MatSort } from '@angular/material/sort';\nimport {Sort } from '@angular/material/sort';\nimport {MatPaginator } from '@angular/material/paginator';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { THIS_EXPR } from '@angular/compiler/src/output/output_ast';\nimport { ActivatedRoute,Router } from '@angular/router';\n@Component({\n selector: 'ccpay-table',\n templateUrl: './table.component.html',\n styleUrls: ['./table.component.css']\n})\nexport class TableComponent {\n @Input('DATASOURCE') DATASOURCE: any[];\n @Input('STATUS') STATUS: string;\n @Input('errorMessage') errorMessage: string;\n isApprovalFlow: boolean;\n // displayedColumns = ['ccdCaseNumber', 'refundReference', 'reason', 'createBy', 'updateDate', 'Action'];\n displayedColumns = ['ccd_case_number', 'refund_reference', 'user_full_name','date_created', 'date_updated', 'Action'];\n \n dataSource: MatTableDataSource<any>;\n userLst;\n actualcount: number;\n count: number;\n refundList: IRefundList[];\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n constructor(\n private paymentLibComponent: PaymentLibComponent,\n private cdRef: ChangeDetectorRef,\n private OrderslistService: OrderslistService,\n private router: Router,\n private activeRoute: ActivatedRoute\n ) {}\n ngOnInit() {\n this.errorMessage = this.errorMessage;\n if(this.STATUS.toLowerCase() === 'sent for approval') {\n this.isApprovalFlow = true;\n } else {\n this.isApprovalFlow = false;\n }\n this.refundList = this.DATASOURCE;\n this.dataSource = new MatTableDataSource(this.refundList);\n this.actualcount = this.dataSource.data.length;\n if( this.refundList !== undefined) {\n this.userLst = this.refundList.reduce((r,{user_full_name}) => (r[user_full_name]='', r) , {});\n this.userLst = Object.keys(this.userLst);\n }\n this.userLst.sort((a, b) => a.toString().localeCompare(b));\n }\n /**\n * Set the paginator and sort after the view init since this component will\n * be able to query its view for the initialized paginator and sort.\n */\n ngAfterViewInit() {\n \n this.dataSource.sort = this.sort;\n\n //const sortState: Sort = {active: 'date_updated', direction: 'desc'};\n // this.sort.active = sortState.active;\n // this.sort.direction = sortState.direction;\n // this.sort.sortChange.emit(sortState);\n this.dataSource.paginator = this.paginator;\n this.dataSource.sort = this.sort;\n this.cdRef.detectChanges();\n }\n applyFilter(filterValue: string) {\n filterValue = filterValue.trim(); // Remove whitespace\n filterValue = filterValue.toLowerCase(); // Datasource defaults to lowercase matches\n this.dataSource.filter = filterValue;\n }\n selectchange(args){\n this.dataSource.filter = args.target.value;\n this.actualcount = this.dataSource.data.length;\n this.dataSource.paginator = this.paginator;\n }\n goToRefundProcessComponent(refundReference: string, refundData: IRefundList ) {\n this.paymentLibComponent.refundlistsource = refundData;\n this.paymentLibComponent.refundReference = refundReference;\n this.paymentLibComponent.viewName = 'process-refund';\n }\n goToRefundViewComponent(refundReference: string, refundData: IRefundList ) {\n this.OrderslistService.setRefundView(refundData);\n this.paymentLibComponent.viewName='refundstatuslist';\n this.paymentLibComponent.CCD_CASE_NUMBER = refundData.ccd_case_number;\n this.paymentLibComponent.isRefundStatusView = true;\n this.paymentLibComponent.isCallFromRefundList = true;\n }\n goToCaseReview(ccdCaseNumber: string, refundData: IRefundList ) {\n this.router.navigate([`/cases/case-details/${ccdCaseNumber}`], {relativeTo: this.activeRoute});\n }\n}","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}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { IRefundContactDetails } from './IRefundContactDetails';\n\nexport class IPutNotificationRequest {\n recipient_email_address?: string;\n recipient_postal_address?: IRefundContactDetails\n \n constructor(contactDetails: any, notificationType: string) {\n if(notificationType === 'EMAIL') {\n this.recipient_email_address = contactDetails;\n } else if(notificationType === 'LETTER') {\n this.recipient_postal_address = contactDetails;\n }\n } \n}","export class IResubmitRefundRequest {\n refund_reason: string;\n amount: number;\n \n \n constructor(refund_reason : string, amount: number) {\n this.refund_reason= refund_reason;\n this.amount = amount;\n \n } \n }\n ","import { Component, OnInit, Input } from '@angular/core';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { NotificationService } from '../../services/notification/notification.service';\nimport { FormBuilder, FormGroup, Validators, FormControl, RequiredValidator } from '@angular/forms';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { IRefundsNotifications } from '../../interfaces/IRefundsNotifications';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IPutNotificationRequest } from '../../interfaces/IPutNotificationRequest';\nimport { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';\nimport { IRefundStatus } from '../../interfaces/IRefundStatus';\nimport { IResubmitRefundRequest } from '../../interfaces/IResubmitRefundRequest';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-refund-status',\n templateUrl: './refund-status.component.html',\n styleUrls: ['./refund-status.component.css']\n})\nexport class RefundStatusComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[] = [];\n @Input() isOldPcipalOff: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: boolean;\n @Input() orderParty: string;\n refundStatusForm: FormGroup;\n selectedRefundReason: string;\n rejectedRefundList: IRefundList[] = [];\n notificationList: IRefundsNotifications;\n notification:IRefundsNotifications;\n approvalStatus = 'Sent for approval';\n rejectStatus = 'Update required';\n errorMessage = null;\n viewName: string;\n refundReason: string;\n refundlist: IRefundList;\n bsPaymentDcnNumber: string;\n isCallFromRefundList: boolean;\n refundButtonState: string = '';\n isAmountEmpty: boolean = false;\n isReasonEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n refundHasError: boolean = false;\n refundReasons: any[] = [];\n refundStatusHistories: IRefundStatus[];\n refundNotifications: IRefundStatus[];\n isResendOperationSuccess: boolean = false;\n isEditDetailsClicked: boolean = false;\n isEditAddressDeatilsClicked: boolean = false;\n addressDetails: IRefundContactDetails;\n refundReference: string;\n refundAmount: string;\n refundCode: string;\n isRefundBtnDisabled: boolean = true;\n oldRefundReason: string;\n refundreason: string;\n navigationpage: string;\n isLastUpdatedByCurrentUser: boolean = true;\n isProcessRefund: boolean = false;\n changedAmount: number;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n\n constructor(private formBuilder: FormBuilder,\n private refundService: RefundsService,\n private notificationService: NotificationService,\n private paymentLibComponent: PaymentLibComponent,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n\n this.resetRemissionForm([false, false, false, false], 'All');\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.isCallFromRefundList = this.paymentLibComponent.isCallFromRefundList;\n if (this.paymentLibComponent.isRefundStatusView) {\n this.viewName = 'refundview';\n this.OrderslistService.getRefundView().subscribe((data) => this.refundlist = data);\n this.OrderslistService.getCCDCaseNumberforRefund.subscribe((data) => this.ccdCaseNumber = data);\n } else {\n this.viewName = 'refundstatuslist';\n this.refundService.getRefundStatusList(this.ccdCaseNumber).subscribe(\n refundList => {\n this.rejectedRefundList = refundList['refund_list'];\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n }\n\n\n this.refundStatusForm = this.formBuilder.group({\n amount: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[0-9]+(\\.[0-9]{1,2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl()\n });\n\n if(this.refundlist !== undefined) {\n this.getRefundsNotification();\n this.getRefundsStatusHistoryList();\n\n if (this.LOGGEDINUSERROLES.some(i => i.includes('payments-refund-approver'))) {\n this.isProcessRefund = true;\n this.refundButtonState = this.refundlist.refund_status.name;\n return;\n }\n \n if (this.LOGGEDINUSERROLES.some(i => i.includes('payments-refund'))) {\n this.isProcessRefund = false;\n this.refundButtonState = this.refundlist.refund_status.name;\n }\n }\n }\n \n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n getRefundsStatusHistoryList() {\n if(this.refundlist !== undefined) {\n this.refundService.getRefundStatusHistory(this.refundlist.refund_reference).subscribe(\n statusHistoryList => {\n this.refundStatusHistories = statusHistoryList.status_history_dto_list;\n this.isLastUpdatedByCurrentUser = statusHistoryList.last_updated_by_current_user;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n }; \n }\n }\n\n getRefundsNotification() {\n this.notificationService.getRefundNotification(this.refundlist.refund_reference).subscribe(\n refundsNotification => {\n this.notificationList = refundsNotification['notifications'];\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n }; \n }\n\n goToRefundView(refundlist: IRefundList, navigationpage: string) {\n this.OrderslistService.setRefundView(refundlist);\n this.OrderslistService.setCCDCaseNumber(this.ccdCaseNumber);\n this.paymentLibComponent.viewName = 'refundstatuslist';\n this.paymentLibComponent.isRefundStatusView = true;\n this.refundlist = refundlist;\n this.OrderslistService.setnavigationPage(navigationpage);\n }\n\n loadCaseTransactionPage() {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isRefundStatusView = false;\n }\n\n loadRefundListPage() {\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n if (this.navigationpage === 'casetransactions') {\n this.loadCaseTransactionPage();\n } else {\n this.paymentLibComponent.viewName = 'refund-list';\n }\n }\n\n gotoReviewDetailsPage(event:any) {\n // event.preventDefault();\n this.errorMessage = false;\n this.paymentLibComponent.isRefundStatusView = true;\n this.ngOnInit();\n }\n\n gotoReviewAndReSubmitPage() {\n this.viewName = 'reviewandsubmitview';\n this.oldRefundReason = this.refundlist.reason;\n this.changedAmount = this.refundlist.amount;\n this.refundreason = this.refundStatusHistories.filter(data => data.status.toLowerCase() === 'update required')[0].notes;\n this.refundService.getRefundReasons().subscribe(\n refundReasons => {\n this.refundReasons = refundReasons;\n });\n }\n gotoRefundReasonPage() {\n this.isRefundBtnDisabled = false;\n this.paymentLibComponent.REFUNDLIST = \"true\";\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.errorMessage = false;\n this.viewName = 'issuerefund';\n }\n\n gotoAmountPage() {\n this.errorMessage = false;\n this.paymentLibComponent.REFUNDLIST = \"true\";\n this.isRefundBtnDisabled = false;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.viewName = 'processretroremissonpage';\n }\n\n goToReviewAndSubmitView() {\n const remissionctrls = this.refundStatusForm.controls\n if (this.refundStatusForm.dirty) {\n if (remissionctrls['amount'].value == '') {\n this.resetRemissionForm([true, false, false, false], 'amount');\n }\n else if (remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid) {\n this.resetRemissionForm([false, true, false, false], 'amount');\n }\n else if (remissionctrls['reason'].value == '') {\n this.resetRemissionForm([false, false, false, true], 'reason');\n } else {\n this.refundlist.reason = remissionctrls['reason'].value;\n this.viewName = 'reviewandsubmitview';\n }\n }\n\n }\n\n resetRemissionForm(val, field) {\n if (field === 'All') {\n this.isAmountEmpty = val[0];\n this.amountHasError = val[1];\n this.isRemissionLessThanFeeError = val[2];\n this.isReasonEmpty = val[3];\n } else if (field === 'amount' || field === 'All') {\n this.isAmountEmpty = val[0];\n this.amountHasError = val[1];\n this.isRemissionLessThanFeeError = val[2];\n } else if (field === 'reason' || field === 'All') {\n this.isReasonEmpty = val[3];\n }\n }\n\n selectRadioButton(key, value) {\n this.refundHasError = false;\n this.selectedRefundReason = key;\n if (key === 'Other') {\n this.refundHasError = false;\n this.refundReason = key;\n }\n }\n\n getRefundListReason(refundListReason: any) {\n if (this.paymentLibComponent.isFromRefundStatusPage && !this.paymentLibComponent.iscancelClicked) {\n this.refundlist.reason = refundListReason.reason;\n this.refundCode = refundListReason.code;\n } else {\n this.isRefundBtnDisabled = true;\n }\n this.viewName = 'reviewandsubmitview';\n this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;\n }\n\n getRefundAmount(amount: number) {\n if (this.paymentLibComponent.isFromRefundStatusPage && !this.paymentLibComponent.iscancelClicked) {\n if (amount > 0) {\n this.changedAmount = amount;\n // this.refundlist.amount = amount;\n }\n } else {\n this.isRefundBtnDisabled = true;\n }\n this.viewName = 'reviewandsubmitview';\n this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;\n }\n\n gotoReviewRefundConfirmationPage() {\n if (this.oldRefundReason === this.refundlist.reason) {\n this.refundCode = '';\n }\n const resubmitRequest = new IResubmitRefundRequest(this.refundCode, this.changedAmount);\n this.refundService.patchResubmitRefund(resubmitRequest, this.refundlist.refund_reference).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n this.viewName = 'reviewrefundconfirmationpage';\n }\n },\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n }\n );\n }\n\n gotoEditAddressDetails(note: IRefundsNotifications) {\n this.notification = note;\n this.isEditDetailsClicked = true;\n this.viewName = 'refundEditView'\n }\n getContactDetails(obj:IRefundContactDetails) {\n this.addressDetails = obj;\n this.viewName = 'revieweditdetailsconfirmationpage';\n }\n gotoEditDetailsPage() {\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\n gotoCasetransationPageCancelBtnClicked(obj) {\n\n }\n goToRefundProcessComponent(refundReference: string, refundList: IRefundList) {\n this.paymentLibComponent.refundlistsource = refundList;\n this.paymentLibComponent.refundReference = refundReference;\n this.paymentLibComponent.viewName = 'process-refund';\n }\n\n}\n","import { THIS_EXPR } from '@angular/compiler/src/output/output_ast';\nimport { Component, Input, OnInit } from '@angular/core';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IPaymentView } from '../../interfaces/IPaymentView';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { Router } from '@angular/router';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-service-request',\n templateUrl: './service-request.component.html',\n styleUrls: ['./service-request.component.css']\n})\nexport class ServiceRequestComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n @Input('viewStatus') viewStatus: string;\n @Input('orderDetail') orderDetail: any[];\n @Input('orderRef') orderRef: string;\n @Input('orderStatus') orderStatus: string;\n @Input('orderParty') orderParty: string;\n @Input('orderCreated') orderCreated: Date;\n @Input('orderCCDEvent') orderCCDEvent: string;\n @Input('orderFeesTotal') orderFeesTotal: number;\n @Input('orderTotalPayments') orderTotalPayments: number;\n @Input('orderRemissionTotal') orderRemissionTotal: number;\n @Input('takePayment') takePayment: boolean;\n @Input('ccdCaseNumber') ccdCaseNumber: boolean;\n\n servicerequest: string;\n // ccdCaseNumber: string;\n excReference: string;\n paymentGroups: any[] = [];\n payments: IPayment[] = [];\n nonPayments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n fees: IFee[] = [];\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalNonOffPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n paymentRef: string;\n isTurnOff: boolean;\n isNewPcipalOff: boolean;\n isRefundRemission: boolean = true;\n isOldPcipalOff: boolean;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = true;\n isExceptionRecord: boolean = false;\n isUnprocessedRecordSelected: boolean = false;\n exceptionRecordReference: string;\n isAnyFeeGroupAvilable: boolean = true;\n isHistoricGroupAvailable: boolean = false;\n isBulkScanEnable;\n isRemissionsMatch: boolean;\n isRemoveBtnDisabled: boolean = false;\n feeId: IFee;\n clAmountDue: number = 0;\n unprocessedRecordCount: number;\n isFeeRecordsExist: boolean = false;\n isGrpOutstandingAmtPositive: boolean = false;\n totalRefundAmount: Number;\n caseType: String;\n // lsCcdNumber: any = ls.get<any>('ccdNumber');\n payment: IPayment;\n paymentGroup: IPaymentGroup;\n paymentView: IPaymentView;\n\n\n isAddRemissionEnable: boolean = false;\n orderRemissionDetails: any[] = [];\n orderLevelFees: IOrderReferenceFee[] = [];\n cpoDetails: any = null;\n serviceRequestValue: string;\n orderAddBtnEnable: boolean;\n\n isCPODown: boolean;\n test: boolean;\n isPBA: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n isAddRemissionBtnEnabled: boolean = false;\n isRefundRemissionBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n isFromServiceRequestPage: boolean;\n navigationpage: string;\n remissionFeeAmt: number;\n\n constructor(\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private OrderslistService: OrderslistService,\n private router: Router) { }\n\n ngOnInit() {\n if (this.viewStatus === undefined) {\n this.viewStatus = this.paymentLibComponent.viewName;\n }\n if(this.paymentLibComponent.isFromServiceRequestPage && this.paymentLibComponent.isFromPaymentDetailPage) {\n if(this.paymentLibComponent.isFromPaymentDetailPage && this.paymentLibComponent.isFromServiceRequestPage) {\n this.OrderslistService.getorderRefs().subscribe((data) => this.orderRef = data);\n this.OrderslistService.getorderCCDEvents().subscribe((data) => this.orderCCDEvent = data);\n this.OrderslistService.getorderCreateds().subscribe((data) => this.orderCreated = data);\n this.OrderslistService.getorderDetail().subscribe((data) => this.orderDetail = data);\n this.OrderslistService.getorderPartys().subscribe((data) => this.orderParty = data);\n this.OrderslistService.getorderRemissionTotals().subscribe((data) => this.orderRemissionTotal = data);\n this.OrderslistService.getorderFeesTotals().subscribe((data) => this.orderFeesTotal = data);\n this.OrderslistService.getoorderTotalPaymentss().subscribe((data) => this.orderTotalPayments = data);\n }\n }\n // if (this.takePayment) {\n // this.paymentLibComponent.TAKEPAYMENT = this.takePayment;\n // }\n }\n\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n this.OrderslistService.setnavigationPage('servicerequestpage');\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISBSENABLE = true;\n this.paymentLibComponent.isTakePayment = this.paymentLibComponent.TAKEPAYMENT;\n if (this.takePayment) {\n this.paymentLibComponent.isTakePayment = this.takePayment;\n }\n this.paymentLibComponent.SERVICEREQUEST = \"true\";\n this.paymentLibComponent.isFromServiceRequestPage = false;\n this.paymentLibComponent.isFromRefundStatusPage = false;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.resetOrderData();\n // this.OrderslistService.setisFromServiceRequestPage(false);\n // this.OrderslistService.setnavigationPage('servicerequestpage');\n // this.OrderslistService.setpaymentPageView({ method: this.payment.method, payment_group_reference: this.paymentGroupRef, reference: this.payment.reference });\n // this.OrderslistService.setnavigationPage('servicerequestpage');\n // let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n let partUrl = this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.paymentLibComponent.TAKEPAYMENT ? '&takePayment=true' : '&takePayment=false';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n const url = `/payment-history/${this.paymentLibComponent.CCD_CASE_NUMBER}?view=case-transactions&selectedOption=${this.paymentLibComponent.SELECTED_OPTION}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund()) {\n if (this.orderDetail[0]['remissions'].length > 0) {\n for (const remission of this.orderDetail[0]['remissions']) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n }\n return true;\n } else {\n return false;\n }\n }\n\n chkForPBAPayment(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n this.paymentLibComponent.paymentReference = payment.reference;\n this.isPBA = true;\n }\n });\n }\n });\n if (this.isPBA) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n addRemission(fee: IFee) {\n if(this.chkForAddRemission(fee.code)) {\n this.feeId = fee;\n this.viewStatus = 'addremission';\n this.payment = this.orderDetail[0].payments[0];\n this.paymentViewService.getApportionPaymentDetails(this.orderDetail[0].payments[0].reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n this.viewStatus = 'addrefundforremission';\n \n this.payment = payment;\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.payment.reference));\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n cancelRemoval() {\n this.viewStatus = 'main';\n }\n\n removeFee(fee: any) {\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n window.location.reload();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n this.isIssueRefunfBtnEnable = true;\n }\n if (this.isIssueRefunfBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n if (this.orderDetail !== null && this.orderDetail !== undefined) {\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n if (payment !== null && payment !== undefined) {\n let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\n }\n }\n\n issueRefund(payment: IPayment) {\n if (payment !== null && payment !== undefined) {\n if(this.chkIssueRefundBtnEnable(payment)) {\n this.viewStatus = 'issuerefund';\n this.payment = payment;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.isRefundRemission = true;\n }\n }\n }\n\n goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent({ paymentGroupReference, paymentReference, paymentMethod });\n }\n\n goToPaymentViewComponent(paymentGroup: any) {\n this.paymentLibComponent.paymentMethod = paymentGroup.paymentMethod;\n this.paymentLibComponent.isFromServiceRequestPage = true;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentGroup.paymentReference;\n this.OrderslistService.setOrderRef(this.orderRef);\n this.OrderslistService.setorderCCDEvent(this.orderCCDEvent);\n this.OrderslistService.setorderCreated(this.orderCreated);\n this.OrderslistService.setorderDetail(this.orderDetail);\n this.OrderslistService.setorderParty(this.orderParty);\n this.OrderslistService.setorderTotalPayments(this.orderTotalPayments);\n this.OrderslistService.setorderRemissionTotal(this.orderRemissionTotal);\n this.OrderslistService.setorderFeesTotal(this.orderFeesTotal);\n this.viewStatus = 'payment-view';\n }\n\n resetOrderData() {\n this.OrderslistService.setOrderRef(null);\n this.OrderslistService.setorderCCDEvent(null);\n this.OrderslistService.setorderCreated(null);\n this.OrderslistService.setorderDetail(null);\n this.OrderslistService.setorderParty(null);\n this.OrderslistService.setorderTotalPayments(null);\n this.OrderslistService.setorderRemissionTotal(null);\n this.OrderslistService.setorderFeesTotal(null);\n }\n}\n","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';\n// import { 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","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","messsage","undefined","JSON","parse","stringify","statusCode","_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","postBSPayments","https","postBSUnidentifiedPayments","postBSUnsolicitedPayments","postBSAllocationPayments","postPaymentGroupWithRemissions","feeId","deleteFeeFromPaymentGroup","postPaymentToPayHub","paymentGroupRef","postPaymentAntennaToPayHub","downloadSelectedReport","reportName","startDate","endDate","getBSfeature","getSiteID","getPartyDetails","caseNumber","postRefundsReason","postPaymentGroupWithRetroRemissions","postRefundRetroRemission","PaymentViewComponent","selectedOption","SELECTED_OPTION","dcnNumber","isTurnOff","ISTURNOFF","serviceReference","viewStatus","paymentViewService","paymentGroup","fees","fee","isRemissionsMatch","remissions","rem","fee_code","code","push","filter","paymentGroupObj","includes","paymentAllocation","payment_allocation","isStatusAllocated","allocation_status","console","log","defineProperty","method","channel","goToPaymentList","goToCaseTransationPage","event","preventDefault","data","ISBSENABLE","resetOrderData","addRemission","chkForAddRemission","reference","payment","isFromPaymentDetailPage","isRefundRemission","checkForFees","addRefundForRemission","remission","chkIsRefundRemissionBtnEnable","remissionFeeAmt","net_amount","toLocaleLowerCase","allowFurtherAccessAfter4Days","isRefundRemissionBtnEnable","issueRefund","paymentgrp","chkIssueRefundBtnEnable","getRemissionByFeeCode","feeCode","remissions_1","tslib_1.__values","remissions_1_1","check4AllowedRoles2AccessRefund","isIssueRefunfBtnEnable","chkForPBAPayment","_b","_c","isAddFeeBtnEnabled","allowedRolesToAccessRefund","some","role","indexOf","tmp4DayAgo","Date","setDate","getDate","date_created","RefundsService","getRefundReasons","getRefundRejectReasons","getRefundActions","refundReference","patchRefundActions","reviewerAction","getRefundList","refundstatus","selfexclusive","getRefundStatusHistory","getRefundStatusList","getUserDetails","postIssueRefund","putResendOrEdit","refundRef","notificationType","patchResubmitRefund","refund_reference","ProcessRefundComponent","refundActionList","getErrorMessage","processRefundForm","formBuilder","group","refundActionField","FormControl","Validators","compose","required","refundRejectReasonField","sendMeBackField","minLength","maxLength","pattern","enterReasonField","refundlistsource","ccd_case_number","response","cpoDetails","replace","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","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","ContactDetailsComponent","emailAddressForm","email","postCodeForm","postcode","manualAddressForm","addressl1","addressl2","townorcity","county","mpostcode","country","addressObj","setEditDetails","notification_type","isEmailSAddressClicked","isPostcodeClicked","isManualAddressClicked","setValue","contact_details","patchValue","address_line","city","postal_code","selectContactOption","isLinkedClied","finalFormSubmit","fieldCtrls","emailField","assignContactDetails","emit","postcodeValidation","postcodeField","redirection","redirectToIssueRefund","val","isEmailEmpty","emailHasError","isPostcodeEmpty","postcodeHasError","isaddressLine1Empty","addressLine1HasError","addressLine2HasError","isTownOrCityEmpty","townOrCityHasError","isCountyEmpty","countyHasError","isMPostcodeEmpty","mpostcodeHasError","isCountryEmpty","Output","EventEmitter","PbaDetailsComponent","noop","ConsoleLoggerService","apply","CaseTransactionsService","getPaymentGroups","BulkScaningPaymentService","getBSPaymentsByCCD","getBSPaymentsByDCN","dcn","postBSAllocatePayment","paymentRef","postBSPaymentStrategic","postBSWoPGStrategic","patchBSChangeStatus","calculateOutStandingAmount","feesTotal","paymentsTotal","remissionsTotal","calculated_amount","toUpperCase","amount","hwf_amount","removeUnwantedString","input","replaceText","CaseTransactionsComponent","paymentView","payment_group_reference","goToPayementView","isGrpOutstandingAmtPositive","CASETYPE","EXC_REFERENCE","excReference","takePayment","servicerequest","SERVICEREQUEST","serviceRequestValue","isBulkScanEnable","isNewPcipalOff","ISNEWPCIPALOFF","isOldPcipalOff","ISOLDPCIPALOFF","isStrategicFixEnable","ISSFENABLE","caseTransactionsService","paymentGroups","isAnyFeeGroupAvilable","calculateAmounts","calculateOrderFeesAmounts","totalRefundAmount","calculateRefundAmount","setDefaults","goToOrderViewDetailSection","checkForExceptionRecord","totalPayments","totalRemissions","totalNonOffPayments","totalFees","getAllocationStatus","bulkScaningPaymentService","recordData","exception_record_reference","ccd_reference","isExceptionRecord","case_reference","resetOrderVariables","orderStatus","orderAddBtnEnable","orderRefId","orderTotalFees","orderReferenceObj","x","redirectToOrderFeeSearchPage","orderef","nonOffLinePayment","a","b","amount_due","clAmountDue","allocationLen","nonPayments","allPayments","remisison","totalRefundAmount_1","isFeeAmountZero_1","grpOutstandingAmount","isFeeRecordsExist","isNewPaymentGroup_1","index","isHistoricGroupAvailable","getGroupOutstandingAmount","redirectToFeeSearchPage","navigateByUrl","redirectToremissionPage","redirectToReportsPage","loadFeeSummaryPage","goToPaymentViewComponent","selectedUnprocessedFeeEvent","unprocessedRecordId","isUnprocessedRecordSelected","getUnprocessedFeeCount","unProcessedRecordCount","unprocessedRecordCount","calculateAmountDue","confirmRemoveFee","isRemoveBtnDisabled","cancelRemoval","removeFee","success","window","location","reload","isCheckAmountdueExist","amountDue","isPBA","isAddRemissionEnable","orderRemissionDetails","isAddRemissionBtnEnabled","PaymentToPayhubRequest","currency","description","provider","toFixed","case_type","PayhubAntennaRequest","BS_ENABLE_FLAG","FeeSummaryComponent","bsPaymentDcnNumber","platForm","features","result","feature","uid","enable","getUnassignedPaymentlist","getPaymentGroup","unassignedPayments","service","responsible_service_id","upPaymentErrorMessage","currentFee","isPaymentExist","isRemissionsExist","totalAfterRemission","isFeeAmountZero","outStandingAmount","loadCaseTransactionPage","partUrl","cancelRemission","page","isConfirmationBtnDisabled","requestBody","antennaReqBody","go","payhubHtml","isBackButtonEnable","href","goToAllocatePage","Location","ErrorBannerComponent","UnidentifiedPaymentsRequest","payment_reference","unidentified_reason","payment_allocation_status","name","AllocatePaymentRequest","unAllocatedPayment","exceptionRecord","allocatedRequest","banked_date","date_banked","exception_record","document_control_number","dcn_reference","external_provider","giro_slip_no","bgc_reference","payer_name","payment_channel","payment_status","payment_method","payment_allocation_dto","MarkUnidentifiedPaymentComponent","getUnassignedPayment","markPaymentUnidentifiedForm","investicationDetail","unassignedRecord","siteID","beCcdNumber","beExceptionNumber","exceptionReference","ccdReference","trimUnderscore","saveAndContinue","investicationField","formerror","investigationComment","isInvesticationDetailEmpty","investicationDetailHasError","investicationDetailMinHasError","investicationDetailMaxHasError","confirmPayments","postStrategicBody","res1","res2","response2","reqBody","res3","gotoCasetransationPage","user_id","res","cancelMarkUnidentifiedPayments","UnsolicitedPaymentsRequest","responsible_office","responsible_person","email_id","receiving_office","receiving_email_address","sending_email_address","MarkUnsolicitedPaymentComponent","siteids","isContinueButtondisabled","siteIDList","scrollTo","markPaymentUnsolicitedForm","responsibleOffice","responsiblePerson","emailId","selectedSiteId","reasonField","officeIdField","reasonHasError","reasonMinHasError","reasonMaxHasError","isResponsibleOfficeEmpty","responsibleOfficeHasError","cancelMarkUnsolicitedPayments","checkingFormValue","formFields","valueExists","hasOwnProperty","selectchange","target","selectedSiteName","selectedIndex","text","UnprocessedPaymentsComponent","isNewpcipaloff","isOldpcipaloff","isStFixEnable","FEE_RECORDS_EXISTS","setValuesForUnassignedRecord","unassignedRecordList","unassignedRecordListLength","serviceId","isExceptionCase","unprocessedPaymentSelectEvent","formatUnassignedRecordId","ID","recordId","loadUnsolicitedPage","selectedRecordReference","validateButtons","resetButtons","isAllocateToExistingFeebtnEnabled","isMarkAsUnidentifiedbtnEnabled","isAllocatedToNewFeebtnEnabled","PAYMENTREF","IS_OS_AMT_AVAILABLE","unprocessedPaymentUnSelectEvent","showDetailRow","obj","unassignedRecordSelectedList","isRecordExist","ProcessedPaymentsComponent","redirectToPaymentViewPage","IAllocationPaymentsRequest","explanation","userName","user_name","AllocatePaymentsComponent","overUnderPaymentForm","moreDetails","fstCon","scndCn","selectedPaymentGroup","gotoSummaryPage","cancelAllocatePayment","confirmAllocatePayement","enCookieUserName","cookieUserName","decodeURIComponent","fullName","paymentDetailsField","paymentFormError","userNameField","isEmptyCondtion","paymentReason","paymentExplanation","isOtherOptionSelected","isRemainingAmountGtZero","isRemainingAmountLtZero","otherPaymentExplanation","finalServiceCall","paymentReasonHasError","paymentExplanationHasError","isPaymentDetailsEmpty","isPaymentDetailsInvalid","paymentDetailsMinHasError","paymentDetailsMaxHasError","isUserNameEmpty","isUserNameInvalid","GroupOutstandingAmount","remainingToBeAssigned","isMoreDetailsBoxHide","reset","paymentSectionLabel","feedbackUrlLabel","remainingAmount","afterFeeAllocateOutstanding","amountForAllocation","selectRadioButton","key","OrderListSelectEvent","reasonList","overPayment","hwfReward","wrongFee","notIssueCase","otherDeduction","shortFall","helpWithFee","other","explanationList","referRefund","noRefund","noCase","holdCase","heldCase","refund","duplicate","humanerror","caseWithdrawn","AddRemissionRequest","hwf_reference","AddRetroRemissionRequest","PostRefundRetroRemission","refund_reason","contactDeatils","PostIssueRefundRetroRemission","remissionReference","AddRemissionComponent","default","pattern1","pattern2","viewCompStatus","volume","remessionPayment","isPaymentSuccess","option","remissionForm","remissionCode","refundReason","refundDDReason","onlySelf","refundReasons","recently_used","commonRefundReasons","sort","toString","localeCompare","isFromRefundListPage","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","gotoAmountRetroRemission","gotoProcessRetroRemissionPage","gotoProcessRetroRemission","confirmRetroRemission","retroRemission","remissionamt","isRemissionApplied","remission_reference","processRefund","contactDetailsObj","refundAmount","refund_amount","gotoIssueRefundConfirmation","refundHasError","displayRefundReason","gotoIssueRefundPage","gotoContactDetailsPage","changeIssueRefundReason","confirmIssueRefund","confirmRetroRefund","localStorage","setItem","isRefundReasonsSelected","showReasonText","reasonLength","getContactDetails","gotoServiceRequestPage","sendOrderDetail","sendOrderRef","gotoAddressPage","gotoRemissionSuccess","gotoCasetransationPageCancelBtnClicked","getFormattedCurrency","concat","hasErrors","CcdHyphensPipe","transform","match","Pipe","CapitalizePipe","slice","keyValuePipe","keys","SanitizeHtmlPipe","sanitizer","bypassSecurityTrustHtml","DomSanitizer","XlFileService","exportAsExcelFile","json","excelFileName","worksheet","XLSX.utils","json_to_sheet","header","setDataLossReportHeaders","setUnprocessedReportHeaders","setProcessedUnallocatedReportHeaders","setShortFallReportHeaders","autoFitColumns","excelBuffer","XLSX.write","Sheets","SheetNames","bookType","saveAsExcelFile","objectMaxLength","ColWidth","values","j","width","A1","v","B1","C1","D1","E1","F1","G1","H1","I1","J1","K1","L1","M1","N1","buffer","fileName","Blob","FileSaver.saveAs","ReportsComponent","fromValidation","getToday","toISOString","getSelectedFromDate","validateDates","reportsForm","selectedStartDate","tranformDate","selectedEndDate","isDateRangeMoreThanWeek","isDateRangeBetnWeek","isStartDateLesthanEndDate","selectedreport","downloadReport","isDownLoadButtondisabled","dataLossRptDefault","loss_resp","payment_asset_dcn","env_ref","env_item","resp_service_id","resp_service_name","bgc_batch","unProcessedRptDefault","exception_ref","ccd_ref","processedUnallocated","allocation_reason","ccd_exception_ref","ccd_case_ref","updated_by","shortFallsRptDefault","surplus_shortfall","balance","payment_amount","ccd_case_reference","ccd_exception_reference","processed_date","selectedReportName","applyDateFormat","substr","convertToFloatValue","Op","xlFileService","getFileName","loc","stDt","formatDate","enDt","now","timestamp","getTwodigit","getHours","getMinutes","getSeconds","getCamelCaseString","strDate","parts","map","amt","Number","parseFloat","TableComponent","STATUS","toLowerCase","isApprovalFlow","DATASOURCE","dataSource","MatTableDataSource","actualcount","reduce","r","_a","user_full_name","ngAfterViewInit","paginator","cdRef","applyFilter","filterValue","goToRefundProcessComponent","refundData","goToRefundViewComponent","isCallFromRefundList","ViewChild","MatPaginator","MatSort","displayedColumns","NotificationService","getRefundNotification","getAddressByPostcode","IPutNotificationRequest","contactDetails","recipient_email_address","recipient_postal_address","IResubmitRefundRequest","RefundStatusComponent","refundlist","refundStatusForm","getRefundsNotification","getRefundsStatusHistoryList","isProcessRefund","refundButtonState","refund_status","statusHistoryList","refundStatusHistories","status_history_dto_list","isLastUpdatedByCurrentUser","last_updated_by_current_user","notificationService","refundsNotification","notificationList","goToRefundView","gotoReviewDetailsPage","gotoReviewAndReSubmitPage","oldRefundReason","changedAmount","refundreason","notes","gotoRefundReasonPage","isRefundBtnDisabled","gotoAmountPage","goToReviewAndSubmitView","getRefundListReason","refundCode","getRefundAmount","gotoReviewRefundConfirmationPage","resubmitRequest","gotoEditAddressDetails","note","notification","isEditDetailsClicked","addressDetails","gotoEditDetailsPage","submitEditDetail","isResendOperationSuccess","resendRequest","putResend","isEditAddressDeatilsClicked","ServiceRequestComponent","NgModule","imports","CommonModule","HttpClientModule","FormsModule","ReactiveFormsModule","MatTableModule","MatPaginatorModule","MatSortModule","MatFormFieldModule","MatInputModule","declarations","exports","providers","provide","useClass","PaymentLibModule"],"mappings":"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"}