@hmcts/ccpay-web-component 4.0.1-beta2 → 4.0.1-beta24

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 (80) hide show
  1. package/bundles/hmcts-ccpay-web-component.umd.js +1074 -461
  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 +28 -28
  6. package/esm2015/lib/components/add-remission/add-remission.component.js +255 -129
  7. package/esm2015/lib/components/allocate-payments/allocate-payments.component.js +25 -12
  8. package/esm2015/lib/components/case-transactions/case-transactions.component.js +144 -135
  9. package/esm2015/lib/components/fee-summary/fee-summary.component.js +4 -4
  10. package/esm2015/lib/components/payment-view/payment-view.component.js +141 -54
  11. package/esm2015/lib/components/pba-payment/pba-payment.component.js +194 -0
  12. package/esm2015/lib/components/process-refund/process-refund.component.js +91 -14
  13. package/esm2015/lib/components/refund-list/refund-list.component.js +5 -14
  14. package/esm2015/lib/components/refund-status/refund-status.component.js +63 -39
  15. package/esm2015/lib/components/reports/reports.component.js +8 -3
  16. package/esm2015/lib/components/status-history/status-history.component.js +2 -2
  17. package/esm2015/lib/components/table/table.component.js +25 -4
  18. package/esm2015/lib/components/unprocessed-payments/unprocessed-payments.component.js +4 -4
  19. package/esm2015/lib/interfaces/IRefundReasons.js +3 -1
  20. package/esm2015/lib/interfaces/IRefundStatusHistory.js +15 -0
  21. package/esm2015/lib/interfaces/IserviceRequestCardPayment.js +23 -0
  22. package/esm2015/lib/interfaces/IserviceRequestPbaPayment.js +28 -0
  23. package/esm2015/lib/payment-lib.component.js +23 -5
  24. package/esm2015/lib/payment-lib.module.js +5 -7
  25. package/esm2015/lib/services/orderslist.service.js +1 -1
  26. package/esm2015/lib/services/payment-view/payment-view.service.js +30 -2
  27. package/esm2015/lib/services/refunds/refunds.service.js +17 -10
  28. package/esm2015/lib/services/shared/error-handler.service.js +15 -2
  29. package/esm2015/lib/services/shared/httpclient/webcomponent.http.client.js +11 -2
  30. package/esm2015/lib/services/xl-file/xl-file.service.js +2 -2
  31. package/esm5/hmcts-ccpay-web-component.js +28 -28
  32. package/esm5/lib/components/add-remission/add-remission.component.js +262 -134
  33. package/esm5/lib/components/allocate-payments/allocate-payments.component.js +25 -12
  34. package/esm5/lib/components/case-transactions/case-transactions.component.js +149 -135
  35. package/esm5/lib/components/fee-summary/fee-summary.component.js +4 -4
  36. package/esm5/lib/components/payment-view/payment-view.component.js +159 -55
  37. package/esm5/lib/components/pba-payment/pba-payment.component.js +211 -0
  38. package/esm5/lib/components/process-refund/process-refund.component.js +147 -15
  39. package/esm5/lib/components/refund-list/refund-list.component.js +5 -14
  40. package/esm5/lib/components/refund-status/refund-status.component.js +65 -40
  41. package/esm5/lib/components/reports/reports.component.js +8 -3
  42. package/esm5/lib/components/status-history/status-history.component.js +2 -2
  43. package/esm5/lib/components/table/table.component.js +30 -4
  44. package/esm5/lib/components/unprocessed-payments/unprocessed-payments.component.js +4 -4
  45. package/esm5/lib/interfaces/IRefundReasons.js +3 -1
  46. package/esm5/lib/interfaces/IRefundStatusHistory.js +15 -0
  47. package/esm5/lib/interfaces/IserviceRequestCardPayment.js +22 -0
  48. package/esm5/lib/interfaces/IserviceRequestPbaPayment.js +25 -0
  49. package/esm5/lib/payment-lib.component.js +23 -5
  50. package/esm5/lib/payment-lib.module.js +5 -7
  51. package/esm5/lib/services/orderslist.service.js +1 -1
  52. package/esm5/lib/services/payment-view/payment-view.service.js +43 -2
  53. package/esm5/lib/services/refunds/refunds.service.js +17 -10
  54. package/esm5/lib/services/shared/error-handler.service.js +15 -2
  55. package/esm5/lib/services/shared/httpclient/webcomponent.http.client.js +11 -2
  56. package/esm5/lib/services/xl-file/xl-file.service.js +2 -2
  57. package/fesm2015/hmcts-ccpay-web-component.js +970 -441
  58. package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
  59. package/fesm5/hmcts-ccpay-web-component.js +1086 -454
  60. package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
  61. package/hmcts-ccpay-web-component.d.ts +27 -27
  62. package/hmcts-ccpay-web-component.metadata.json +1 -1
  63. package/lib/components/add-remission/add-remission.component.d.ts +27 -3
  64. package/lib/components/allocate-payments/allocate-payments.component.d.ts +3 -0
  65. package/lib/components/case-transactions/case-transactions.component.d.ts +4 -2
  66. package/lib/components/payment-view/payment-view.component.d.ts +7 -0
  67. package/lib/components/pba-payment/pba-payment.component.d.ts +27 -0
  68. package/lib/components/process-refund/process-refund.component.d.ts +9 -2
  69. package/lib/components/refund-status/refund-status.component.d.ts +4 -2
  70. package/lib/components/table/table.component.d.ts +1 -0
  71. package/lib/interfaces/IRefundReasons.d.ts +1 -0
  72. package/lib/interfaces/IRefundStatusHistory.d.ts +5 -0
  73. package/lib/interfaces/IserviceRequestCardPayment.d.ts +6 -0
  74. package/lib/interfaces/IserviceRequestPbaPayment.d.ts +7 -0
  75. package/lib/payment-lib.component.d.ts +6 -2
  76. package/lib/services/payment-view/payment-view.service.d.ts +5 -0
  77. package/package.json +5 -1
  78. package/esm2015/lib/components/refunds/refunds.component.js +0 -23
  79. package/esm5/lib/components/refunds/refunds.component.js +0 -29
  80. package/lib/components/refunds/refunds.component.d.ts +0 -5
@@ -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/refunds/refunds.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/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 { Component, Input, OnInit } from '@angular/core';\nimport { PaymentLibService } from './payment-lib.service';\nimport { IBSPayments } from './interfaces/IBSPayments';\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 <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 <ccpay-refunds *ngIf=\"viewName === 'remission'\"></ccpay-refunds>\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 // isFromServiceRequestPage: boolean;\n\n constructor(private paymentLibService: PaymentLibService) { }\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';\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) {\n errorMessage = JSON.parse(err.error)[\"err\"].split('-')[1];\n }\n else if (err.error.messsage === undefined) {\n errorMessage = 'Server error';\n } else {\n errorMessage = `${err.error.message}`;\n }\n }\n return _throw(errorMessage);\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 if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n headers['CSRF-Token'] = csrfToken.content;\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 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-remisstion`, 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\n constructor(private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) {\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.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.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\n addRemission(fee: IFee) {\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 issueRefund(paymentgrp: IPaymentGroup) {\n this.paymentGroup = paymentgrp;\n this.viewStatus = 'issuerefund';\n this.isRefundRemission = true;\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 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 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 let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\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 { IRefundStatus } from '../../interfaces/IRefundStatus';\nimport { IResubmitRefundRequest } from '../../interfaces/IResubmitRefundRequest';\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 }\npatchRefundActions(body:IPatchRefundAction, refundReference: string, reviewerAction: string): Observable<any> {\n const opts = this.addHeaders({});\n return this.http.patch<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/${refundReference}/action/${reviewerAction}`, body, opts)\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n getRefundList(refundstatus?: string, selfexclusive?:boolean): Observable<IRefundList[]> {\n return this.http.get<IRefundList[]>(`${this.paymentLibService.REFUNDS_API_ROOT}/get-refund-list?status=${refundstatus}&selfExclusive=${selfexclusive}`, \n {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundStatusHistory(reference?: string) {\n return this.http.get<IRefundStatus[]>(`${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}/get-refund-status-list?ccdCaseNumber=${ccdCaseNumber}`, {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\n getUserDetails(): 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 \n postIssueRefund(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\n patchResubmitRefund(body: IResubmitRefundRequest, refund_reference: string): Observable<any> {\n const opts = this.addHeaders({});\n return this.http.patch<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/resubmit/${refund_reference}`, body,opts).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n addHeaders(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 headers['CSRF-Token'] = csrfToken.content;\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';\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\n isConfirmButtondisabled: boolean = true;\n constructor(private RefundsService: RefundsService,\n private formBuilder: FormBuilder) {\n }\n\n ngOnInit() {\n this.viewStatus = 'RefundProcess';\n this.RefundsService.getRefundActions(this.refundReference).subscribe(\n refundActionList => {\n this.refundActionList = <any>refundActionList.data;\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, 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.data;\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, 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 },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, 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) {\n let bodyTxt = 'Please try again later';\n if (status !== 500) {\n bodyTxt = errorMsg;\n }\n return {\n title: 'Something went wrong',\n body: bodyTxt,\n showError: isErrorExist\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 = '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.refundService.getUserDetails().subsc\n // userdetail => { \n // console.log('govindu');\n // console.log(userdetail.headers);\n // console.log('govindu1');\n // console.log(userdetail.headers.get('Set-Cookie'));\n // console.log(userdetail);\n // console.log(userdetail['data']);\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,true).subscribe(\n refundList => {\n this.submittedRefundList = refundList['data']['refund_list'];\n this.isApproveTableVisible = true;\n }\n ),\n (error: any) => {\n this.errorMessage = error;\n };\n }\n\n this.refundService.getRefundList(this.rejectStatus,false).subscribe(\n refundList => {\n this.rejectedRefundList = refundList['data']['refund_list'];\n this.isRejectTableVisible = true;\n }\n ),\n (error: any) => {\n this.errorMessage = error;\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\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 * 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 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 isEligible4PBAPayment = ['pui-finance-manager', 'pui-user-manager', 'pui-organisation-manager', 'pui-case-manager'];\n currentDate = new Date();\n isFromServiceRequestPage: boolean;\n navigationpage: string;\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.OrderslistService.getpaymentPageView().subscribe((data)=> this.paymentView = data);\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n if (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 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.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;\n this.isCPODown = true;\n }\n );\n\n },\n (error: any) => {\n this.errorMessage = <any>error;\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n } else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\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;\n this.setDefaults();\n this.isCPODown = true;\n }\n );\n\n },\n (error: any) => {\n this.errorMessage = <any>error;\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n }\n this.checkForExceptionRecord();\n this.OrderslistService.getisFromServiceRequestPages().subscribe((data) => this.isFromServiceRequestPage = data)\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 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 event.preventDefault();\n // if(!this.isAnyFeeGroupAvilable || this.isTurnOff) {\n // let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n // url += this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n // url += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n // url +=`&caseType=${this.caseType}`\n // url += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n // url += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n\n // this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}${url}`);\n // } else {\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = orderef;\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 // 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\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 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\n );\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[]) {\n this.viewStatus = 'addrefundforremission';\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 // 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 // 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 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 this.viewStatus = 'issuerefund';\n this.payment = payment;\n this.isRefundRemission = true;\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 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 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 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') {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\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 check4AllowedRoles2AccessPBApayment = (): boolean => {\n return this.isEligible4PBAPayment.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n let tmp4DayAgo = this.currentDate;\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n let paymentDate = new Date(payment.date_created);\n return tmp4DayAgo >= paymentDate;\n }\n // this.allowPaymentAfter4Days(payment)\n}\n\n","export class PaymentToPayhubRequest {\n currency = 'GBP';\n description = 'PayBubble payment';\n channel = 'telephony';\n provider = 'pci pal';\n case_type: string;\n\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.case_type= caseType;\n }\n}\n","export class PayhubAntennaRequest {\n currency = 'GBP';\n case_type: string;\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.case_type= caseType;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IFee } from '../../interfaces/IFee';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { PayhubAntennaRequest } from '../../interfaces/PayhubAntennaRequest';\nimport { SafeHtml } from '@angular/platform-browser';\nimport {Router} from '@angular/router';\nimport {Location} from '@angular/common';\nimport { OrderslistService } from '../../services/orderslist.service';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-fee-summary',\n templateUrl: './fee-summary.component.html',\n styleUrls: ['./fee-summary.component.scss']\n})\n\nexport class FeeSummaryComponent implements OnInit {\n @Input() paymentGroupRef: string;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: string;\n @Input() caseType: string;\n @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\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 = false;\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\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 const paymentDetailsField = this.overUnderPaymentForm.controls.moreDetails,\n paymentFormError = this.overUnderPaymentForm.controls.moreDetails.errors,\n userNameField = this.overUnderPaymentForm.controls.userName,\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.valid || isOtherOptionSelected && userNameField.valid && paymentDetailsField.valid)) {\n this.isConfirmButtondisabled = true;\n this.otherPaymentExplanation = this.paymentExplanation === 'Other' ? paymentDetailsField.value : this.paymentExplanation;\n this.userName = userNameField.value;\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.value === \"\") {\n this.resetForm([false, false, false, false, false, false, true, false], 'username');\n }\n if(userNameField.value !== \"\" && userNameField.invalid) {\n this.resetForm([false, false, false, false, false, false, false, true], '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 a surplus of',\n reason: 'Provide a reason. This will be used in the Refund process.',\n }: this.isRemainingAmountLtZero ? { \n title: 'There is a shortfall 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}","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 @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 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 // refundReasons:IRefundReasons[];\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 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('', Validators.compose([\n Validators.required,\n Validators.pattern('^([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]{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 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['data'].filter((data) => data.recently_used === false);\n this.cd.detectChanges();\n this.commonRefundReasons = refundReasons['data'].filter((data) => data.recently_used === true);\n this.cd.detectChanges();\n } );\n }\n \n if(this.viewCompStatus === 'processretroremissonpage' && this.isFromRefundListPage){\n this.viewStatus = 'processretroremissonpage';\n }\n\n // this.refundService.getUserDetails().subscribe(\n // userdetail => { \n // console.log(userdetail);\n // console.log(userdetail['data']);\n // } );\n this.paymentLibComponent.CCD_CASE_NUMBER\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.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.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 && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n }\n \n }\n }\n\n\n gotoAddRetroRemissionCodePage() {\n\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.paymentMethod = this.payment.method;\n // this.paymentLibComponent.paymentGroupReference = this.paymentGroupRef;\n // this.paymentLibComponent.paymentReference = this.payment.payment_group_reference;\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 == '' ) {\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 == '' ) {\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 this.isConfirmationBtnDisabled = true;\n this.retroRemission = true;\n this.remissionamt = this.remissionForm.controls.amount.value;\n\n // if(this.remessionPayment.status === 'Success') {\n // if(this.fee.calculated_amount.toString() === this.remissionForm.controls.amount.value) {\n // this.remissionamt =this.remissionForm.controls.amount.value\n // }\n // else \n // {\n // this.remissionamt = this.fee.calculated_amount - this.remissionForm.controls.amount.value;\n // }\n\n // } else {\n // this.remissionamt = this.remissionForm.controls.amount.value;\n // }\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 //if (this.retroRemission) {\n // } else {\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 \n // }else {\n // this.gotoCasetransationPage();\n // }\n // }\n\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\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 \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 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) {\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.selectedRefundReason = 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 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.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 // const requestBody = new IssueRefundRequest(this.payment.reference,'RR004-Retro remission',this.payment.amount);\n \n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'retrorefundconfirmationpage';\n this.refundReference =JSON.parse(response).refund_reference;\n if(JSON.parse(response).refund_amount) {\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n });\n }\n\n selectRadioButton(key, value) {\n localStorage.setItem(\"myradio\", key);\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundDDReason'].setValue('Select a different reason', {onlySelf: true});\n // remissionctrls['refundDDReason'].reset();\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 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() {\n event.preventDefault();\n this.viewStatus = 'main'\n this.OrderslistService.setpaymentPageView(null);\n this.paymentLibComponent.viewName = 'case-transactions';\n this.OrderslistService.setisFromServiceRequestPage(true);\n this.OrderslistService.setnavigationPage('servicerequestpage');\n this.paymentLibComponent.isFromServiceRequestPage = true;\n }\n\n gotoCasetransationPage() {\n if (this.isFromServiceRequestPage) {\n this. gotoServiceRequestPage();\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 this.OrderslistService.setpaymentPageView({method: this.payment.method,payment_group_reference: this.paymentGroupRef, reference:this.payment.reference});\n this.OrderslistService.setnavigationPage('paymentdetailspage');\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\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 const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=true&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n } else {\n this.paymentLibComponent.viewName === 'refundstatuslist';\n this.paymentLibComponent.isFromRefundStatusPage = true;\n }\n\n }\n\n goToServiceRequestPage() {\n this.paymentLibComponent.viewName\n }\n getFormattedCurrency(currency:number){\n if(currency.toString().includes(\".\")){\n return currency\n }\n return currency.toString().concat(\".00\");\n }\n // continueRemission(){\n // this.resetRemissionForm([false, false, false, false, false], 'All');\n // const remissionctrls=this.remissionForm.controls,\n // isRemissionLessThanFee = this.fee.calculated_amount > remissionctrls.amount.value; \n // if (this.remissionForm.dirty && this.remissionForm.valid && isRemissionLessThanFee) {\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 && !isRemissionLessThanFee){\n // this.resetRemissionForm([false, false, false, false, true], 'amount');\n // }\n \n // }\n \n // }\n\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'ccdHyphens'\n})\nexport class CcdHyphensPipe implements PipeTransform {\n constructor() {}\n transform(value: any, args?: any): any {\n const pattern = /^([0-9]{4})+([0-9]{4})+([0-9]{4})+([0-9]{4})$/;\n if ( value.match(pattern)) {\n return value.replace(pattern,'$1-$2-$3-$4') \n }\n return value;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'capitalize'\n})\nexport class CapitalizePipe implements PipeTransform {\n constructor() { }\n transform(s: any, args?: any): any {\n return s && s[0].toUpperCase() + s.slice(1) || \"\";\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'keyValue'\n})\nexport class keyValuePipe implements PipeTransform {\n constructor() {}\n transform(input: any): any {\n let keys = [];\n for (let key in input) {\n if (input.hasOwnProperty(key)) {\n keys.push({ key: key, value: input[key]});\n }\n }\n return keys;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\nimport { DomSanitizer, SafeHtml } from '@angular/platform-browser';\n\n@Pipe({ name: 'sanitizeHtml' })\nexport class SanitizeHtmlPipe implements PipeTransform {\n constructor(private sanitizer: DomSanitizer) {}\n transform(value: any): SafeHtml {\n return this.sanitizer.bypassSecurityTrustHtml(value);\n }\n}\n","import { Injectable } from '@angular/core';\nimport * as FileSaver from 'file-saver';\nimport * as XLSX from 'xlsx';\nimport * as XLSXStyle from 'xlsx-style';\n\n\nconst EXCEL_TYPE = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8';\nconst EXCEL_EXTENSION = '.xlsx';\n\n@Injectable()\nexport class XlFileService {\n\n constructor() { }\n\n public exportAsExcelFile(json: any[], excelFileName: string): void {\n let worksheet: XLSX.WorkSheet; \n let workbook: XLSX.WorkBook; \n\n if(excelFileName.match('Data_Loss')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['loss_resp','payment_asset_dcn','env_ref','env_item','resp_service_id','resp_service_name','date_banked','bgc_batch','payment_method','amount']});\n worksheet = this.setDataLossReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Unprocessed')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','exception_ref','ccd_ref','date_banked','bgc_batch','payment_asset_dcn','env_ref','env_item','payment_method','amount']});\n worksheet = this.setUnprocessedReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Processed_Unallocated')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','allocation_status','receiving_office','allocation_reason','ccd_exception_reference','ccd_case_reference','payment_asset_dcn','env_ref','env_item','date_banked','bgc_batch','payment_method','amount']});\n worksheet = this.setProcessedUnallocatedReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else {\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','surplus_shortfall','balance','payment_amount','ccd_case_reference', 'ccd_exception_reference', 'processed_date', 'reason', 'explanation', 'user_name']});\n worksheet = this.setShortFallReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n }\n workbook = { Sheets: { 'data': worksheet }, SheetNames: ['data'] };\n const excelBuffer: any = XLSX.write(workbook, { bookType: 'xlsx', type: 'array' });\n this.saveAsExcelFile(excelBuffer, excelFileName);\n }\n\n\nprivate autoFitColumns (worksheet: XLSX.WorkSheet,json:any) : XLSX.WorkSheet {\n let objectMaxLength = []; \n let ColWidth = [];\n let obj = <any>Object;\n for (let i = 0; i < json.length; i++) {\n let value = obj.values(json[i]);\n let key = obj.keys(json[i]);\n for (let j = 0; j < value.length; j++) {\n if(value[j] === null){\n value[j] = '';\n }\n objectMaxLength[j] =\n key[j].length >= value[j].length\n ? key[j].length+2\n : value[j].length+1;\n if( value[j].length === undefined){\n objectMaxLength[j] = key[j].length+2;\n }\n ColWidth.push({'width': +objectMaxLength[j]});\n }\n }\n worksheet['!cols'] = ColWidth;\n return worksheet;\n}\n\n\nprivate setDataLossReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Loss_Resp\";\n worksheet.B1.v = \"Payment_Asset_DCN\";\n worksheet.C1.v = \"Envelope_Ref\";\n worksheet.D1.v = \"Envelope_Item\";\n worksheet.E1.v = \"Resp_Service ID\";\n worksheet.F1.v = \"Resp_Service Name\";\n worksheet.G1.v = \"Date_Banked\";\n worksheet.H1.v = \"BGC_Batch\";\n worksheet.I1.v = \"Payment_Method\";\n worksheet.J1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setUnprocessedReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Exception_Ref\";\n worksheet.D1.v = \"CCD_Ref\";\n worksheet.E1.v = \"Date_Banked\";\n worksheet.F1.v = \"BGC_Batch\";\n worksheet.G1.v = \"Payment_Asset_DCN\";\n worksheet.H1.v = \"Envelope_Ref\";\n worksheet.I1.v = \"Envelope_Item\";\n worksheet.J1.v = \"Payment_Method\";\n worksheet.K1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setProcessedUnallocatedReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Allocation_Status\";\n worksheet.D1.v = \"Receiving_Office\";\n worksheet.E1.v = \"Allocation_Reason\";\n worksheet.F1.v = \"CCD_Exception_Ref\";\n worksheet.G1.v = \"CCD_Case_Ref\";\n worksheet.H1.v = \"Payment_Asset_DCN\";\n worksheet.I1.v = \"Envelope_Ref\";\n worksheet.J1.v = \"Envelope_Item\";\n worksheet.K1.v = \"Date_Banked\";\n worksheet.L1.v = \"BGC_Batch\";\n worksheet.M1.v = \"Payment_Method\";\n worksheet.N1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setShortFallReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Surplus_Shortfall\";\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 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 = 'Surplus_Shortfall';\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, OnInit } from '@angular/core';\n\n@Component({\n selector: 'ccpay-refunds',\n templateUrl: './refunds.component.html',\n styleUrls: ['./refunds.component.css']\n})\nexport class RefundsComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit() {\n }\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 {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\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 \n displayedColumns = ['ccdCaseNumber', 'refundReference', 'reason', 'createBy', 'updateDate', 'Action'];\n dataSource: MatTableDataSource<any>;\n userLst;\n actualcount: number;\n count: number;\n refundList: IRefundList[];\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n\n constructor(\n private paymentLibComponent: PaymentLibComponent,\n private cdRef: ChangeDetectorRef,\n private OrderslistService: OrderslistService\n ) {}\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 }\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 this.dataSource.paginator = this.paginator;\n this.dataSource.sort = this.sort;\n this.cdRef.detectChanges();\n }\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\n selectchange(args){ \n this.dataSource.filter = args.target.value;\n this.actualcount = this.dataSource.data.length;\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\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}\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 = 'sent back';\n errorMessage = null;\n viewName: string;\n refundReason: string;\n refundlist: IRefundList;\n bsPaymentDcnNumber: string;\n isCallFromRefundList: boolean;\n refundButtonState: string = '';\n isAmountEmpty: boolean = false;\n isReasonEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n refundHasError: boolean = false;\n refundReasons: any[] = [];\n refundStatusHistories: IRefundStatus[];\n refundReference: string;\n refundAmount: string;\n refundCode: string;\n isRefundBtnDisabled: boolean = true;\n oldRefundReason: string;\n refundreason: string;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n navigationpage: string;\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 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['data']['refund_list'];\n }\n ),\n (error: any) => {\n this.errorMessage = error;\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]{2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl()\n });\n\n this.getRefundsStatusHistoryList();\n \n this.allowedRolesToAccessRefund.forEach((role) => {\n if (this.LOGGEDINUSERROLES.indexOf(role) !== -1) {\n this.refundButtonState = this.refundlist.refund_status.name;\n }\n });\n }\n\n getRefundsStatusHistoryList() {\n this.refundService.getRefundStatusHistory(this.refundlist.refund_reference).subscribe(\n statusHistoryList => {\n this.refundStatusHistories = statusHistoryList['data'];\n }\n ),\n (error: any) => {\n this.errorMessage = error;\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=true&${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() {\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.refundreason = this.refundStatusHistories.filter(data => data.status==='sentback')[0].notes;\n this.refundService.getRefundReasons().subscribe(\n refundReasons => {\n this.refundReasons = refundReasons['data'];\n });\n }\n gotoRefundReasonPage() {\n this.isRefundBtnDisabled = false;\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.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.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.refundlist.amount);\n this.refundService.patchResubmitRefund(resubmitRequest,this.refundlist.refund_reference).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.refundReference = JSON.parse(response).data.refund_reference;\n this.refundAmount = JSON.parse(response).data.refund_amount;\n this.viewName = 'reviewrefundconfirmationpage';\n }\n },\n (error: any) => {\n this.errorMessage = error;\n }\n );\n \n }\n\n goToRefundProcessComponent(refundReference: string, refundList: IRefundList ) {\n this.paymentLibComponent.refundlistsource = refundList;\n this.paymentLibComponent.refundReference = refundReference;\n this.paymentLibComponent.viewName = 'process-refund';\n }\n\n}\n","import { 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 { RefundsComponent } from './components/refunds/refunds.component';\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';\nimport { BrowserAnimationsModule } from '@angular/platform-browser/animations';\nimport { NoopAnimationsModule } from '@angular/platform-browser/animations';\nimport { RefundStatusComponent } from './components/refund-status/refund-status.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 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 RefundsComponent,\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","ngOnInit","paymentLibService","PAYMENT_GROUP_REF","paymentGroupReference","DCN_NUMBER","bspaymentdcn","REFUNDLIST","VIEW","viewName","Component","selector","template","Input","unProcessedPaymentServiceId","unProcessedPayment","ErrorHandlerService","handleError","err","errorMessage","error","Error","message","status","JSON","parse","split","messsage","undefined","_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","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","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","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","features","result","feature","uid","ISBSENABLE","enable","addRemission","reference","payment","isFromPaymentDetailPage","isRefundRemission","cd","detectChanges","issueRefund","paymentgrp","getRemissionByFeeCode","feeCode","remissions_1","tslib_1.__values","remissions_1_1","remission","chkIssueRefundBtnEnable","check4AllowedRoles2AccessRefund","allowFurtherAccessAfter4Days","toLocaleLowerCase","isIssueRefunfBtnEnable","chkForPBAPayment","chkForAddRemission","_b","_c","ChangeDetectorRef","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","invalid","minlength","actualLength","maxlength","errorMsg","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","replace","CaseTransactionsComponent","data","paymentView","navigationpage","payment_group_reference","goToPayementView","isGrpOutstandingAmtPositive","CASETYPE","EXC_REFERENCE","excReference","takePayment","TAKEPAYMENT","servicerequest","SERVICEREQUEST","serviceRequestValue","isBulkScanEnable","isNewPcipalOff","ISNEWPCIPALOFF","isOldPcipalOff","ISOLDPCIPALOFF","isStrategicFixEnable","ISSFENABLE","caseTransactionsService","paymentGroups","calculateAmounts","calculateOrderFeesAmounts","totalRefundAmount","calculateRefundAmount","cpoDetails","setDefaults","isCPODown","isAnyFeeGroupAvilable","lsCcdNumber","router","navigateByUrl","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","net_amount","allocationLen","nonPayments","allPayments","remisison","totalRefundAmount_1","isFeeAmountZero_1","grpOutstandingAmount","isFeeRecordsExist","isNewPaymentGroup_1","index","isHistoricGroupAvailable","getGroupOutstandingAmount","redirectToFeeSearchPage","addRefundForRemission","redirectToremissionPage","redirectToReportsPage","loadFeeSummaryPage","goToPaymentViewComponent","selectedUnprocessedFeeEvent","unprocessedRecordId","isUnprocessedRecordSelected","getUnprocessedFeeCount","unProcessedRecordCount","unprocessedRecordCount","calculateAmountDue","confirmRemoveFee","isRemoveBtnDisabled","cancelRemoval","removeFee","success","window","location","reload","isCheckAmountdueExist","amountDue","isPBA","chkIsRefundRemissionBtnEnable","isRefundRemissionBtnEnable","Router","ls.get","isAddRemissionEnable","orderRemissionDetails","isAddRemissionBtnEnabled","isEligible4PBAPayment","currentDate","check4AllowedRoles2AccessPBApayment","PaymentToPayhubRequest","currency","description","provider","toFixed","case_type","PayhubAntennaRequest","BS_ENABLE_FLAG","FeeSummaryComponent","bsPaymentDcnNumber","platForm","getUnassignedPaymentlist","getPaymentGroup","unassignedPayments","service","responsible_service_id","upPaymentErrorMessage","currentFee","isPaymentExist","isRemissionsExist","totalAfterRemission","isFeeAmountZero","outStandingAmount","loadCaseTransactionPage","partUrl","cancelRemission","page","isConfirmationBtnDisabled","requestBody","antennaReqBody","go","payhubHtml","isBackButtonEnable","href","goToAllocatePage","Location","ErrorBannerComponent","UnidentifiedPaymentsRequest","payment_reference","unidentified_reason","payment_allocation_status","name","AllocatePaymentRequest","unAllocatedPayment","exceptionRecord","allocatedRequest","banked_date","date_banked","exception_record","document_control_number","dcn_reference","external_provider","giro_slip_no","bgc_reference","payer_name","payment_channel","payment_status","payment_method","payment_allocation_dto","MarkUnidentifiedPaymentComponent","getUnassignedPayment","markPaymentUnidentifiedForm","investicationDetail","unassignedRecord","siteID","beCcdNumber","beExceptionNumber","exceptionReference","ccdReference","trimUnderscore","saveAndContinue","investicationField","formerror","investigationComment","val","isInvesticationDetailEmpty","investicationDetailHasError","investicationDetailMinHasError","investicationDetailMaxHasError","confirmPayments","postStrategicBody","res1","res2","response2","reqBody","res3","gotoCasetransationPage","user_id","res","cancelMarkUnidentifiedPayments","UnsolicitedPaymentsRequest","responsible_office","responsible_person","email_id","receiving_office","receiving_email_address","sending_email_address","MarkUnsolicitedPaymentComponent","siteids","isContinueButtondisabled","siteIDList","scrollTo","markPaymentUnsolicitedForm","responsibleOffice","responsiblePerson","emailId","selectedSiteId","reasonField","officeIdField","reasonHasError","reasonMinHasError","reasonMaxHasError","isResponsibleOfficeEmpty","responsibleOfficeHasError","cancelMarkUnsolicitedPayments","checkingFormValue","setValue","formFields","valueExists","hasOwnProperty","selectchange","target","selectedSiteName","selectedIndex","text","UnprocessedPaymentsComponent","isNewpcipaloff","isOldpcipaloff","isStFixEnable","FEE_RECORDS_EXISTS","setValuesForUnassignedRecord","emit","unassignedRecordList","unassignedRecordListLength","serviceId","isExceptionCase","unprocessedPaymentSelectEvent","formatUnassignedRecordId","ID","recordId","loadUnsolicitedPage","selectedRecordReference","validateButtons","resetButtons","isAllocateToExistingFeebtnEnabled","isMarkAsUnidentifiedbtnEnabled","isAllocatedToNewFeebtnEnabled","PAYMENTREF","IS_OS_AMT_AVAILABLE","unprocessedPaymentUnSelectEvent","showDetailRow","obj","unassignedRecordSelectedList","Output","EventEmitter","isRecordExist","ProcessedPaymentsComponent","redirectToPaymentViewPage","IAllocationPaymentsRequest","explanation","userName","user_name","AllocatePaymentsComponent","overUnderPaymentForm","moreDetails","fstCon","scndCn","selectedPaymentGroup","gotoSummaryPage","cancelAllocatePayment","confirmAllocatePayement","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","volume","remessionPayment","isPaymentSuccess","option","remissionForm","remissionCode","refundReason","refundDDReason","onlySelf","viewCompStatus","refundReasons","recently_used","commonRefundReasons","isFromRefundListPage","resetRemissionForm","remissionctrls","isRemissionLessThanFee","setErrors","confirmRemission","newNetAmount","remissionAmount","decodeURIComponent","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","gotoIssueRefundPage","changeIssueRefundReason","confirmIssueRefund","confirmRetroRefund","localStorage","setItem","isRefundReasonsSelected","showReasonText","gotoServiceRequestPage","goToServiceRequestPage","getFormattedCurrency","toString","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","xlFileService","getFileName","loc","stDt","formatDate","enDt","now","timestamp","getTwodigit","getHours","getMinutes","getSeconds","getCamelCaseString","strDate","parts","map","amt","Number","parseFloat","RefundsComponent","TableComponent","STATUS","toLowerCase","isApprovalFlow","DATASOURCE","dataSource","MatTableDataSource","actualcount","reduce","r","_a","user_full_name","ngAfterViewInit","paginator","sort","cdRef","applyFilter","filterValue","goToRefundProcessComponent","refundDate","refundlistsource","goToRefundViewComponent","refundData","isRefundStatusView","isCallFromRefundList","ViewChild","MatPaginator","MatSort","displayedColumns","IResubmitRefundRequest","RefundStatusComponent","refundlist","refundStatusForm","getRefundsStatusHistoryList","refundButtonState","refund_status","statusHistoryList","refundStatusHistories","goToRefundView","loadRefundListPage","gotoReviewDetailsPage","gotoReviewAndReSubmitPage","oldRefundReason","refundreason","notes","gotoRefundReasonPage","isRefundBtnDisabled","gotoAmountPage","goToReviewAndSubmitView","getRefundListReason","refundCode","getRefundAmount","gotoReviewRefundConfirmationPage","resubmitRequest","NgModule","imports","CommonModule","HttpClientModule","FormsModule","ReactiveFormsModule","MatTableModule","MatPaginatorModule","MatSortModule","MatFormFieldModule","MatInputModule","BrowserAnimationsModule","NoopAnimationsModule","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/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';\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.status === 400) {\n if (typeof err !== 'string') {\n errorMessage = JSON.parse(err.error)[\"error\"]; \n } \n if (errorMessage === '') {\n errorMessage = err.error.toString().replace(/\"/g,\"\");\n }\n }\n else if (err.error) {\n if (typeof err.error === 'string') {\n errorMessage = err.error.toString().replace(/\"/g,\"\");\n } else {\n errorMessage = Object.values(err.error)[0].toString().replace(/\"/g,\"\");\n }\n \n }\n else if (err.error.messsage === undefined) {\n errorMessage = 'Server error';\n } else {\n errorMessage = `${err.error.message}`;\n }\n }\n return _throw(errorMessage);\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\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.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}&selfExclusive=${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).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 = '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.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,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 // 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 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\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.selectedRefundReason = 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 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', 'reason', 'user_full_name', '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 = 'sent back';\n errorMessage = null;\n viewName: string;\n refundReason: string;\n refundlist: IRefundList;\n bsPaymentDcnNumber: string;\n isCallFromRefundList: boolean;\n refundButtonState: string = '';\n isAmountEmpty: boolean = false;\n isReasonEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n refundHasError: boolean = false;\n refundReasons: any[] = [];\n refundStatusHistories: IRefundStatus[];\n refundReference: string;\n refundAmount: string;\n refundCode: string;\n isRefundBtnDisabled: boolean = true;\n oldRefundReason: string;\n refundreason: string;\n navigationpage: string;\n isLastUpdatedByCurrentUser: boolean = true;\n isProcessRefund: boolean = false;\n changedAmount: number;\n\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 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 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 === 'sentback')[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\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\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","JSON","parse","toString","replace","Object","values","messsage","undefined","_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","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","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","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","refundReasons","recently_used","commonRefundReasons","sort","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","gotoIssueRefundPage","changeIssueRefundReason","confirmIssueRefund","confirmRetroRefund","localStorage","setItem","onlySelf","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","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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"}