@hmcts/ccpay-web-component 4.0.0-beta60 → 4.0.0-beta601
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.
- package/bundles/hmcts-ccpay-web-component.umd.js +6677 -2481
- package/bundles/hmcts-ccpay-web-component.umd.js.map +1 -1
- package/bundles/hmcts-ccpay-web-component.umd.min.js +1 -1
- package/bundles/hmcts-ccpay-web-component.umd.min.js.map +1 -1
- package/esm2015/hmcts-ccpay-web-component.js +33 -26
- package/esm2015/lib/components/add-remission/add-remission.component.js +832 -135
- package/esm2015/lib/components/allocate-payments/allocate-payments.component.js +321 -209
- package/esm2015/lib/components/card-details/card-details.component.js +22 -57
- package/esm2015/lib/components/case-transactions/case-transactions.component.js +916 -350
- package/esm2015/lib/components/error-banner/error-banner.component.js +5 -17
- package/esm2015/lib/components/fee-summary/fee-summary.component.js +229 -231
- package/esm2015/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.js +137 -156
- package/esm2015/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.js +178 -177
- package/esm2015/lib/components/page-not-found.component.js +3 -4
- package/esm2015/lib/components/payment-list/payment-list.component.js +22 -80
- package/esm2015/lib/components/payment-view/payment-view.component.js +333 -125
- package/esm2015/lib/components/pba-details/pba-details.component.js +5 -39
- package/esm2015/lib/components/process-refund/process-refund.component.js +381 -0
- package/esm2015/lib/components/processed-payments/processed-payments.component.js +13 -41
- package/esm2015/lib/components/refund-list/refund-list.component.js +140 -0
- package/esm2015/lib/components/refund-status/refund-status.component.js +507 -0
- package/esm2015/lib/components/refunds/refunds.component.js +23 -0
- package/esm2015/lib/components/reports/reports.component.js +90 -106
- package/esm2015/lib/components/status-history/status-history.component.js +28 -35
- package/esm2015/lib/components/table/table.component.js +172 -0
- package/esm2015/lib/components/unprocessed-payments/unprocessed-payments.component.js +167 -90
- package/esm2015/lib/interfaces/AddRemissionRequest.js +6 -7
- package/esm2015/lib/interfaces/AddRetroRemissionRequest.js +21 -0
- package/esm2015/lib/interfaces/AllocatePaymentRequest.js +11 -9
- package/esm2015/lib/interfaces/IAllocationPaymentsRequest.js +2 -3
- package/esm2015/lib/interfaces/IBSPayments.js +38 -35
- package/esm2015/lib/interfaces/ICardDetails.js +14 -13
- package/esm2015/lib/interfaces/IFee.js +44 -43
- package/esm2015/lib/interfaces/IOrderReferenceFee.js +25 -0
- package/esm2015/lib/interfaces/IPatchRefundAction.js +15 -0
- package/esm2015/lib/interfaces/IPayment.js +56 -55
- package/esm2015/lib/interfaces/IPaymentGroup.js +12 -11
- package/esm2015/lib/interfaces/IPaymentStatus.js +2 -3
- package/esm2015/lib/interfaces/IPaymentView.js +17 -0
- package/esm2015/lib/interfaces/IPayments.js +6 -5
- package/esm2015/lib/interfaces/IRefundAction.js +15 -0
- package/esm2015/lib/interfaces/IRefundList.js +29 -0
- package/esm2015/lib/interfaces/IRefundReasons.js +17 -0
- package/esm2015/lib/interfaces/IRefundRejectReason.js +15 -0
- package/esm2015/lib/interfaces/IRefundStatus.js +23 -0
- package/esm2015/lib/interfaces/IRefundStatusHistory.js +15 -0
- package/esm2015/lib/interfaces/IRemission.js +18 -17
- package/esm2015/lib/interfaces/IResubmitRefundRequest.js +21 -0
- package/esm2015/lib/interfaces/IStatusHistories.js +12 -11
- package/esm2015/lib/interfaces/IStatusHistory.js +14 -13
- package/esm2015/lib/interfaces/IssueRefundRequest.js +25 -0
- package/esm2015/lib/interfaces/PayhubAntennaRequest.js +28 -0
- package/esm2015/lib/interfaces/PaymentToPayhubRequest.js +7 -12
- package/esm2015/lib/interfaces/PostIssueRefundRetroRemission.js +17 -0
- package/esm2015/lib/interfaces/PostRefundRetroRemission.js +21 -0
- package/esm2015/lib/interfaces/RefundsRequest.js +21 -0
- package/esm2015/lib/interfaces/UnidentifiedPaymentsRequest.js +2 -3
- package/esm2015/lib/interfaces/UnsolicitedPaymentsRequest.js +2 -3
- package/esm2015/lib/payment-lib.component.js +109 -18
- package/esm2015/lib/payment-lib.module.js +31 -6
- package/esm2015/lib/payment-lib.service.js +18 -4
- package/esm2015/lib/pipes/capitalize.pipe.js +24 -0
- package/esm2015/lib/pipes/ccd-hyphens.pipe.js +3 -4
- package/esm2015/lib/pipes/key-value.pipe.js +3 -4
- package/esm2015/lib/pipes/sanitize-html.pipe.js +7 -5
- package/esm2015/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.js +52 -14
- package/esm2015/lib/services/card-details/card-details.service.js +19 -8
- package/esm2015/lib/services/case-transactions/case-transactions.service.js +19 -8
- package/esm2015/lib/services/orderslist.service.js +211 -0
- package/esm2015/lib/services/payment-list/payment-list.service.js +19 -8
- package/esm2015/lib/services/payment-view/payment-view.service.js +96 -11
- package/esm2015/lib/services/refunds/refunds.service.js +196 -0
- package/esm2015/lib/services/shared/error-handler.service.js +24 -4
- package/esm2015/lib/services/shared/httpclient/webcomponent.http.client.js +17 -8
- package/esm2015/lib/services/shared/logger/console-logger.service.js +7 -5
- package/esm2015/lib/services/shared/logger/logger.service.js +7 -5
- package/esm2015/lib/services/status-history/status-history.service.js +19 -8
- package/esm2015/lib/services/xl-file/xl-file.service.js +56 -51
- package/esm2015/public_api.js +1 -2
- package/esm5/hmcts-ccpay-web-component.js +33 -26
- package/esm5/lib/components/add-remission/add-remission.component.js +900 -44
- package/esm5/lib/components/allocate-payments/allocate-payments.component.js +337 -66
- package/esm5/lib/components/card-details/card-details.component.js +22 -9
- package/esm5/lib/components/case-transactions/case-transactions.component.js +987 -110
- package/esm5/lib/components/error-banner/error-banner.component.js +3 -4
- package/esm5/lib/components/fee-summary/fee-summary.component.js +232 -56
- package/esm5/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.js +136 -45
- package/esm5/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.js +179 -65
- package/esm5/lib/components/page-not-found.component.js +3 -4
- package/esm5/lib/components/payment-list/payment-list.component.js +21 -8
- package/esm5/lib/components/payment-view/payment-view.component.js +393 -17
- package/esm5/lib/components/pba-details/pba-details.component.js +5 -6
- package/esm5/lib/components/process-refund/process-refund.component.js +457 -0
- package/esm5/lib/components/processed-payments/processed-payments.component.js +12 -7
- package/esm5/lib/components/refund-list/refund-list.component.js +143 -0
- package/esm5/lib/components/refund-status/refund-status.component.js +566 -0
- package/esm5/lib/components/refunds/refunds.component.js +29 -0
- package/esm5/lib/components/reports/reports.component.js +91 -25
- package/esm5/lib/components/status-history/status-history.component.js +27 -9
- package/esm5/lib/components/table/table.component.js +204 -0
- package/esm5/lib/components/unprocessed-payments/unprocessed-payments.component.js +177 -26
- package/esm5/lib/interfaces/AddRemissionRequest.js +5 -6
- package/esm5/lib/interfaces/AddRetroRemissionRequest.js +19 -0
- package/esm5/lib/interfaces/AllocatePaymentRequest.js +9 -8
- package/esm5/lib/interfaces/IAllocationPaymentsRequest.js +2 -3
- package/esm5/lib/interfaces/IBSPayments.js +38 -35
- package/esm5/lib/interfaces/ICardDetails.js +14 -13
- package/esm5/lib/interfaces/IFee.js +44 -43
- package/esm5/lib/interfaces/IOrderReferenceFee.js +25 -0
- package/esm5/lib/interfaces/IPatchRefundAction.js +15 -0
- package/esm5/lib/interfaces/IPayment.js +56 -55
- package/esm5/lib/interfaces/IPaymentGroup.js +12 -11
- package/esm5/lib/interfaces/IPaymentStatus.js +2 -3
- package/esm5/lib/interfaces/IPaymentView.js +17 -0
- package/esm5/lib/interfaces/IPayments.js +6 -5
- package/esm5/lib/interfaces/IRefundAction.js +15 -0
- package/esm5/lib/interfaces/IRefundList.js +29 -0
- package/esm5/lib/interfaces/IRefundReasons.js +17 -0
- package/esm5/lib/interfaces/IRefundRejectReason.js +15 -0
- package/esm5/lib/interfaces/IRefundStatus.js +23 -0
- package/esm5/lib/interfaces/IRefundStatusHistory.js +15 -0
- package/esm5/lib/interfaces/IRemission.js +18 -17
- package/esm5/lib/interfaces/IResubmitRefundRequest.js +19 -0
- package/esm5/lib/interfaces/IStatusHistories.js +12 -11
- package/esm5/lib/interfaces/IStatusHistory.js +14 -13
- package/esm5/lib/interfaces/IssueRefundRequest.js +22 -0
- package/esm5/lib/interfaces/PayhubAntennaRequest.js +25 -0
- package/esm5/lib/interfaces/PaymentToPayhubRequest.js +6 -10
- package/esm5/lib/interfaces/PostIssueRefundRetroRemission.js +16 -0
- package/esm5/lib/interfaces/PostRefundRetroRemission.js +19 -0
- package/esm5/lib/interfaces/RefundsRequest.js +19 -0
- package/esm5/lib/interfaces/UnidentifiedPaymentsRequest.js +2 -3
- package/esm5/lib/interfaces/UnsolicitedPaymentsRequest.js +2 -3
- package/esm5/lib/payment-lib.component.js +81 -12
- package/esm5/lib/payment-lib.module.js +31 -6
- package/esm5/lib/payment-lib.service.js +25 -4
- package/esm5/lib/pipes/capitalize.pipe.js +32 -0
- package/esm5/lib/pipes/ccd-hyphens.pipe.js +3 -4
- package/esm5/lib/pipes/key-value.pipe.js +3 -4
- package/esm5/lib/pipes/sanitize-html.pipe.js +7 -5
- package/esm5/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.js +61 -14
- package/esm5/lib/services/card-details/card-details.service.js +19 -8
- package/esm5/lib/services/case-transactions/case-transactions.service.js +19 -8
- package/esm5/lib/services/orderslist.service.js +276 -0
- package/esm5/lib/services/payment-list/payment-list.service.js +19 -8
- package/esm5/lib/services/payment-view/payment-view.service.js +135 -11
- package/esm5/lib/services/refunds/refunds.service.js +236 -0
- package/esm5/lib/services/shared/error-handler.service.js +24 -4
- package/esm5/lib/services/shared/httpclient/webcomponent.http.client.js +17 -8
- package/esm5/lib/services/shared/logger/console-logger.service.js +7 -5
- package/esm5/lib/services/shared/logger/logger.service.js +7 -5
- package/esm5/lib/services/status-history/status-history.service.js +19 -8
- package/esm5/lib/services/xl-file/xl-file.service.js +62 -51
- package/esm5/public_api.js +1 -2
- package/fesm2015/hmcts-ccpay-web-component.js +4569 -2064
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +6933 -2552
- package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
- package/hmcts-ccpay-web-component.d.ts +31 -23
- package/hmcts-ccpay-web-component.metadata.json +1 -1
- package/lib/components/add-remission/add-remission.component.d.ts +77 -3
- package/lib/components/allocate-payments/allocate-payments.component.d.ts +26 -1
- package/lib/components/case-transactions/case-transactions.component.d.ts +64 -2
- package/lib/components/fee-summary/fee-summary.component.d.ts +10 -1
- package/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.d.ts +2 -0
- package/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.d.ts +4 -0
- package/lib/components/payment-view/payment-view.component.d.ts +39 -1
- package/lib/components/process-refund/process-refund.component.d.ts +53 -0
- package/lib/components/refund-list/refund-list.component.d.ts +23 -0
- package/lib/components/refund-status/refund-status.component.d.ts +68 -0
- package/lib/components/refunds/refunds.component.d.ts +5 -0
- package/lib/components/reports/reports.component.d.ts +4 -1
- package/lib/components/status-history/status-history.component.d.ts +1 -0
- package/lib/components/table/table.component.d.ts +35 -0
- package/lib/components/unprocessed-payments/unprocessed-payments.component.d.ts +24 -4
- package/lib/interfaces/AddRemissionRequest.d.ts +2 -2
- package/lib/interfaces/AddRetroRemissionRequest.d.ts +5 -0
- package/lib/interfaces/AllocatePaymentRequest.d.ts +16 -3
- package/lib/interfaces/IBSPayments.d.ts +1 -0
- package/lib/interfaces/IOrderReferenceFee.d.ts +9 -0
- package/lib/interfaces/IPatchRefundAction.d.ts +4 -0
- package/lib/interfaces/IPaymentView.d.ts +5 -0
- package/lib/interfaces/IRefundAction.d.ts +4 -0
- package/lib/interfaces/IRefundList.d.ts +14 -0
- package/lib/interfaces/IRefundReasons.d.ts +5 -0
- package/lib/interfaces/IRefundRejectReason.d.ts +4 -0
- package/lib/interfaces/IRefundStatus.d.ts +8 -0
- package/lib/interfaces/IRefundStatusHistory.d.ts +5 -0
- package/lib/interfaces/IResubmitRefundRequest.d.ts +5 -0
- package/lib/interfaces/IssueRefundRequest.d.ts +6 -0
- package/lib/interfaces/PayhubAntennaRequest.d.ts +7 -0
- package/lib/interfaces/PaymentToPayhubRequest.d.ts +2 -3
- package/lib/interfaces/PostIssueRefundRetroRemission.d.ts +4 -0
- package/lib/interfaces/PostRefundRetroRemission.d.ts +5 -0
- package/lib/interfaces/RefundsRequest.d.ts +5 -0
- package/lib/payment-lib.component.d.ts +27 -3
- package/lib/payment-lib.service.d.ts +3 -0
- package/lib/pipes/capitalize.pipe.d.ts +5 -0
- package/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.d.ts +2 -0
- package/lib/services/orderslist.service.d.ts +40 -0
- package/lib/services/payment-view/payment-view.service.d.ts +15 -0
- package/lib/services/refunds/refunds.service.d.ts +30 -0
- package/lib/services/xl-file/xl-file.service.d.ts +6 -6
- package/package.json +1 -1
|
@@ -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","ng://@hmcts/ccpay-web-component/lib/services/shared/httpclient/webcomponent.http.client.ts","ng://@hmcts/ccpay-web-component/lib/services/payment-view/payment-view.service.ts","ng://@hmcts/ccpay-web-component/lib/components/payment-view/payment-view.component.ts","ng://@hmcts/ccpay-web-component/lib/services/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/components/fee-summary/fee-summary.component.ts","null","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/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/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/payment-lib.module.ts"],"names":["PaymentLibService","prototype","setApiRootUrl","apiRoot","this","API_ROOT","getApiRootUrl","setBulkScanApiRootUrl","bulkscanapiRoot","BULKSCAN_API_ROOT","getBulkScanApiRootUrl","Injectable","args","providedIn","PaymentLibComponent","router","paymentLibService","ngOnInit","PAYMENT_GROUP_REF","paymentGroupReference","DCN_NUMBER","bspaymentdcn","VIEW","viewName","Component","selector","template","Router","Input","ErrorHandlerService","handleError","err","errorMessage","error","Error","message","status","messsage","undefined","_throw","getServerErrorMessage","isErrorExist","title","body","showError","LoggerService","invokeConsoleMethod","type","PaymentListService","http","logger","errorHandlerService","getPaymentByCcdCaseNumber","ccdCaseNumber","paymentMethod","info","get","withCredentials","pipe","catchError","HttpClient","PaymentListComponent","paymentListService","paymentLibComponent","_this","CCD_CASE_NUMBER","PAYMENT_METHOD","subscribe","payments","loadPaymentViewComponent","paymentReference","styles","WebComponentHttpClient","meta","post","url","options","opts","addHeaders","put","delete","patch","csrfToken","getTag","headers","forEach","element","content","HttpHeaders","responseType","Meta","PaymentViewService","https","getPaymentDetails","getPaymentGroupDetails","getApportionPaymentDetails","postBSPayments","postBSUnidentifiedPayments","postBSUnsolicitedPayments","postBSAllocationPayments","postPaymentGroupWithRemissions","feeId","deleteFeeFromPaymentGroup","postPaymentToPayHub","paymentGroupRef","downloadSelectedReport","reportName","startDate","endDate","getBSfeature","PaymentViewComponent","paymentViewService","selectedOption","SELECTED_OPTION","dcnNumber","paymentGroup","filter","paymentGroupObj","includes","paymentAllocation","payment_allocation","isStatusAllocated","length","allocation_status","Object","defineProperty","method","channel","goToPaymentList","goToCaseTransationPage","event","preventDefault","features","result","JSON","parse","feature","uid","ISBSENABLE","enable","CardDetailsService","getCardDetails","CardDetailsComponent","cardDetailsService","cardDetails","PageNotFoundComponent","StatusHistoryService","getPaymentStatusesByReference","StatusHistoryComponent","statusHistoryService","statuses","PbaDetailsComponent","noop","ConsoleLoggerService","console","log","apply","CaseTransactionsService","getPaymentGroups","BulkScaningPaymentService","getBSPaymentsByCCD","getBSPaymentsByDCN","dcn","postBSAllocatePayment","paymentRef","patchBSChangeStatus","calculateOutStandingAmount","feesTotal","paymentsTotal","remissionsTotal","fees","fee","calculated_amount","payment","toUpperCase","amount","remissions","remission","hwf_amount","removeUnwantedString","input","replaceText","replace","CaseTransactionsComponent","bulkScaningPaymentService","caseTransactionsService","EXC_REFERENCE","excReference","takePayment","TAKEPAYMENT","isBulkScanEnable","paymentGroups","calculateAmounts","calculateRefundAmount","isAnyFeeGroupAvilable","setDefaults","toLocaleLowerCase","checkForExceptionRecord","totalPayments","totalRemissions","totalNonOffPayments","getAllocationStatus","recordData","exception_record_reference","ccd_reference","isExceptionRecord","isAddFeeBtnEnabled","nonPayments","case_reference","nonOffLinePayment","date_created","a","amount_due","b","clAmountDue","net_amount","push","allocationLen","payment_group_reference","allPayments","remisison","isNewPaymentGroup","isOldPaymentGroup","grpOutstandingAmount","getGroupOutstandingAmount","redirectToFeeSearchPage","navigateByUrl","redirectToReportsPage","loadFeeSummaryPage","goToPaymentViewComponent","goToPayementView","selectedUnprocessedFeeEvent","unprocessedRecordId","isUnprocessedRecordSelected","getUnprocessedFeeCount","unProcessedRecordCount","unprocessedRecordCount","calculateAmountDue","confirmRemoveFee","isRemoveBtnDisabled","viewStatus","cancelRemoval","removeFee","success","window","location","reload","isCheckAmountdueExist","amountDue","PaymentToPayhubRequest","ccd_case_number","service","serviceName","toFixed","site_id","BS_ENABLE_FLAG","FeeSummaryComponent","bsPaymentDcnNumber","getUnassignedPaymentlist","getPaymentGroup","unassignedPayments","responsible_service_id","upPaymentErrorMessage","getRemissionByFeeCode","feeCode","_a","o","m","Symbol","iterator","i","call","next","value","done","tslib_1.__values","_b","fee_code","addRemission","currentFee","isPaymentExist","isRemissionsExist","totalAfterRemission","isFeeAmountZero","outStandingAmount","loadCaseTransactionPage","cancelRemission","page","ISBSenable","isConfirmationBtnDisabled","seriveName","requestBody","response","go","payhubHtml","isBackButtonEnable","goToAllocatePage","Location","ErrorBannerComponent","UnidentifiedPaymentsRequest","payment_reference","unidentified_reason","payment_allocation_status","description","name","AllocatePaymentRequest","unAllocatedPayment","siteID","exceptionRecord","banked_date","date_banked","exception_record","currency","document_control_number","dcn_reference","external_provider","giro_slip_no","bgc_reference","payer_name","payment_channel","payment_status","payment_method","requestor","MarkUnidentifiedPaymentComponent","formBuilder","getErrorMessage","getUnassignedPayment","markPaymentUnidentifiedForm","group","investicationDetail","FormControl","Validators","compose","required","minLength","maxLength","pattern","unassignedRecord","beCcdNumber","beExceptionNumber","exceptionReference","ccdReference","trimUnderscore","saveAndContinue","resetForm","investicationField","controls","formerror","errors","dirty","valid","investigationComment","invalid","actualLength","val","isInvesticationDetailEmpty","investicationDetailHasError","investicationDetailMinHasError","investicationDetailMaxHasError","confirmPayments","isConfirmButtondisabled","reason","res1","res2","response2","reqBody","reference","res3","gotoCasetransationPage","cancelMarkUnidentifiedPayments","FormBuilder","UnsolicitedPaymentsRequest","responsible_office","responsible_person","email_id","receiving_office","receiving_email_address","sending_email_address","MarkUnsolicitedPaymentComponent","markPaymentUnsolicitedForm","responsibleOffice","responsiblePerson","emailId","selectedSiteId","reasonField","officeIdField","field","isReasonEmpty","reasonHasError","reasonMinHasError","reasonMaxHasError","isResponsibleOfficeEmpty","responsibleOfficeHasError","cancelMarkUnsolicitedPayments","checkingFormValue","setValue","formFields","valueExists","hasOwnProperty","selectchange","target","selectedSiteName","selectedIndex","text","UnprocessedPaymentsComponent","EventEmitter","setValuesForUnassignedRecord","emit","unassignedRecordList","serviceId","isExceptionCase","isRecordExist","formatUnassignedRecordId","ID","recordId","loadUnsolicitedPage","unprocessedPaymentSelectEvent","selectedRecordReference","validateButtons","PAYMENTREF","unProcessedPaymentServiceId","isMarkAsUnidentifiedbtnEnabled","FEE_RECORDS_EXISTS","isAllocateToExistingFeebtnEnabled","isAllocatedToNewFeebtnEnabled","unprocessedPaymentUnSelectEvent","Output","ProcessedPaymentsComponent","redirectToPaymentViewPage","IAllocationPaymentsRequest","explanation","userName","user_name","AllocatePaymentsComponent","overPayment","hwfReward","wrongFee","notIssueCase","otherDeduction","shortFall","helpWithFee","other","referRefund","noRefund","noCase","holdCase","heldCase","overUnderPaymentForm","moreDetails","cancelAllocatePayment","confirmAllocatePayement","paymentDetailsField","paymentFormError","userNameField","isEmptyCondtion","paymentReason","paymentExplanation","isOtherOptionSelected","isRemainingAmountGtZero","isRemainingAmountLtZero","otherPaymentExplanation","finalServiceCall","vals","paymentReasonHasError","paymentExplanationHasError","isPaymentDetailsEmpty","isPaymentDetailsInvalid","paymentDetailsMinHasError","paymentDetailsMaxHasError","isUserNameEmpty","isUserNameInvalid","isMoreDetailsBoxHide","reset","GroupOutstandingAmount","remainingToBeAssigned","paymentSectionLabel","remainingAmount","afterFeeAllocateOutstanding","amountForAllocation","selectRadioButton","key","AddRemissionRequest","hwf_reference","AddRemissionComponent","option","remissionForm","remissionCode","resetRemissionForm","remissionctrls","isRemissionLessThanFee","isRemissionCodeEmpty","remissionCodeHasError","isAmountEmpty","amountHasError","isRemissionLessThanFeeError","confirmRemission","newNetAmount","remissionAmount","id","routeReuseStrategy","shouldReuseRoute","onSameUrlNavigation","CcdHyphensPipe","transform","match","Pipe","keyValuePipe","keys","SanitizeHtmlPipe","sanitizer","bypassSecurityTrustHtml","DomSanitizer","XlFileService","exportAsExcelFile","json","excelFileName","worksheet","workbook","XLSX.utils","json_to_sheet","header","setDataLossReportHeaders","setUnprocessedReportHeaders","setProcessedUnallocatedReportHeaders","setShortFallReportHeaders","Sheets","data","autoFitColumns","SheetNames","excelBuffer","XLSX.write","bookType","saveAsExcelFile","objectMaxLength","ColWidth","obj","values","j","width","v","buffer","fileName","Blob","FileSaver.saveAs","ReportsComponent","xlFileService","fromValidation","getToday","Date","toISOString","split","getSelectedFromDate","validateDates","selectedStartDate","tranformDate","reportsForm","selectedEndDate","selectedreport","downloadReport","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","res","applyDateFormat","substr","convertToFloatValue","getFileName","loc","stDt","formatDate","enDt","now","timestamp","getTwodigit","getHours","getMinutes","getSeconds","getCamelCaseString","strDate","parts","slice","map","amt","Number","parseFloat","PaymentLibModule","NgModule","imports","CommonModule","HttpClientModule","FormsModule","ReactiveFormsModule","declarations","exports","providers","provide","useClass"],"mappings":"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","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\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","import {Component, Input, OnInit} from '@angular/core';\nimport {Router} from '@angular/router';\nimport {PaymentLibService} from './payment-lib.service';\nimport { IBSPayments } from './interfaces/IBSPayments';\n\n@Component({\n selector: 'ccpay-payment-lib',\n template: `\n <ccpay-payment-list *ngIf=\"viewName === 'payment-list'\"></ccpay-payment-list>\n <ccpay-payment-view *ngIf=\"viewName === 'payment-view'\"></ccpay-payment-view>\n <ccpay-case-transactions *ngIf=\"viewName === 'case-transactions'\"></ccpay-case-transactions>\n <app-mark-unidentified-payment *ngIf=\"viewName === 'unidentifiedPage'\"></app-mark-unidentified-payment>\n <app-mark-unsolicited-payment *ngIf=\"viewName === 'unsolicitedPage'\"></app-mark-unsolicited-payment>\n <app-allocate-payments *ngIf=\"viewName === 'allocate-payments'\"></app-allocate-payments>\n <ccpay-fee-summary *ngIf=\"viewName === 'fee-summary'\"\n [ccdCaseNumber]=\"CCD_CASE_NUMBER\" [paymentGroupRef]=\"paymentGroupReference\"></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('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('PAYMENT_GROUP_REF') PAYMENT_GROUP_REF?: string;\n @Input('TAKEPAYMENT') TAKEPAYMENT: boolean;\n @Input('DCN_NUMBER') DCN_NUMBER: string;\n @Input('SELECTED_OPTION') SELECTED_OPTION: string;\n @Input('ISBSENABLE') ISBSENABLE: Boolean;\n paymentMethod: string;\n bspaymentdcn: string;\n unProcessedPaymentServiceId: string = null;\n paymentGroupReference: string;\n paymentReference: string;\n viewName: string;\n unProcessedPayment: IBSPayments = null;\n\n constructor(private router: Router,\n private paymentLibService: PaymentLibService) { }\n\n ngOnInit() {\n this.paymentLibService.setApiRootUrl(this.API_ROOT);\n this.paymentLibService.setBulkScanApiRootUrl(this.BULKSCAN_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\n if (this.VIEW === 'fee-summary') {\n this.viewName = 'fee-summary';\n } else if (this.VIEW !== 'reports') {\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.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 template: `<div class=\"govuk-width-container\">\n\n <div *ngIf=\"errorMessage\">\n <div class=\"error-summary\" role=\"group\" aria-labelledby=\"failure-error-summary-heading\" tabindex=\"-1\">\n <h2 class=\"heading-medium error-summary-heading\" id=\"failure-error-summary-heading\">\n Payments list could not be retrieved\n </h2>\n <div class=\"govuk-error-summary__body\">\n {{ errorMessage }}\n </div>\n </div>\n </div>\n\n <div *ngIf=\"!errorMessage && payments\">\n\n <table class=\"table\">\n <tr>\n <th class=\"bold font-xsmall\">Payment group reference</th>\n <th class=\"bold font-xsmall\">Payment reference</th>\n <th class=\"bold font-xsmall\">Date created</th>\n <th class=\"bold font-xsmall\">Channel</th>\n <th class=\"bold font-xsmall\">Method</th>\n <th class=\"bold font-xsmall\">Amount</th>\n <th class=\"bold font-xsmall\">Status</th>\n </tr>\n <tr *ngFor=\"let payment of payments.payments\">\n <td class=\"font-xsmall\">\n <a href=\"javascript:void(0)\" (click)=\"loadPaymentViewComponent(payment.payment_group_reference, payment.payment_reference, payment.method)\">{{ payment.payment_group_reference }}</a>\n <td class=\"font-xsmall\">{{ payment.payment_reference }}</td>\n <td class=\"font-xsmall\">{{ payment.date_created | date:'dd MMM yyyy hh:mm:ss' }}</td>\n <td class=\"font-xsmall\">{{ payment.channel | titlecase }}</td>\n <td class=\"font-xsmall\">{{ payment.method | titlecase }}</td>\n <td class=\"font-xsmall\">£{{ payment.amount | number:'.2' }}</td>\n <td *ngIf=\"payment.method === 'card' && payment.channel === 'online'\">\n <details>\n <summary><span class=\"summary font-xsmall\">{{ payment.status }}</span></summary>\n <div class=\"panel panel-border-narrow\" *ngIf=\"payment.status === 'Failed'\">\n <div *ngFor=\"let statusHistory of payment.status_histories\">\n <p class=\"font-xsmall\" *ngIf=\"statusHistory.error_code === 'P0010'\">\n Payment rejected due to payment method selected or payment information entered, for example, failed fraud check, a 3D Secure authentication failure, or the user does not have enough money in account\n </p>\n <p class=\"font-xsmall\" *ngIf=\"statusHistory.error_code === 'P0020'\">\n Payment was not confirmed and completed within 90 minutes of being created\n </p>\n <p class=\"font-xsmall\" *ngIf=\"statusHistory.error_code === 'P0030'\">\n User clicked on the âCancel paymentâ button during the payment journey\n </p>\n <p class=\"font-xsmall\" *ngIf=\"statusHistory.error_code === 'P0050'\">\n Multiple possible causes, for example a configuration problem with the payment provider, or incorrect login credentials\n </p>\n </div>\n </div>\n </details>\n </td>\n <td *ngIf=\"payment.method === 'card' && payment.channel === 'telephony'\" class=\"font-xsmall\">\n {{ payment.status}}\n </td>\n <td *ngIf=\"payment.method === 'payment by account'\">\n <details>\n <summary><span class=\"summary font-xsmall\">{{ payment.status }}</span></summary>\n <div class=\"panel panel-border-narrow\" *ngIf=\"payment.status === 'Pending'\">\n <p class=\"font-xsmall\">This means the transaction is being processed by Liberata.</p>\n </div>\n </details>\n </td>\n </tr>\n </table>\n\n </div>\n\n</div>\n`,\n styles: [``]\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","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 { 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';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PaymentViewService {\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}/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 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 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}\n","import {Component, OnInit} from '@angular/core';\nimport {PaymentViewService} from '../../services/payment-view/payment-view.service';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-payment-view',\n template: `<div class=\"govuk-width-container\">\n\n <div class=\"govuk-breadcrumbs\">\n <ol class=\"govuk-breadcrumbs__list\">\n <li class=\"govuk-breadcrumbs__list-item\">\n <a href=\"#\" (click)=\"goToCaseTransationPage($event)\" class=\"govuk-back-link\">Back</a>\n </li>\n </ol>\n </div>\n\n <main class=\"govuk-main-wrapper \" id=\"main-content\" role=\"main\">\n\n <div *ngIf=\"errorMessage\">\n <div class=\"error-summary\" role=\"group\" aria-labelledby=\"failure-error-summary-heading\" tabindex=\"-1\">\n <h2 class=\"heading-medium error-summary-heading\" id=\"failure-error-summary-heading\">\n Payment details could not be retrieved\n </h2>\n <div class=\"govuk-error-summary__body\">\n {{ errorMessage }}\n </div>\n </div>\n </div>\n\n <div *ngIf=\"!errorMessage && paymentGroup\">\n\n <div class=\"govuk-grid-row\">\n <div class=\"column\">\n <h1 class=\"heading-medium\">Payment details</h1>\n </div>\n </div>\n\n <hr class=\"govuk-section-break govuk-section-break--m govuk-section-break--visible\"> \n <table>\n <tbody>\n <tr class=\"section\">\n <td class=\"bold\" width=\"330px\">Payment reference</td>\n <td>{{ paymentGroup.payments[0].reference }}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold\" width=\"330px\">Payment amount</td>\n <td>£{{ paymentGroup.payments[0].amount | number:'.2' }}</td>\n </tr>\n\n <tr class=\"section\" *ngIf=\"paymentGroup.payments[0] && paymentGroup.payments[0].document_control_number\">\n <td class=\"bold\" width=\"330px\">Payment asset number(DCN)</td>\n <td>{{ paymentGroup.payments[0].document_control_number }}</td>\n </tr>\n <tr class=\"section\" *ngIf=\"paymentGroup.payments[0] && paymentGroup.payments[0].document_control_number\">\n <td class=\"bold\" width=\"330px\">Banked date</td>\n <td>{{ paymentGroup.payments[0].banked_date | date:'dd MMM yyyy' }}</td>\n </tr>\n </tbody>\n </table>\n\n <div class=\"govuk-grid-row\">\n <div class=\"column\">\n <h2 class=\"heading-medium\">Fee and remission details</h2>\n </div>\n </div>\n\n <div *ngFor=\"let fee of paymentGroup.fees\">\n <table class=\"table\">\n <tbody>\n <tr class=\"section\">\n <td class=\"bold\" width=\"330px\">Description</td>\n <td>Application for {{ fee.description }}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold\" width=\"330px\">Fee code</td>\n <td>{{ fee.code }}</td>\n </tr>\n <tr class=\"section\">\n <td class=\"bold\" width=\"330px\">Fee amount</td>\n <td>£{{ fee.calculated_amount | number:'.2' }}</td>\n </tr>\n <tr *ngIf=\"fee.net_amount\">\n <td class=\"bold\" width=\"330px\">Allocated amount</td>\n <td>£{{ fee.apportion_amount | number:'.2' }}</td>\n </tr>\n </tbody>\n <tbody *ngFor=\"let remission of paymentGroup.remissions\">\n <tr *ngIf=\"remission.fee_code === fee.code\">\n <td class=\"bold\" width=\"330px\">Remission code</td>\n <td>{{remission.hwf_reference}}</td>\n </tr>\n <tr *ngIf=\"paymentGroup.remissions?.length > 0\">\n <td class=\"bold\" width=\"330px\">Remission amount</td>\n <td>£{{ remission.hwf_amount | number:'.2'}}</td>\n </tr>\n </tbody>\n </table>\n\n <hr class=\"govuk-section-break govuk-section-break--m govuk-section-break--visible\"> \n </div>\n\n <!-- card details -->\n <ccpay-card-details *ngIf=\"isCardPayment && !isTelephonyPayment\"></ccpay-card-details>\n\n <!-- pba details -->\n <ccpay-pba-details *ngIf=\"!isCardPayment\" [payment]=\"paymentGroup.payments[0]\"></ccpay-pba-details>\n\n <!-- Status histories -->\n <ccpay-payment-statuses *ngIf=\"isStatusAllocated\"></ccpay-payment-statuses>\n\n </div>\n\n </main>\n</div>\n`,\n styles: [``]\n})\nexport class PaymentViewComponent implements OnInit {\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n ccdCaseNumber: string;\n selectedOption: string;\n dcnNumber: string;\n isStatusAllocated: boolean;\n\n constructor(private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent) {\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\n\n this.paymentViewService.getApportionPaymentDetails(this.paymentLibComponent.paymentReference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n }, \n (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.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}\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 template: `\n<div class=\"column\">\n <h2 class=\"heading-medium\">Payment method</h2>\n</div>\n\n<div role=\"group\" aria-labelledby=\"failure-error-summary-heading\" tabindex=\"-1\" *ngIf=\"errorMessage\">\n Payment method unavailable, The payment has either expired or unsuccessful.\n</div>\n\n<div *ngIf=\"!errorMessage && cardDetails\">\n\n<table>\n <tbody>\n <tr>\n <td class=\"bold\" width=\"330px\">Method</td>\n <td>Card</td>\n </tr>\n <tr>\n <td class=\"bold\" width=\"330px\">Type</td>\n <td>{{ cardDetails.card_brand }}</td>\n </tr>\n<!-- <tr>\n <td class=\"bold\" width=\"330px\">Name on card</td>\n <td>{{ cardDetails.cardholder_name }}</td>\n </tr>\n <tr>\n <td class=\"bold\" width=\"330px\">Card number</td>\n <td>**** **** **** {{ cardDetails.last_digits_card_number }}</td>\n </tr>\n <tr>\n <td class=\"bold\" width=\"330px\">Card expiry date</td>\n <td>{{ cardDetails.expiry_date}}</td>\n </tr>\n <tr>\n <td class=\"bold\" width=\"330px\">Email</td>\n <td>{{ cardDetails.email }}</td>\n </tr> -->\n </tbody>\n</table>\n</div>\n\n\n\n<!--<div class=\"container\">-->\n <!--<fieldset class=\"col-md-12\">-->\n <!--<button class=\"button\" routerLink=\"/payment-view/{{ getPaymentReference }}\">Back</button>-->\n <!--</fieldset>-->\n<!--</div>-->\n`,\n styles: [``]\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 } 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 template: `<div class=\"column\">\n <h2 class=\"heading-medium\">{{ pageTitle }}</h2>\n</div>\n\n\n<div class=\"error-summary\" role=\"group\" aria-labelledby=\"failure-error-summary-heading\" tabindex=\"-1\" *ngIf=\"errorMessage\">\n <h2 class=\"heading-medium error-summary-heading\" id=\"failure-error-summary-heading\">\n Payment status history could not be retrieved\n </h2>\n <div class=\"govuk-error-summary__body\">\n {{ errorMessage }}\n </div>\n</div>\n\n<div *ngIf=\"!errorMessage && statuses\">\n <table>\n <tbody>\n <tr *ngFor=\"let status of statuses.status_histories\">\n <td class=\"bold\">Payment {{ status.status }}</td>\n <td>£{{ statuses.amount | number:'.2' }}</td>\n <td>{{ status.date_created | date:'dd MMM yyyy hh:mm:ss'}}</td>\n </tr>\n </tbody>\n </table>\n</div>\n`,\n styles: [``]\n})\nexport class StatusHistoryComponent implements OnInit {\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 template: `<div class=\"grid-row\">\n <div class=\"column\">\n <h2 class=\"heading-medium\">Payment method</h2>\n </div>\n</div>\n\n\n<div>\n <table>\n <tbody>\n <tr>\n <td class=\"bold\" width=\"330px\">Method</td>\n <td class=\"capitalize\">{{ payment.method | lowercase}}</td>\n </tr>\n <tr>\n <td class=\"bold\" width=\"330px\">Type</td>\n <td>Credit</td>\n </tr>\n <tr *ngIf=\"payment.organisation_name\">\n <td class=\"bold\" width=\"330px\">PBA account name</td>\n <td>{{ payment.organisation_name }}</td>\n </tr>\n <tr *ngIf=\"payment.account_number\">\n <td class=\"bold\" width=\"330px\">PBA number</td>\n <td>{{ payment.account_number }}</td>\n </tr>\n <tr *ngIf=\"payment.customer_reference\">\n <td class=\"bold\" width=\"330px\">Customer internal reference</td>\n <td>{{ payment.customer_reference }}</td>\n </tr>\n </tbody>\n </table>\n</div>\n`,\n styles: [`.capitalize::first-letter{text-transform:uppercase}`]\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 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 } 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 {IFee} from '../../interfaces/IFee';\nimport {IPayment} from '../../interfaces/IPayment';\nimport {IRemission} from '../../interfaces/IRemission';\nimport {Router} from '@angular/router';\n\n@Component({\n selector: 'ccpay-case-transactions',\n template: `<div class=\"govuk-width-container\">\n\n <main class=\"govuk-main-wrapper\">\n <div *ngIf=\"viewStatus === 'main'\">\n\n\n <div *ngIf=\"takePayment\" class=\"govuk-grid-row\">\n <div class=\"govuk-grid-column-two-thirds\">\n <h1 class=\"govuk-heading-xl\">Case transactions</h1>\n </div>\n </div>\n\n <div *ngIf=\"takePayment\" class=\"govuk-grid-row\">\n <div *ngIf='!isExceptionRecord' class=\"govuk-grid-column-two-thirds govuk-!-padding-bottom-6 govuk-!-padding-top-6\">\n <h3 class=\"heading-medium\">CCD reference:</h3>\n <span> {{ ccdCaseNumber | ccdHyphens }}</span>\n </div>\n\n <div *ngIf='isExceptionRecord' class=\"govuk-grid-column-two-thirds govuk-!-padding-bottom-6 govuk-!-padding-top-6\">\n <h3 class=\"heading-medium\">Exception reference:</h3>\n <span> {{ ccdCaseNumber | ccdHyphens }}</span>\n </div>\n\n <div class=\"govuk-grid-column-full govuk-!-padding-bottom-3\">\n <hr class=\"govuk-section-break govuk-section-break--visible\">\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Total payments</td>\n <td class=\"govuk-table__header\" scope=\"col\">Total remissions</td>\n <td class=\"govuk-table__header\" scope=\"col\">Amount due</td>\n <td class=\"govuk-table__header govuk-table__header--custom\" scope=\"col\" *ngIf=\"isBulkScanEnable\">Unallocated payments</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\">\n <tr class=\"totalpayments govuk-table__row\">\n <td class=\"govuk-table__cell\">{{ totalPayments | currency :'GBP':'symbol':'1.2-2' }}</td>\n <td class=\"govuk-table__cell\">{{ totalRemissions | currency :'GBP':'symbol':'1.2-2' }}</td>\n <td class=\"govuk-table__cell\">{{ clAmountDue | currency :'GBP':'symbol':'1.2-2'}}</td>\n <td class=\"govuk-table__cell case-transaction__color\" *ngIf=\"isBulkScanEnable\">{{unprocessedRecordCount}}</td>\n </tr>\n </tbody>\n </table>\n </div>\n\n <div class=\"govuk-grid-column-two-thirds govuk-!-padding-bottom-6\" *ngIf=\"takePayment\">\n <button type=\"submit\" (click)=\"redirectToFeeSearchPage($event)\"\n [disabled]=\"!isAddFeeBtnEnabled\"\n [ngClass]='!isAddFeeBtnEnabled ? \"govuk-button govuk-button--secondary govuk-button--disabled govuk-!-margin-right-1\" : \"govuk-button govuk-button--secondary govuk-!-margin-right-1\"'>\n Take telephony payment\n </button>\n </div>\n\n </div>\n\n <div class=\"govuk-grid-row\">\n <div *ngIf=\"takePayment\">\n <hr class=\"govuk-section-records-break\">\n </div>\n <ccpay-app-unprocessed-payments\n *ngIf=\"isBulkScanEnable\"\n [IS_BUTTON_ENABLE]=\"takePayment\"\n [FEE_RECORDS_EXISTS]=\"isAnyFeeGroupAvilable\"\n [PAYMENTREF]=\"paymentRef\"\n (getUnprocessedFeeCount) = \"getUnprocessedFeeCount($event)\"\n (selectedUnprocessedFeeEvent) = \"selectedUnprocessedFeeEvent($event)\">\n </ccpay-app-unprocessed-payments>\n <hr class=\"govuk-section-records-break\">\n <ccpay-app-processed-payments\n *ngIf=\"takePayment\" [NONPAYMENTS]=\"nonPayments\"\n (goToPaymentViewComponent) = \"goToPaymentViewComponent($event)\"\t>\n </ccpay-app-processed-payments>\n <hr class=\"govuk-section-records-break\">\n </div>\n <div *ngIf=\"takePayment\">\n\n <div class=\"govuk-grid-row\">\n <div class=\"govuk-grid-column-full\">\n <span class=\"heading-small\">Fees</span>\n </div>\n\n <div class=\"govuk-grid-column-full\">\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Code</td>\n <td class=\"govuk-table__header\" scope=\"col\">Description</td>\n <td class=\"govuk-table__header\" scope=\"col\">Volume</td>\n <td class=\"govuk-table__header\" scope=\"col\">Fee amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Calculated amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Amount due</td>\n <td class=\"govuk-table__header\" scope=\"col\">Action</td>\n\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"paymentGroups?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let fee of fees;\">\n <td class=\"govuk-table__cell\">\t{{fee.code}} </td>\n <td class=\"govuk-table__cell\">{{fee.description}}</td>\n <td class=\"govuk-table__cell\">{{fee.volume? fee.volume : '-'}}</td>\n <td class=\"govuk-table__cell\">{{ fee.fee_amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"govuk-table__cell\">{{fee.calculated_amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"govuk-table__cell\"> {{calculateAmountDue(fee) | currency:'GBP':'symbol-narrow':'1.2-2'}} </td>\n <td class=\"govuk-table__cell\">\n <a (click)=\"confirmRemoveFee(fee.id)\" [ngClass]='!isCheckAmountdueExist(fee.amount_due) ? \"disable-link\" : \"\"'>Remove</a>\n </td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"paymentGroups?.length === 0\">\n <tr class=\"govuk-table__row\" >\n <td class=\"govuk-table__cell\" colspan=\"7\">No fees recorded</td>\n </tr>\n </tbody>\n </table>\n </div>\n </div>\n <details *ngIf=\"allPayments?.length > 0 || remissions?.length > 0\">\n <summary class=\"govuk-hidetext\">\n <span class=\"summary\">Payments and remissions</span>\n </summary>\n\n <div class=\"panel panel-border-narrow\">\n <!-- payments -->\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Payment reference</td>\n <td class=\"govuk-table__header\" scope=\"col\">Date created</td>\n <td class=\"govuk-table__header\" scope=\"col\">Channel</td>\n <td class=\"govuk-table__header\" scope=\"col\">Method</td>\n <td class=\"govuk-table__header\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Allocation status</td>\n <td class=\"govuk-table__header\" scope=\"col\">Payment status</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"allPayments?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let payment of allPayments\">\n <td class=\"govuk-table__cell whitespace-inherit\">\n <a href=\"javascript:void(0)\" (click)=\"goToPayementView(payment.paymentGroupReference, payment.reference, payment.method)\">{{ payment.reference }}</a>\n </td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.date_created | date:'dd MMM yyyy HH:mm:ss' }}</td>\n <td class=\"channel govuk-table__cell whitespace-inherit\">{{ payment.channel | lowercase }}</td>\n <td class=\"govuk-table__cell capitalize whitespace-inherit\">{{ payment.method | lowercase}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.amount }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\"> {{getAllocationStatus(payment)}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.status }}</td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"allPayments?.length === 0\">\n <td class=\"govuk-table__cell\" colspan=\"6\">No payments recorded</td>\n </tbody>\n </table>\n\n <!-- remissions -->\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Fee code</td>\n <td class=\"govuk-table__header\" scope=\"col\">Remission reference</td>\n <td class=\"govuk-table__header\" scope=\"col\">Date created</td>\n <td class=\"govuk-table__header\" scope=\"col\">Remission code</td>\n <td class=\"govuk-table__header\" scope=\"col\">Remission amount</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"remissions?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let remission of remissions\">\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.fee_code }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.remission_reference }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.date_created | date:'dd MMM yyyy HH:mm:ss' }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.hwf_reference }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.hwf_amount }}</td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"remissions?.length === 0\">\n <td class=\"govuk-table__cell\" colspan=\"5\">No remissions recorded</td>\n </tbody>\n </table>\n </div>\n </details>\n </div>\n</div>\n<div *ngIf=\"!takePayment\" class=\"govuk-grid-row govuk-grid__surplus-payments\">\n <div class=\"govuk-grid-column-full\">\n <span class=\"heading-medium\">Processed payments</span>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Payment reference</td>\n <td class=\"govuk-table__header\" scope=\"col\">Date created</td>\n <td class=\"govuk-table__header\" scope=\"col\">Date updated</td>\n <td class=\"govuk-table__header\" scope=\"col\">Channel</td>\n <td class=\"govuk-table__header\" scope=\"col\">Method</td>\n <td class=\"govuk-table__header\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Allocation status</td>\n <td class=\"govuk-table__header\" scope=\"col\">Status</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"allPayments?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let payment of allPayments\">\n <td class=\"govuk-table__cell whitespace-inherit\">\n <a href=\"javascript:void(0)\" (click)=\"goToPayementView(payment.paymentGroupReference, payment.reference, payment.method)\">{{ payment.reference }}</a>\n </td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.date_created | date:'dd MMM yyyy HH:mm:ss' }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.date_updated | date:'dd MMM yyyy HH:mm:ss' }}</td>\n <td class=\"channel govuk-table__cell whitespace-inherit\">{{ payment.channel | lowercase }}</td>\n <td class=\"govuk-table__cell capitalize whitespace-inherit\">{{ payment.method | lowercase}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.amount }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\"> {{getAllocationStatus(payment)}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.status }}</td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"allPayments?.length === 0\">\n <td class=\"govuk-table__cell\" colspan=\"8\">No payments recorded</td>\n </tbody>\n </table>\n</div>\n</div>\n<ng-container *ngIf=\"viewStatus === 'feeRemovalConfirmation'\">\n <div class=\"govuk-warning-text\">\n <span class=\"govuk-warning-text__icon\" aria-hidden=\"true\">!</span>\n <strong class=\"govuk-warning-text__text\">\n <span class=\"govuk-warning-text__assistive\">Warning</span>\n Are you sure you want to delete this fee?\n </strong>\n </div>\n <div class=\"govuk-button-grb\">\n <form novalidate>\n <button type=\"submit\" class=\"button govuk-button--secondary\" (click)=\"cancelRemoval()\">\n Cancel\n </button>\n <button type=\"submit\" class=\"button\"\n [disabled]=\"isRemoveBtnDisabled\"\n [ngClass]='isRemoveBtnDisabled ? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"'\n (click)=\"removeFee(feeId)\">\n Remove\n </button>\n </form>\n </div>\n</ng-container>\n </main>\n`,\n styles: [`.govuk-grid-column-full--gr{position:relative;margin-bottom:10px}.disable{text-decoration:none;cursor:default;color:#fff;background-color:grey;pointer-events:none}.govuk-grid__surplus-payments{margin:20px 0}.govuk-grid__surplus-payments>.govuk-grid-column-full{padding:0}.govuk-grid__surplus-payments-col1{margin-bottom:10px}.govuk-inset-text__no-border{border-left:0}.govuk-hidetext{font-size:22px;padding-bottom:10px}.lowercase{text-transform:lowercase}.channel::first-letter{text-transform:uppercase}.govuk-heading-xl{font-size:48px;margin-bottom:1px}.govuk-section-break--visible{border-bottom:2px solid #000}.totalpayments.govuk-table__row{border-bottom:2px solid #000!important}.govuk-inset-text{margin-left:1em}.govuk-button{font-size:19px}.govuk-table__cell.govuk-table__cell--col6.govuk-table__custom--col6,.groupamount.govuk-table__header{text-align:right}.feeclass{padding-left:.7em}.align-center{text-align:center}details summary{display:list-item}.case-transaction__color{color:#a71414;font-weight:700;text-align:center}.capitalize::first-letter{text-transform:uppercase}.govuk-inset-text__no-left-margin{margin-left:0;padding-left:0}.whitespace-inherit{white-space:inherit!important}.govuk-section-records-break{margin:10px;border-bottom:2px solid #000!important}.exisitng-fees{margin-left:12px}.add-telephony-payment{margin-top:-2em;margin-left:-2em}.govuk-table__header--custom{text-align:center}.disable-link{cursor:default;pointer-events:none;color:#8e8c8c}`]\n})\nexport class CaseTransactionsComponent implements OnInit {\n takePayment: boolean;\n ccdCaseNumber: string;\n excReference: string;\n paymentGroups: any[] = [];\n payments: IPayment[] = [];\n nonPayments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n fees: IFee[] = [];\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalNonOffPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n paymentRef: string;\n isAddFeeBtnEnabled: boolean = true;\n isExceptionRecord: boolean = false;\n isUnprocessedRecordSelected: boolean = false;\n exceptionRecordReference: string;\n isAnyFeeGroupAvilable: boolean = true;\n isBulkScanEnable;\n viewStatus = 'main';\n isRemoveBtnDisabled: boolean = false;\n feeId:IFee;\n clAmountDue: number = 0;\n unprocessedRecordCount: number;\n constructor(private router: Router,\n private paymentViewService: PaymentViewService,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private caseTransactionsService: CaseTransactionsService,\n private paymentLibComponent: PaymentLibComponent) { }\n\n ngOnInit() {\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\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.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts();\n this.calculateRefundAmount();\n },\n (error: any) => {\n this.errorMessage = <any>error;\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.checkForExceptionRecord();\n }\n\n setDefaults(): void {\n this.totalPayments = 0.00;\n this.totalRemissions = 0.00;\n this.totalNonOffPayments = 0.00;\n}\ngetAllocationStatus(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\ncheckForExceptionRecord(): void {\n if(this.paymentGroups.length === 0 && this.selectedOption.toLocaleLowerCase() === 'ccdorexception') {\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 this.nonPayments = paymentGroup.payments;\n paymentGroup.payments.forEach(payment => {\n if (payment.case_reference !== undefined && payment.case_reference.length > 0) {\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 calculateAmounts(): void {\n let 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 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 });\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n let allocationLen = payment.payment_allocation;\n if(allocationLen.length === 0 || allocationLen.length > 0 && allocationLen[0].allocation_status ==='Allocated') {\n nonOffLinePayment = nonOffLinePayment + payment.amount;\n }\n this.payments.push(payment);\n }\n payment.paymentGroupReference = paymentGroup.payment_group_reference\n this.allPayments.push(payment);\n });\n }\n this.totalPayments = paymentsTotal;\n this.totalNonOffPayments = nonOffLinePayment;\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 calculateRefundAmount() {\n let isNewPaymentGroup = false,\n isOldPaymentGroup = false;\n\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 paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n if(fee.date_created) {\n isNewPaymentGroup = true;\n }else {\n isOldPaymentGroup = true;\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 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = true;\n this.paymentRef = paymentGroup.payment_group_reference;\n }\n if(grpOutstandingAmount <= 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = false;\n }\n });\n if((!isNewPaymentGroup && isOldPaymentGroup) || (!isNewPaymentGroup && !isOldPaymentGroup)) {\n this.isAnyFeeGroupAvilable = false;\n }\n }\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);;\n }\n\n redirectToFeeSearchPage(event: any) {\n event.preventDefault();\n if(!this.isAnyFeeGroupAvilable) {\n const url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}${url}`);\n } else {\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = this.paymentRef;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n }\n\n redirectToReportsPage(event: any) {\n event.preventDefault();\n this.router.navigateByUrl(`/reports?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}`);\n }\n loadFeeSummaryPage(paymentGroup: IPaymentGroup) {\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.payment_group_reference;\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 this.isUnprocessedRecordSelected = true;\n } else {\n this.isUnprocessedRecordSelected = false;\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 ? 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 cancelRemoval() {\n this.viewStatus = 'main';\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","import { IFee } from './IFee';\n\nexport class PaymentToPayhubRequest {\n currency = 'GBP';\n site_id: string;\n description = 'PayBubble payment';\n channel = 'telephony';\n provider = 'pci pal';\n service: string;\n\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, service: string, serviceName: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.service= serviceName;\n this.site_id = service;\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 { SafeHtml } from '@angular/platform-browser';\nimport {Router} from '@angular/router';\nimport {Location} from '@angular/common';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-fee-summary',\n template: `\n<div class=\"govuk-breadcrumbs\" *ngIf=\"isBackButtonEnable\">\n <ol class=\"govuk-breadcrumbs__list\">\n <li class=\"govuk-breadcrumbs__list-item\">\n <a (click)=\"redirectToFeeSearchPage($event)\" class=\"govuk-back-link govuk-label\">Back</a>\n </li>\n </ol>\n</div>\n\n<div class=\"fee-summary\" *ngIf=\"viewStatus === 'main'\">\n <main class=\"govuk-main-wrapper\">\n <div class=\"govuk-grid-row\">\n <div class=\"govuk-grid-column-two-thirds\">\n <h1 class=\"heading-xlarge\">Fee Summary</h1>\n </div>\n\n\n  <div class=\"govuk-grid-column-one-third\" align=\"right\">\n       <button (click)=\"redirectToFeeSearchPage($event,'summary')\"\n       [disabled]=\"isPaymentExist || isRemissionsExist\"\n       [ngClass]='isPaymentExist || isRemissionsExist ? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"'>\n Add a new fee\n </button>\n </div>\n </div>\n\n\n <div *ngIf=\"errorMessage\">\n <div class=\"error-summary\" role=\"group\" aria-labelledby=\"failure-error-summary-heading\" tabindex=\"-1\">\n <h2 class=\"heading-medium error-summary-heading\" id=\"failure-error-summary-heading\">\n Payment Group details could not be retrieved\n </h2>\n <div class=\"govuk-error-summary__body\">\n {{ errorMessage }}\n </div>\n </div>\n </div>\n\n <table class=\"govuk-table\" *ngIf=\"!errorMessage && paymentGroup\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <th class=\"govuk-table__header govuk-!-font-weight-bold\" scope=\"col\">Fee Code</th>\n <th class=\"govuk-table__header govuk-!-font-weight-bold\" scope=\"col\">Fee description</th>\n <th class=\"govuk-table__header govuk-!-font-weight-bold\" scope=\"col\">Remission code</th>\n <th class=\"govuk-table__header govuk-!-font-weight-bold\" scope=\"col\"></th>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"paymentGroup.fees\">\n <tr class=\"govuk-table__row\" *ngFor=\"let fee of paymentGroup.fees; let i = index;\">\n <td class=\"govuk-table__cell\">{{ fee.code }}</td>\n <td class=\"govuk-table__cell\">{{ fee.description }}</td>\n <td class=\"govuk-table__cell\">{{ getRemissionByFeeCode(fee.code)?.hwf_reference }}</td>\n <td class=\"govuk-table__cell grey-text\">\n <table class=\"govuk-table\">\n <tr class=\"govuk-table__row\">\n <td class=\"no-border grey-text subcolumn-1\">Fee amount:</td>\n <td class=\"no-border subcolumn-2\">{{ fee.fee_amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"no-border subcolumn-3\">\n <a (click)=\"confirmRemoveFee(fee.id)\" [ngClass]='!isCheckAmountdueExist(fee.amount_due) ? \"disable-link\" : \"\"'>remove fee</a>\n </td>\n </tr>\n <tr class=\"govuk-table__row\" *ngIf=\"fee.volume && fee.volume > 0\">\n <td class=\"no-border grey-text subcolumn-1\">Volume:</td>\n <td class=\"no-border subcolumn-2\">{{ fee.volume }}</td>\n <td class=\"no-border subcolumn-3\"></td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"no-border grey-text subcolumn-1\">Fee total:</td>\n <td class=\"no-border subcolumn-2\">{{ fee.calculated_amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"no-border subcolumn-3\"></td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"no-border grey-text subcolumn-1\">Remission amount:</td>\n <td class=\"no-border subcolumn-2\">{{ getRemissionByFeeCode(fee.code)?.hwf_amount? ( getRemissionByFeeCode(fee.code)?.hwf_amount | currency:'GBP':'symbol-narrow':'1.2-2') : '-' }}</td>\n <td class=\"no-border subcolumn-3\"> <a (click)=\"addRemission(fee)\" [ngClass]=\"{'remissionDisable': !service}\" *ngIf=\"getRemissionByFeeCode(fee.code)?.hwf_amount === 0 || !getRemissionByFeeCode(fee.code)?.hwf_amount\">Deduct remission</a></td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"no-border grey-text subcolumn-1\">Total after remission:</td>\n <td class=\"no-border subcolumn-2\">{{ fee.net_amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"no-border subcolumn-3\"></td>\n </tr>\n </table>\n </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"no-border\"></td>\n <td class=\"no-border\"></td>\n <td class=\"no-border\"></td>\n <td class=\"no-border\">\n <table class=\"govuk-table\">\n <tr class=\"govuk-table__row\">\n <td class=\"no-border govuk-!-font-weight-bold subcolumn-1\">Total payment</td>\n <td class=\"no-border subcolumn-2\">{{ totalAfterRemission - outStandingAmount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n <td class=\"no-border subcolumn-3\"></td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"no-border govuk-!-font-weight-bold subcolumn-1\">Total outstanding amount</td>\n <td class=\"no-border subcolumn-2\">{{ outStandingAmount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n <td class=\"no-border subcolumn-3\"></td>\n </tr>\n </table>\n </td>\n </tr>\n\n <tr class=\"govuk-table__row\" *ngIf=\"!bsPaymentDcnNumber\">\n <td class=\"no-border\"></td>\n <td class=\"no-border\"></td>\n <td class=\"no-border\"></td>\n <td class=\"no-border\">\n <div class=\"govuk-form-group govuk-form-group--mg\">\n <label class=\"govuk-label custom-govuk-label govuk-fieldset__heading--fz\" for=\"responsibleOffice\">\n <strong>What service is this fee for?</strong>\n </label>\n <select class=\"govuk-select govuk-select--custom\" id=\"responsibleOffice\" [(ngModel)]=\"service\" name=\"responsibleOffice\">\n <option value=\"\" selected='selected'>Please select</option>\n <option value=\"AA07\">Divorce</option>\n <option value=\"ABA3\">Family Public Law</option>\n <option value=\"AA08\">Probate</option>\n </select>\n </div>\n </td>\n </tr>\n </tbody>\n <tr class=\"govuk-table__row\">\n <td class=\"no-border\"></td>\n <td class=\"no-border\"></td>\n <td class=\"no-border\"></td>\n <td class=\"no-border\">\n <table class=\"govuk-table\">\n <tr class=\"govuk-table__row\">\n <td class=\"no-border subcolumn-2\"> \n <button *ngIf=\"!bsPaymentDcnNumber\" type=\"submit\" (click)=\"takePayment()\"\n [disabled]=\"totalFee <= 0 || !service || isConfirmationBtnDisabled\"\n [ngClass]='totalFee <= 0 || !service || isConfirmationBtnDisabled? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"'>\n Take payment\n </button>\n <button *ngIf=\"bsPaymentDcnNumber\" type=\"button\" (click)=\"goToAllocatePage(outStandingAmount, isFeeAmountZero)\" class=\"button govuk-!-margin-right-1\">\n <span *ngIf=\"outStandingAmount > 0 || (isFeeAmountZero && outStandingAmount === 0)\">\n Allocate payment\n </span>\n <span *ngIf=\"outStandingAmount < 0 || (!isFeeAmountZero && outStandingAmount === 0)\">\n Continue\n </span>\n </button>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n</main>\n</div>\n\n <ng-container *ngIf=\"viewStatus === 'feeRemovalConfirmation'\">\n <div class=\"govuk-warning-text\">\n <span class=\"govuk-warning-text__icon\" aria-hidden=\"true\">!</span>\n <strong class=\"govuk-warning-text__text\">\n <span class=\"govuk-warning-text__assistive\">Warning</span>\n Are you sure you want to delete this fee?\n </strong>\n </div>\n <div class=\"govuk-button-grb\">\n <form novalidate>\n <button type=\"submit\" class=\"button govuk-button--secondary\" (click)=\"cancelRemission()\">\n Cancel\n </button>\n <button type=\"submit\" class=\"button\" \n [disabled]=\"isRemoveBtnDisabled\"\n [ngClass]='isRemoveBtnDisabled ? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"'\n (click)=\"removeFee(currentFee)\">\n Remove\n </button>\n </form>\n </div>\n </ng-container>\n\n<ccpay-add-remission *ngIf=\"viewStatus === 'add_remission' && currentFee\" [fee]=\"currentFee\" [service]=\"service\" [ccdCaseNumber]=\"ccdCaseNumber\" [paymentGroupRef]=\"paymentGroupRef\" (cancelRemission)=\"cancelRemission()\"></ccpay-add-remission>\n<div *ngIf=\"viewStatus === 'payhub_view' && payhubHtml\" [innerHTML]=\"payhubHtml | sanitizeHtml\" id=\"payhub-html-id\"></div>\n`,\n styles: [`.fee-summary .grey-text{color:#6b7376;font-weight:500}.fee-summary .govuk-table{margin-bottom:0}.fee-summary .no-border{border:none;border-bottom:none}.fee-summary table td,.fee-summary table th{font-size:15px;font-weight:500;vertical-align:top;max-width:320px}.fee-summary table td .no-padding,.fee-summary table th .no-padding{padding:0}.fee-summary table td .subcolumn-1,.fee-summary table th .subcolumn-1{width:45%}.fee-summary table td .subcolumn-2,.fee-summary table th .subcolumn-2{width:25%;text-align:right}.fee-summary table td .subcolumn-3,.fee-summary table th .subcolumn-3{width:30%;text-align:center}.govuk-button-grb{padding-bottom:20px}.govuk-button-grb .govuk-button--secondary{background-color:#dee0e2;box-shadow:0 2px 0 #858688;color:#0b0c0c;margin-right:10px}.govuk-form-group--mg{margin-top:10px!important}.govuk-fieldset__heading--fz{font-size:16px}.remissionDisable{color:grey;cursor:default}.heading-xlarge{margin:0 0 14px -20px}.govuk-select--custom{width:50%}.disable-link{cursor:default;pointer-events:none;color:#8e8c8c}`]\n})\n\nexport class FeeSummaryComponent implements OnInit {\n @Input() paymentGroupRef: string;\n @Input() ccdCaseNumber: string;\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 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\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private location: Location,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent\n ) {}\n\n ngOnInit() {\n this.viewStatus = 'main';\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\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 if (this.service) {\n this.currentFee = fee;\n this.viewStatus = 'add_remission';\n }\n }\n\n getPaymentGroup() {\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 });\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 cancelRemission() {\n this.viewStatus = 'main';\n }\n redirectToFeeSearchPage(event: any, page?: string) {\n event.preventDefault();\n let dcn = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n const ISBSenable = this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\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}${dcn}${ISBSenable}`;\n this.router.navigateByUrl(url);\n }\n takePayment() {\n this.isConfirmationBtnDisabled = true;\n const seriveName = this.service ==='AA07' ? 'DIVORCE': this.service ==='AA08' ? 'PROBATE' : 'FPL',\n\n requestBody = new PaymentToPayhubRequest(this.ccdCaseNumber, this.outStandingAmount, this.service, seriveName);\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 }\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","/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation. All rights reserved.\r\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\r\nthis file except in compliance with the License. You may obtain a copy of the\r\nLicense at http://www.apache.org/licenses/LICENSE-2.0\r\n\r\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\r\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\r\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\r\nMERCHANTABLITY OR NON-INFRINGEMENT.\r\n\r\nSee the Apache Version 2.0 License for specific language governing permissions\r\nand limitations under the License.\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++) if (e.indexOf(p[i]) < 0)\r\n t[p[i]] = s[p[i]];\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 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) : new P(function (resolve) { resolve(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 __exportStar(m, exports) {\r\n for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator], i = 0;\r\n if (m) return m.call(o);\r\n 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}\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 __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","import { Component, OnInit, Input } from '@angular/core';\n\n\n\n@Component({\n selector: 'ccpay-error-banner',\n template: `<div class=\"govuk-error-summary\" aria-labelledby=\"error-summary-title\" role=\"alert\" tabindex=\"-1\" data-module=\"govuk-error-summary\">\n <h2 class=\"govuk-error-summary__title govuk-error-summary__title-custom\" id=\"error-summary-title\">\n {{errorMessage.title}}\n </h2>\n <div class=\"govuk-error-summary__body\">\n <ul class=\"govuk-list govuk-error-summary__list\">\n <li>\n {{errorMessage.body}}\n </li>\n </ul>\n </div>\n</div>`,\n styles: [`.govuk-error-summary h2{font-size:24px}.govuk-error-summary__list li{font-size:19px}`]\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 requestor: String;\n site_id: String;\n\n constructor(ccd_case_number : string, unAllocatedPayment: IBSPayments, siteID: string, exceptionRecord: string) {\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.requestor= siteID==='AA07' ? 'DIVORCE' : siteID==='AA09' ? 'FINREM' : 'PROBATE';\n this.site_id= siteID;\n }\n}\n","import { Component, OnInit } 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 template: `<div class=\"mkpay-unidentified\" >\n <div *ngIf=\"viewStatus === 'mainForm'\">\n <h1 class=\"heading-large\">Mark payment as unidentified</h1>\n\n <div class=\"govuk-grid-column-full govuk-!-padding-bottom-3\">\n <hr class=\"govuk-section-break govuk-section-break--visible\">\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Payment asset number (DCN)</td>\n <td class=\"govuk-table__header\" scope=\"col\">Banked date</td>\n <td class=\"govuk-table__header\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Method</td>\n \n </tr>\n </thead>\n <tbody class=\"govuk-table__body\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell\">{{unassignedRecord.dcn_reference}}</td>\n <td class=\"govuk-table__cell\"> {{unassignedRecord.date_banked | date:'dd MMM yyyy'}}</td>\n <td class=\"govuk-table__cell\"> {{unassignedRecord.amount | currency :'GBP':'symbol':'1.2-2'}}</td>\n <td class=\"capitalize govuk-table__cell\"> {{trimUnderscore(unassignedRecord.payment_method) | lowercase}} </td>\n </tr>\n </tbody>\n </table>\n </div>\n <form [formGroup]=\"markPaymentUnidentifiedForm\" novalidate>\n <div class=\"govuk-form-group\">\n <p class=\"unidentifiedSubText\">\n Give a reason for marking this payment as unidentified.\n <br/>\n Include any investigations you've made.\n </p>\n <label class=\"heading-small\" for=\"investicationDetail\">\n\n </label>\n <textarea class=\"form-control form-control-3-4\" [ngClass]=\"{'inline-error-class': isInvesticationDetailEmpty || investicationDetailHasError || investicationDetailMinHasError || investicationDetailMaxHasError}\" name=\"investicationDetail\" id=\"investicationDetail\" rows=\"5\" formControlName=\"investicationDetail\">\n </textarea>\n <p class=\"inline-error-message\" *ngIf=\"isInvesticationDetailEmpty || investicationDetailHasError || investicationDetailMinHasError || investicationDetailMaxHasError\">\n <span *ngIf=\"isInvesticationDetailEmpty\">Enter a reason for marking this payment as unidentified.</span>\n <span *ngIf=\"investicationDetailHasError\">Enter a vaild reason</span>\n <span *ngIf=\"investicationDetailMinHasError\">Reason should be at least 3 characters.</span>\n <span *ngIf=\"investicationDetailMaxHasError\">Reason should be 255 characters or under.</span>\n </p>\n </div>\n <div class=\"govuk-button--group\">\n <button type=\"submit\" class=\"button\" (click)=\"saveAndContinue()\">\n Continue\n </button>\n <button type=\"button\" class=\"button govuk-button--secondary\" (click)=\"cancelMarkUnidentifiedPayments('cancel')\">\n Cancel\n </button>\n </div>\n </form>\n </div>\n <ng-container *ngIf=\"viewStatus === 'unidentifiedContinueConfirm'\">\n <ccpay-error-banner *ngIf=\"errorMessage.showError\" [errorMessage]=\"errorMessage\"></ccpay-error-banner>\n\n <div class=\"govuk-warning-text\">\n <span class=\"govuk-warning-text__icon\" aria-hidden=\"true\">!</span>\n <strong class=\"govuk-warning-text__text\">\n <span class=\"govuk-warning-text__assistive\">Warning</span>\n <h1 class=\"heading-small\"> Are you sure you want to mark this payment as unidentified? </h1>\n \n </strong>\n\n <div class=\"govuk-grid-column-full govuk-!-padding-bottom-3\">\n <hr class=\"govuk-section-break govuk-section-break--visible\">\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Investigations</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell\">{{investigationComment}}</td>\n </tr>\n </tbody>\n </table>\n </div>\n\n </div>\n <div class=\"govuk-button--group\">\n <button type=\"submit\" class=\"button\" [disabled]=\"isConfirmButtondisabled\" (click)=\"confirmPayments()\">\n Confirm\n </button>\n <button type=\"button\" class=\"button govuk-button--secondary\" (click)=\"cancelMarkUnidentifiedPayments()\">\n Cancel\n </button>\n </div>\n </ng-container>\n <ng-container *ngIf=\"viewStatus === 'unidentifiedCancelConfirm'\">\n <div class=\"govuk-warning-text\">\n <span class=\"govuk-warning-text__icon\" aria-hidden=\"true\">!</span>\n <strong class=\"govuk-warning-text__text\">\n <span class=\"govuk-warning-text__assistive\">Warning</span>\n Are you sure you want to cancel?\n </strong>\n </div>\n <div class=\"govuk-button--group\">\n <button type=\"submit\" class=\"button\" (click)=\"gotoCasetransationPage()\">\n Yes\n </button>\n <button type=\"button\" class=\"button govuk-button--secondary\" (click)=\"cancelMarkUnidentifiedPayments()\">\n No\n </button>\n </div>\n </ng-container>\n</div>\n`,\n styles: [`.mkpay-unidentified{margin:10px 0 20px}.mkpay-unidentified .govuk-button--group .govuk-button--secondary{margin-left:10px;background-color:#b3b8bdf2}.mkpay-unidentified .inline-error-class{outline:#a71414 solid 3px;outline-offset:0}.mkpay-unidentified .inline-error-message{color:#a71414;font-weight:700;margin-top:10px}.govuk-grid-column-full{padding:0}.unidentifiedSubText{line-height:45px}.govuk-warning-text__text{font-size:19px}.lowercase{text-transform:lowercase}.capitalize{text-transform:capitalize}`]\n})\nexport class MarkUnidentifiedPaymentComponent implements OnInit {\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\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.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\n const reason = this.markPaymentUnidentifiedForm.get('investicationDetail').value;\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 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 } 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 { stringLiteral } from 'babel-types';\nimport { THIS_EXPR } from '@angular/compiler/src/output/output_ast';\n\n@Component({\n selector: 'app-mark-unsolicited-payment',\n template: `<div class=\"mkpay-unidentified\">\n <div *ngIf=\"viewStatus === 'mainForm'\">\n <h1 class=\"heading-large\">Mark payment as transferred</h1>\n <div class=\"govuk-grid-column-full govuk-!-padding-bottom-3\">\n <hr class=\"govuk-section-break govuk-section-break--visible\">\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Payment asset number (DCN)</td>\n <td class=\"govuk-table__header\" scope=\"col\">Banked date</td>\n <td class=\"govuk-table__header\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Method</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell\">{{unassignedRecord.dcn_reference}}</td>\n <td class=\"govuk-table__cell\"> {{unassignedRecord.date_banked | date:'dd MMM yyyy'}}</td>\n <td class=\"govuk-table__cell\"> {{unassignedRecord.amount | currency :'GBP':'symbol':'1.2-2'}}</td>\n <td class=\"capitalize govuk-table__cell\"> {{trimUnderscore(unassignedRecord.payment_method) | lowercase}} </td>\n </tr>\n </tbody>\n </table>\n </div>\n \n <form [formGroup]=\"markPaymentUnsolicitedForm\" novalidate>\n <div class=\"govuk-form-group\">\n <label class=\"govuk-label custom-govuk-label custom-govuk-label\" for=\"reason\">\n Reason for payment being marked as transferred \n </label>\n <textarea class=\"form-control form-control-3-4\" [ngClass]=\"{'inline-error-class': reasonHasError || reasonMinHasError || reasonMaxHasError}\" name=\"reason\" id=\"reason\" rows=\"5\" formControlName=\"reason\">\n </textarea>\n <p class=\"inline-error-message\" *ngIf=\"isReasonEmpty || reasonHasError || reasonMinHasError || reasonMaxHasError\">\n <span *ngIf=\"isReasonEmpty\">Enter a reason for marking this payment as transferred.</span>\n <span *ngIf=\"reasonHasError\">Enter a valid reason</span>\n <span *ngIf=\"reasonMinHasError\">Reason should be at least 3 characters.</span>\n <span *ngIf=\"reasonMaxHasError\">Reason should be 255 characters or under.</span>\n </p>\n </div>\n <div class=\"govuk-form-group\">\n <label class=\"govuk-label custom-govuk-label\" for=\"responsibleOffice\">\n Receiving Site ID (Receiving court/Bulk centre site ID) \n </label>\n <select class=\"form-control short-input\" id=\"responsibleOffice\" formControlName=\"responsibleOffice\" (change)=\"selectchange($event)\">\n <option value=\"P219\">Manchester District Probate Registry (P219)</option>\n <option value=\"Y964\">South West Regional Divorce Centre (Y964)</option>\n </select>\n </div>\n <div class=\"govuk-button--group\">\n <button type=\"submit\" class=\"button\" (click)=\"saveAndContinue()\">\n Confirm\n </button>\n <button type=\"button\" class=\"button govuk-button--secondary\" (click)=\"cancelMarkUnsolicitedPayments('cancel')\">\n Cancel\n </button>\n </div>\n </form>\n</div>\n <ng-container *ngIf=\"viewStatus === 'unsolicitedContinueConfirm'\">\n <ccpay-error-banner *ngIf=\"errorMessage.showError\" [errorMessage]=\"errorMessage\"></ccpay-error-banner>\n <div class=\"govuk-warning-text\">\n <span class=\"govuk-warning-text__icon\" aria-hidden=\"true\">!</span>\n <strong class=\"govuk-warning-text__text\">\n <span class=\"govuk-warning-text__assistive\">Warning</span>\n <h1 class=\"heading-small\"> Are you sure you want to mark this payment as transferred? </h1>\n </strong>\n\n <div class=\"govuk-grid-column-full govuk-!-padding-bottom-3\">\n <hr class=\"govuk-section-break govuk-section-break--visible\">\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Reason</td>\n <td class=\"govuk-table__header\" scope=\"col\">Receiving site ID</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell\">{{reason}}</td>\n <td class=\"govuk-table__cell\">{{selectedSiteName}}</td>\n </tr>\n </tbody>\n </table>\n </div>\n\n </div>\n <div class=\"govuk-button--group\">\n <button type=\"submit\" class=\"button\" [disabled]=\"isConfirmButtondisabled\" (click)=\"confirmPayments()\">\n Confirm\n </button>\n <button type=\"button\" class=\"button govuk-button--secondary\" (click)=\"cancelMarkUnsolicitedPayments()\">\n Cancel\n </button>\n </div>\n </ng-container>\n <ng-container *ngIf=\"viewStatus === 'unsolicitedCancelConfirm'\">\n <div class=\"govuk-warning-text\">\n <span class=\"govuk-warning-text__icon\" aria-hidden=\"true\">!</span>\n <strong class=\"govuk-warning-text__text\">\n <span class=\"govuk-warning-text__assistive\">Warning</span>\n Are you sure you want to cancel?\n </strong>\n </div>\n <div class=\"govuk-button--group\">\n <button type=\"submit\" class=\"button\" (click)=\"gotoCasetransationPage()\">\n Yes\n </button>\n <button type=\"button\" class=\"button govuk-button--secondary\" (click)=\"cancelMarkUnsolicitedPayments()\">\n No\n </button>\n </div>\n </ng-container>\n</div>`,\n styles: [`.mkpay-unidentified{margin:10px 0 20px}.mkpay-unidentified .govuk-button--secondary{margin-left:10px;background-color:#b3b8bdf2}.mkpay-unidentified .inline-error-class{outline:#a71414 solid 3px;outline-offset:0}.mkpay-unidentified .inline-error-message{color:#a71414;font-weight:700;margin-top:10px}.lowercase{text-transform:lowercase}.capitalize{text-transform:capitalize}.custom-govuk-label,.govuk-warning-text__text{font-size:19px}#responsibleOffice{color:#000;font-weight:#fff}select option{background:#fff}`]\n})\nexport class MarkUnsolicitedPaymentComponent implements OnInit {\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 ccdReference: string = null;\n exceptionReference: string = null;\n selectedSiteId: string;\n selectedSiteName: string;\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.getUnassignedPayment();\n\n const emailPattern = '^[a-z0-9](\\\\.?[a-z0-9_-]){0,}@[a-z0-9-]+\\\\.([a-z]{1,6}\\\\.)?[a-z]{2,6}$';\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 // 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 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 // this.markPaymentUnsolicitedForm.controls.responsibleOffice.setValue('P219');\n const officeIdField = this.selectedSiteId;\n if (this.markPaymentUnsolicitedForm.dirty && this.markPaymentUnsolicitedForm.valid) {\n const controls = this.markPaymentUnsolicitedForm.controls;\n this.emailId = controls.emailId.value;\n this.responsibleOffice = officeIdField;\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: \"There is a problem with the service\",\n body: \"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';\n\n@Component({\n selector: 'ccpay-app-unprocessed-payments',\n template: `<div class=\"unprocessed-payments govuk-grid-column-full govuk-!-padding-bottom-3\">\n <h3 class=\"heading-medium\" *ngIf=\"!IS_BUTTON_ENABLE\">Unprocessed payments</h3>\n <h3 class=\"heading-medium\" *ngIf=\"IS_BUTTON_ENABLE\">Unallocated payments</h3>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\" *ngIf=\"IS_BUTTON_ENABLE\">Select</td>\n <td class=\"govuk-table__header\" scope=\"col\">Payment asset number (DCN)</td>\n <td class=\"govuk-table__header\" scope=\"col\">Banked date</td>\n <td class=\"govuk-table__header\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Method</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" >\n <tr class=\"govuk-table__row\" *ngFor=\"let unassignedRecord of unassignedRecordList; let i of index;\">\n <td class=\"govuk-table__cell\" *ngIf=\"IS_BUTTON_ENABLE\">\n <div class=\"multiple-choice unprocessed-payments--radio-button\">\n <input id=\"'unpaiedFee'+i+''\"\n aria-label=\"unassignedRecord\"\n name=\"unassignedRecord\"\n type=\"radio\"\n [(ngModel)]=\"recordId\"\n (click)=\"unprocessedPaymentSelectEvent(unassignedRecord.dcn_reference)\"\n value=\"{{unassignedRecord.dcn_reference}}\" />\n <label for=\"radio-inline-1\"></label>\n </div>\n </td>\n <td class=\"govuk-table__cell whitespace-inherit\">\n {{unassignedRecord.dcn_reference}}\n </td>\n <td class=\"govuk-table__cell whitespace-inherit\"> {{unassignedRecord.date_banked | date:'dd MMM yyyy'}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\"> {{unassignedRecord.amount | currency :'GBP':'symbol':'1.2-2'}}</td>\n <td class=\"capitalize govuk-table__cell whitespace-inherit\"> {{ trimUnderscore(unassignedRecord.payment_method) | lowercase}} </td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"upPaymentErrorMessage !== null\">\n <td class=\"govuk-table__cell\" colspan=\"6\">No unallocated payments record available</td>\n </tbody>\n </table>\n <div class=\"button-grb\" *ngIf=\"IS_BUTTON_ENABLE\">\n <button type=\"button\"\n [disabled]=\"!isAllocatedToNewFeebtnEnabled\"\n [ngClass]=\"!isAllocatedToNewFeebtnEnabled ? 'button button--disabled govuk-!-margin-right-1' : 'button govuk-!-margin-right-1'\" (click)=\"redirectToFeeSearchPage($event)\">\n Allocate to a new fee\n </button>\n <button type=\"button\" \n [disabled]=\"!isAllocateToExistingFeebtnEnabled\"\n [ngClass]='!isAllocateToExistingFeebtnEnabled ? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"' (click)=\"goToAllocatePage()\">\n Allocate to an existing fee\n </button>\n <button type=\"button\" \n [disabled]=\"!isMarkAsUnidentifiedbtnEnabled\"\n [ngClass]='!isMarkAsUnidentifiedbtnEnabled ? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"' (click)=\"loadUnsolicitedPage('unidentifiedPage')\">\n Mark as unidentified\n </button>\n <button type=\"button\" \n [disabled]=\"!isUnprocessedRecordSelected\"\n [ngClass]='!isUnprocessedRecordSelected ? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"' (click)=\"loadUnsolicitedPage('unsolicitedPage')\">\n Mark as transferred\n </button> \n </div>\n</div>\n\n`,\n styles: [`.unprocessed-payments .unprocessed-payments--radio-button{bottom:10px}.disable{text-decoration:none;padding:.526315em .789473em .263157em;cursor:default;color:#fff;background-color:#00823b;pointer-events:none;font-size:1em;line-height:1.25;outline:transparent solid 1px;outline-offset:-1px;-webkit-appearance:none;box-shadow:0 2px 0 #003618}.button.disabled,.button[disabled=disabled],.button[disabled]{zoom:1;opacity:.5}.button.disabled:active,.button[disabled=disabled]:active,.button[disabled]:active{top:0;box-shadow:0 2px 0 #003618}.button[disabled=disabled]{background:#00823b}.lowercase{text-transform:lowercase}.capitalize::first-letter{text-transform:uppercase}.whitespace-inherit{white-space:inherit!important}`]\n})\nexport class UnprocessedPaymentsComponent implements OnInit {\n\n @Input('FEE_RECORDS_EXISTS') FEE_RECORDS_EXISTS: boolean;\n @Input('PAYMENTREF') PAYMENTREF: string;\n @Input('IS_BUTTON_ENABLE') IS_BUTTON_ENABLE: boolean;\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\n constructor(private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private paymentLibComponent: PaymentLibComponent) { }\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.getUnassignedPaymentlist();\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.dcnNumber).subscribe(\n unassignedPayments => {\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 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 setValuesForUnassignedRecord(unassignedPayments) {\n this.unassignedRecordList = unassignedPayments.payments;\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 }\n formatUnassignedRecordId(ID: Number) {\n return `unassignrecord-${ID}`;\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n redirectToFeeSearchPage(event: any) {\n event.preventDefault();\n const url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}&dcn=${this.recordId}${url}`);\n }\n loadUnsolicitedPage(viewName: string) {\n this.paymentLibComponent.bspaymentdcn = this.recordId;\n this.paymentLibComponent.viewName = viewName;\n }\n unprocessedPaymentSelectEvent(selectedRecordReference: any) {\n this.isUnprocessedRecordSelected = true;\n this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit(selectedRecordReference);\n }\n goToAllocatePage() {\n this.paymentLibComponent.bspaymentdcn = this.recordId;\n this.paymentLibComponent.paymentGroupReference = this.PAYMENTREF;\n this.paymentLibComponent.unProcessedPaymentServiceId = this.serviceId\n this.paymentLibComponent.viewName = 'fee-summary';\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 this.isAllocateToExistingFeebtnEnabled = true;\n this.isAllocatedToNewFeebtnEnabled = false;\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}\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 template: `<div class=\"processed-payments govuk-grid-column-full govuk-!-padding-bottom-3\">\n <h3 class=\"heading-medium\">Processed payments</h3>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Payment asset number (DCN)</td>\n <td class=\"govuk-table__header\" scope=\"col\">Banked date</td>\n <td class=\"govuk-table__header\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Method</td>\n <td class=\"govuk-table__header\" scope=\"col\">Allocation status</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" >\n <tr class=\"govuk-table__row\" *ngFor=\"let processedRecord of NONPAYMENTS\">\n <td class=\"govuk-table__cell\">\n <a href=\"javascript:void(0)\" (click)=\"redirectToPaymentViewPage(processedRecord.paymentGroupReference, processedRecord.reference, processedRecord.method)\">{{processedRecord.document_control_number}}</a>\n </td>\n <td class=\"govuk-table__cell\"> {{processedRecord.banked_date | date:'dd MMM yyyy'}}</td>\n <td class=\"govuk-table__cell\"> {{processedRecord.amount | currency :'GBP':'symbol':'1.2-2'}}</td>\n <td class=\"capitalize govuk-table__cell\"> {{ trimUnderscore(processedRecord.method) | lowercase}} </td>\n <td class=\"capitalize govuk-table__cell\"> {{ processedRecord.payment_allocation[0].allocation_status }} </td>\n\n </tr>\n <tr class=\"govuk-table__row\" *ngIf=\"NONPAYMENTS.length === 0\">\n <td class=\"govuk-table__cell\" colspan=\"5\">\n No processed payments\n </td>\n\n </tr>\n\n </tbody>\n </table>\n</div>\n`,\n styles: [`.lowercase{text-transform:lowercase}.capitalize::first-letter{text-transform:uppercase}`]\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 } 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 { 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';\n\n@Component({\n selector: 'app-allocate-payments',\n template: `<div class=\"allocate-payments\">\n <ng-container *ngIf=\"viewStatus === 'mainForm'\">\n <ccpay-error-banner *ngIf=\"errorMessage.showError\" [errorMessage]=\"errorMessage\"></ccpay-error-banner>\n <h1 class=\"govuk-heading-xl\">Confirm association</h1>\n <h2 class=\"govuk-heading-l govuk-heading-l--custom\">\n Amount to be allocated: {{amountForAllocation | currency:'GBP':'symbol-narrow':'1.2-2'}}\n </h2>\n <div class=\"payment-group-section\" *ngIf=\"paymentGroup\">\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Code</td>\n <td class=\"govuk-table__header\" scope=\"col\">Description</td>\n <td class=\"govuk-table__header\" scope=\"col\">Volume</td>\n <td class=\"govuk-table__header\" scope=\"col\">Fee amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Calculated amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Amount Due</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" >\n <tr class=\"govuk-table__row\" *ngFor=\"let fee of paymentGroup.fees; let i = index;\">\n <td class=\"govuk-table__cell govuk-table__cell--col1\">{{fee.code}}</td>\n <td class=\"govuk-table__cell govuk-table__cell--col2\"> {{fee.description}} </td>\n <td class=\"govuk-table__cell govuk-table__cell--col3\"> {{fee.volume? fee.volume : '-'}} </td>\n <td class=\"govuk-table__cell govuk-table__cell--col4\"> {{ fee.fee_amount | currency:'GBP':'symbol-narrow':'1.2-2' }} </td>\n <td class=\"govuk-table__cell govuk-table__cell--col5\"> {{fee.calculated_amount | currency:'GBP':'symbol-narrow':'1.2-2'}} </td>\n <td class=\"govuk-table__cell govuk-table__cell--col6\" [attr.rowspan]=\"paymentGroup.fees.length\" *ngIf=\"i==0\"> {{afterFeeAllocateOutstanding | currency:'GBP':'symbol-narrow':'1.2-2'}} </td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"paymentGroup.fees.length == 0\">\n <td class=\"govuk-table__cell\" colspan=\"6\">No payments recorded</td>\n </tbody>\n </table>\n </div>\n <div class=\"govuk-warning-text\" *ngIf=\"isRemainingAmountGtZero || isRemainingAmountLtZero || remainingAmount === 0\">\n <span class=\"govuk-warning-text__icon\" aria-hidden=\"true\">!</span>\n <strong class=\"govuk-warning-text__text govuk-warning-text__custom\">\n <span class=\"govuk-warning-text__assistive\">Warning</span>\n {{paymentSectionLabel.title}} {{ remainingAmount | currency:'GBP':'symbol-narrow':'1.2-2' }}\n </strong>\n </div>\n <div class=\"govuk-form-group\" *ngIf=\"isRemainingAmountGtZero || isRemainingAmountLtZero\">\n <div class=\"govuk-form-group\">\n <fieldset class=\"govuk-fieldset\" aria-describedby=\"how-contacted-conditional-hint\">\n <span id=\"how-contacted-conditional-hint\" class=\"govuk-hint\" [ngClass]=\"{'inline-error-message': paymentReasonHasError}\">\n {{paymentSectionLabel.reason}}\n </span>\n <div [ngClass]=\"paymentReasonHasError ? 'govuk-radios govuk-radios--conditional form-group-error' : 'govuk-radios govuk-radios--conditional'\" data-module=\"govuk-radios\" *ngIf=\"isRemainingAmountGtZero\">\n <div class=\"govuk-radios__item\" *ngFor=\"let reason of reasonList.overPayment | keyValue\" >\n <input class=\"govuk-radios__input\" id=\"{{reason.key}}\" name=\"paymentReason\" type=\"radio\" [(ngModel)]=\"paymentReason\" value={{reason.value}}>\n <label class=\"govuk-label govuk-radios__label govuk-font__custom\" for=\"how-contacted-conditional\">\n {{reason.value}}\n </label>\n </div>\n </div>\n <div [ngClass]=\"paymentReasonHasError ? 'govuk-radios govuk-radios--conditional form-group-error' : 'govuk-radios govuk-radios--conditional'\" data-module=\"govuk-radios\" *ngIf=\"isRemainingAmountLtZero\">\n <div class=\"govuk-radios__item\" *ngFor=\"let reason of reasonList.shortFall | keyValue\">\n <input class=\"govuk-radios__input\" id=\"{{reason.key}}\" name=\"paymentReason\" type=\"radio\" [(ngModel)]=\"paymentReason\" value={{reason.value}}>\n <label class=\"govuk-label govuk-radios__label govuk-font__custom\" for=\"how-contacted-conditional\">\n {{reason.value}}\n </label>\n </div>\n </div>\n </fieldset>\n </div>\n <div class=\"govuk-form-group\">\n <fieldset class=\"govuk-fieldset\" aria-describedby=\"how-contacted-conditional-hint\">\n <span id=\"how-contacted-conditional-hint\" class=\"govuk-hint\" [ngClass]=\"{'inline-error-message': paymentExplanationHasError}\">\n Provide an explanatory note\n </span>\n <div [ngClass]=\"paymentExplanationHasError ? 'govuk-radios govuk-radios--conditional form-group-error' : 'govuk-radios govuk-radios--conditional'\" data-module=\"govuk-radios\" *ngIf=\"isRemainingAmountGtZero\">\n <div class=\"govuk-radios__item\" *ngFor=\"let explanation of explanationList.overPayment | keyValue\">\n <input class=\"govuk-radios__input\" id=\"{{explanation.key}}\" name=\"paymentExplanation\" type=\"radio\" [(ngModel)]=\"paymentExplanation\" value={{explanation.value}} (click)=\"selectRadioButton(explanation.key, 'explanation')\">\n <label class=\"govuk-label govuk-radios__label govuk-font__custom\" for=\"how-contacted-conditional\">\n {{explanation.value}}\n </label>\n </div>\n </div>\n\n <div [ngClass]=\"paymentExplanationHasError ? 'govuk-radios govuk-radios--conditional form-group-error' : 'govuk-radios govuk-radios--conditional'\" data-module=\"govuk-radios\" *ngIf=\"isRemainingAmountLtZero\">\n <div class=\"govuk-radios__item\" *ngFor=\"let explanation of explanationList.shortFall | keyValue\" >\n <input class=\"govuk-radios__input\" id=\"{{explanation.key}}\" name=\"paymentExplanation\" type=\"radio\" [(ngModel)]=\"paymentExplanation\" value={{explanation.value}} (click)=\"selectRadioButton(explanation.key, 'explanation')\">\n <label class=\"govuk-label govuk-radios__label govuk-font__custom\" for=\"how-contacted-conditional\">\n {{explanation.value}}\n </label>\n </div>\n </div>\n </fieldset>\n </div>\n </div>\n\n <form [formGroup]=\"overUnderPaymentForm\" novalidate>\n <div \n [ngClass]=\"isMoreDetailsBoxHide ? 'govuk-radios__conditional govuk-radios__conditional--hidden' : isPaymentDetailsEmpty || isPaymentDetailsInvalid || paymentDetailsMinHasError || paymentDetailsMaxHasError ? 'govuk-radios__conditional inline-error-border' : 'govuk-radios__conditional'\" \n id=\"conditional-how-contacted-conditional-3\">\n <div class=\"govuk-form-group\">\n <span id=\"more-detail-hint\" class=\"govuk-hint govuk-font__custom\">\n Please enter details\n </span>\n <textarea \n class=\"govuk-textarea\" \n [ngClass]=\"{'inline-error-class': isPaymentDetailsEmpty || isPaymentDetailsInvalid || paymentDetailsMinHasError || paymentDetailsMaxHasError}\" \n id=\"moreDetails\" \n name=\"moreDetails\" \n rows=\"5\" \n formControlName=\"moreDetails\" >\n </textarea>\n <p class=\"inline-error-message\" *ngIf=\"isPaymentDetailsEmpty || isPaymentDetailsInvalid || paymentDetailsMinHasError || paymentDetailsMaxHasError\">\n <span *ngIf=\"isPaymentDetailsEmpty\">Enter a explanation</span>\n <span *ngIf=\"isPaymentDetailsInvalid\">Enter a valid explanation</span>\n <span *ngIf=\"paymentDetailsMinHasError\">Explanation should be at least 3 characters.</span>\n <span *ngIf=\"paymentDetailsMaxHasError\">Explanation should be 255 characters or under.</span>\n </p>\n </div>\n </div>\n <div class=\"govuk-form-group\" *ngIf=\"isRemainingAmountGtZero || isRemainingAmountLtZero\">\n <label class=\"govuk-label govuk-font__custom\" for=\"userName\">\n Enter your name\n </label>\n <input \n class=\"govuk-input\" \n id=\"userName\" \n name=\"userName\" \n type=\"text\"\n [ngClass]=\"{'inline-error-class': isUserNameEmpty || isUserNameInvalid}\" \n formControlName=\"userName\">\n <p class=\"inline-error-message\" *ngIf=\"isUserNameEmpty || isUserNameInvalid\">\n <span *ngIf=\"isUserNameEmpty\">Enter your name.</span>\n <span *ngIf=\"isUserNameInvalid\">Enter a valid name</span>\n </p>\n </div>\n <div class=\"govuk-button--group\">\n <button type=\"submit\" [disabled]=\"isConfirmButtondisabled\" [ngClass]=\"isConfirmButtondisabled ? 'button button--disabled' : 'button'\" (click)=\"confirmAllocatePayement()\">\n Confirm\n </button>\n <button type=\"button\" class=\"button govuk-button--secondary\" (click)=\"cancelAllocatePayment($event)\">\n Cancel\n </button>\n </div>\n </form>\n </ng-container>\n</div>\n\n`,\n styles: [`.allocate-payments{margin:20px 0}.allocate-payments .govuk-table__cell--col1,.allocate-payments .govuk-table__cell--col3{width:10%}.allocate-payments .govuk-table__cell--col2,.allocate-payments .govuk-table__cell--col6{width:25%}.allocate-payments .govuk-table__cell--col4,.allocate-payments .govuk-table__cell--col5{width:15%}.allocate-payments .govuk-button-group-allocate{display:flex;justify-content:flex-start}.allocate-payments .govuk-button--secondary{margin-left:10px;background-color:#b3b8bdf2}.allocate-payments .govuk-custom-warning__message{font-size:30px;position:relative;top:12px;font-weight:700}.allocate-payments .govuk-warning-text-custom{margin-bottom:0!important;padding:10px 0 5px}.allocate-payments .govuk-table__custom--col1{padding-top:0;padding-bottom:20px;padding-left:15px}.allocate-payments .govuk-table__custom--col6{text-align:center}.allocate-payments .govuk-list__custom{padding-left:20px}.allocate-payments .govuk-font__custom,.allocate-payments .govuk-heading-m--custom,.allocate-payments .govuk-hint,.allocate-payments .govuk-label--m,.allocate-payments .govuk-list__custom,.allocate-payments .govuk-radios__item,.allocate-payments .govuk-warning-text__custom{font-size:19px}.allocate-payments .govuk-radios__conditional--hidden{display:none}.allocate-payments .form-group-error{border-left:5px solid #b10e1e;padding-left:15px}.allocate-payments .inline-error-class{outline:#a71414 solid 3px;outline-offset:0}.allocate-payments .inline-error-message{color:#a71414;font-weight:700;margin-top:10px}.allocate-payments .inline-error-border{border-color:#a71414}`]\n})\nexport class AllocatePaymentsComponent implements OnInit {\n overUnderPaymentForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n unAllocatedPayment: IBSPayments = {\n amount: 0\n };\n siteID: string = null;\n errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n paymentGroup: IPaymentGroup;\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\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\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\n constructor(\n private errorHandlerService: ErrorHandlerService,\n 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.paymentRef = this.paymentLibComponent.paymentGroupReference;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION;\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.getUnassignedPayment();\n }\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n }\n\n getPaymentGroupDetails(){\n\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\n }\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\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 this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\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 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.paymentRef).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 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 this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n this.isConfirmButtondisabled = false;\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.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\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}\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 site_id: string;\n\n constructor(ccd_case_number: string, fee: IFee, hwf_amount: number, hwf_reference: string, service: 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.site_id = service;\n }\n}\n","import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { IFee } from '../../interfaces/IFee';\nimport {Router} from '@angular/router';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-add-remission',\n template: `<div class=\"add-remission\">\n <div *ngIf=\"errorMessage\">\n <div class=\"error-summary\" role=\"group\" aria-labelledby=\"failure-error-summary-heading\" tabindex=\"-1\">\n <h2 class=\"heading-medium error-summary-heading\" id=\"failure-error-summary-heading\">\n Error in processing the request\n </h2>\n <div class=\"govuk-error-summary__body\">\n {{ errorMessage }}\n </div>\n </div>\n </div>\n <ng-container *ngIf=\"viewStatus === 'main'\">\n <h1 class=\"heading-large\">Add remission</h1>\n <form novalidate>\n <div class=\"govuk-form-group\">\n <form [formGroup]=\"remissionForm\" novalidate>\n <div class=\"govuk-form-group\">\n <label class=\"govuk-label govuk-label--s\" for=\"remission-code\">\n Add remission to {{ fee.code }}:{{ fee.description }}\n <span class=\"form-hint\">Enter remission for reference. For example: HWF-A1B-23C</span>\n </label>\n <input [ngClass]=\"{'inline-error-class': isRemissionCodeEmpty || remissionCodeHasError}\" class=\"govuk-input govuk-input--width-20 govuk-!-margin-right-1\" id=\"remissionCode\" aria-label=\"remissionCode\" name=\"remissionCode\" type=\"text\" formControlName=\"remissionCode\">\n <p class=\"inline-error-message\" *ngIf=\"isRemissionCodeEmpty || remissionCodeHasError\">\n <span *ngIf=\"isRemissionCodeEmpty\">Enter a remission code</span>\n <span *ngIf=\"remissionCodeHasError\">Enter a vaild remission code</span>\n </p>\n </div>\n <div class=\"govuk-form-group\">\n <label class=\"govuk-label govuk-label--s\" for=\"amount\">\n How much does the applicant need to pay?\n </label>\n\n <div id=\"amount-currency\" class=\"govuk-visually-hidden\">in pounds</div>\n <div class=\"hmcts-currency-input\">\n <div class=\"hmcts-currency-input__symbol\" aria-hidden=\"true\">£</div>\n <input class=\"govuk-input govuk-input--width-10\" [ngClass]=\"{'inline-error-class': isAmountEmpty || amountHasError || isRemissionLessThanFeeError}\" id=\"amount\" aria-label=\"amount\" name=\"amount\" type=\"text\" aria-describedby=\"amount-currency\" formControlName=\"amount\">\n <p class=\"inline-error-message\" *ngIf=\"isAmountEmpty || amountHasError || isRemissionLessThanFeeError\">\n <span *ngIf=\"isAmountEmpty\">Enter a amount</span>\n <span *ngIf=\"amountHasError\">Enter a vaild amount</span>\n <span *ngIf=\"isRemissionLessThanFeeError\">The remission amount must be less than the total fee</span>\n </p>\n </div>\n </div>\n </form>\n <button class=\"button\" type=\"submit\" (click)=\"addRemission()\">\n Submit\n </button>\n </div>\n </form>\n </ng-container>\n <ng-container *ngIf=\"viewStatus === 'confirmation'\">\n <div class=\"govuk-warning-text\">\n <span class=\"govuk-warning-text__icon\" aria-hidden=\"true\">!</span>\n <strong class=\"govuk-warning-text__text\">\n <span class=\"govuk-warning-text__assistive\">Warning</span>\n Are you sure you want to add remission to this fee?\n </strong>\n </div>\n <table class=\"govuk-table\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Remission code:</td>\n <td class=\"govuk-table__cell\">{{ remissionForm.controls.remissionCode.value }}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Fee code:</td>\n <td class=\"govuk-table__cell\">{{ fee.code }}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Fee description:</td>\n <td class=\"govuk-table__cell\">{{ fee.description }}</td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell govuk-!-font-weight-bold\">Amount the applicant must pay:</td>\n <td class=\"govuk-table__cell\">{{ remissionForm.controls.amount.value | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n </tr>\n </table>\n\n <button type=\"submit\" class=\"button govuk-button--secondary\" (click)=\"cancelRemission.emit()\">\n Cancel\n </button>\n <button type=\"submit\"\n [disabled]=\"isConfirmationBtnDisabled\"\n [ngClass]='isConfirmationBtnDisabled ? \"button button--disabled govuk-!-margin-right-1\" : \"button govuk-!-margin-right-1\"'\n (click)=\"confirmRemission()\">\n Confirm\n </button>\n\n </ng-container>\n\n</div>\n\n`,\n styles: [`.add-remission .button{margin:20px 2px}.add-remission td.govuk-table__cell{width:50%}.add-remission .govuk-button--secondary{background-color:#dee0e2;box-shadow:0 2px 0 #858688;color:#0b0c0c;margin-right:.5em}.add-remission .govuk-label--s,.add-remission .govuk-warning-text__text,.add-remission .hmcts-currency-input__symbol{font-size:19px}.add-remission .inline-error-class{outline:#a71414 solid 3px;outline-offset:0}.add-remission .inline-error-message{color:#a71414;font-weight:700;margin-top:10px}`]\n})\nexport class AddRemissionComponent implements OnInit {\n @Input() fee: IFee;\n @Input() ccdCaseNumber: string;\n @Input() service: string;\n @Input() paymentGroupRef: string;\n @Output() cancelRemission: EventEmitter<void> = new EventEmitter();\n\n remissionForm: FormGroup;\n hasErrors = false;\n viewStatus = 'main';\n errorMessage = null;\n option: string = null;\n isConfirmationBtnDisabled: boolean = false;\n\n isRemissionCodeEmpty: boolean = false;\n remissionCodeHasError: boolean = false;\n isAmountEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n\n constructor(private formBuilder: FormBuilder,\n private router: Router,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent) { }\n\n ngOnInit() {\n this.option = this.paymentLibComponent.SELECTED_OPTION;\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 });\n this.viewStatus = 'main';\n }\n\n addRemission() {\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.viewStatus = 'confirmation';\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.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n }\n }\n }\n\n resetRemissionForm(val, field){\n 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 }\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.service);\n this.paymentViewService.postPaymentGroupWithRemissions(this.paymentGroupRef, this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response).success) {\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}`);\n }else {\n this.gotoCasetransationPage();\n }\n\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n }\n );\n }\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = 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","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: '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 template: `<div class=\"header\">\n <ccpay-error-banner *ngIf=\"errorMessage.showError\" [errorMessage]=\"errorMessage\"></ccpay-error-banner>\n <legend class=\"govuk-fieldset__legend--xl\">\n <h1 class=\"govuk-fieldset__heading\"> Choose the report type and date range</h1>\n </legend>\n</div>\n<form [formGroup]=\"reportsForm\">\n <div class=\"govuk-form-group\">\n <div class=\"govuk-radios govuk-radios--conditional\" data-module=\"govuk-radios\">\n <div class=\"govuk-radios__item\">\n <input \n required\n id=\"DataLoss\"\n class=\"govuk-radios__input\"\n formControlName=\"selectedreport\"\n name=\"selectedreport\"\n type=\"radio\"\n value=\"DATA_LOSS\" \n data-aria-controls=\"DataLoss\"/>\n <label class=\"govuk-label govuk-radios__label govuk-label--m\" for=\"DataLoss\">Data loss</label>\n <span class=\"form-hint\">Missing transactions where data has been received from only either of Exela or Bulk scan</span>\n </div>\n\n <div class=\"govuk-radios__item\">\n <input \n id=\"UnprocessedTransactions\"\n class=\"govuk-radios__input\"\n formControlName=\"selectedreport\"\n name=\"selectedreport\"\n type=\"radio\"\n value=\"UNPROCESSED\" \n data-aria-controls=\"UnprocessedTransactions\"/>\n <label class=\"govuk-label govuk-radios__label govuk-label--m\" for=\"UnprocessedTransactions\">Unprocessed transactions</label>\n <span class=\"form-hint\">Transaction records that are still unprocessed by staff.</span>\n </div>\n\n <div class=\"govuk-radios__item\">\n <input \n id=\"ProcessedUnallocated\"\n class=\"govuk-radios__input\"\n formControlName=\"selectedreport\"\n name=\"selectedreport\"\n type=\"radio\"\n value=\"PROCESSED_UNALLOCATED\" \n data-aria-controls=\"ProcessedUnallocated\"/>\n <label class=\"govuk-label govuk-radios__label govuk-label--m\" for=\"ProcessedUnallocated\">Processed unallocated</label>\n <span class=\"form-hint\">Payments that are marked as âUnidentifiedâ or âTransferredâ (Unsolicited requests)</span>\n </div>\n\n <div class=\"govuk-radios__item\">\n <input \n id=\"ShortfallsandSurplus\"\n class=\"govuk-radios__input\"\n formControlName=\"selectedreport\"\n name=\"selectedreport\"\n type=\"radio\"\n value=\"SURPLUS_AND_SHORTFALL\" \n data-aria-controls=\"ShortfallsandSurplus\"/>\n <label class=\"govuk-label govuk-radios__label govuk-label--m\" for=\"ShortfallsandSurplus\">Shortfalls and surplus</label>\n <span class=\"form-hint\">Requests where balances are marked as shortfall/surplus further case management.\n E.g: Refund approval, Customer contact</span>\n </div>\n \n </div>\n </div>\n\n <div class=\"govuk-form-group\">\n <div class=\"datefrom\">\n <label class=\"govuk-label govuk-radios__label govuk-label--m\" for=\"date-from\">Date from</label>\n <input (change)=\"getSelectedFromDate()\" [max]=\"getToday()\" class=\"form-control\" id=\"date-from\" name=\"date-from\" type=\"date\" formControlName=\"startDate\" required/>\n </div>\n\n <div class=\"dateto\">\n <label class=\"govuk-label govuk-radios__label govuk-label--m\" for=\"date-to\">Date to</label>\n <input (change)=\"getSelectedFromDate()\" [max]=\"getToday()\" class=\"form-control\" id=\"date-to\" name=\"search\" type=\"date\" formControlName=\"endDate\" required/>\n </div>\n </div>\n <div class=\"btnsubmit\">\n <button type=\"submit\" (click)=\"downloadReport()\" class=\"button\" [disabled]=\"!reportsForm.valid\">Download report</button>\n </div>\n </form>\n `,\n styles: [`.govuk-radios__input:focus+.govuk-radios__label::before{border-width:4px;box-shadow:0 0 0 4px #ffaf00}.datefrom{width:50%;float:left}.dateto{width:50%;float:right}.govuk-label--m{font-size:large}.form-hint{padding-left:.7em}.header{margin-top:10px;margin-bottom:15px}.btnsubmit{margin-bottom:30px}`]\n})\nexport class ReportsComponent implements OnInit {\n reportsForm: FormGroup;\n startDate: string;\n endDate: string;\n ccdCaseNumber: string;\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();\n }\n\n validateDates(){\n const selectedStartDate = this.tranformDate(this.reportsForm.get('startDate').value),\n selectedEndDate = this.tranformDate(this.reportsForm.get('endDate').value);\n if(new Date(selectedStartDate) > new Date(selectedEndDate) && selectedEndDate !== ''){\n this.reportsForm.get('startDate').setValue('');\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 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 let res= {data: this.applyDateFormat(JSON.parse(response))};\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(res['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.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate));\n },\n (error: any) => {\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 let res = {data: this.applyDateFormat(JSON.parse(response))};\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(res['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 \n this.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate ));\n },\n (error: any) => {\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 { 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 {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 { 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';\n\n\n@NgModule({\n imports: [\n CommonModule,\n HttpClientModule,\n FormsModule,\n ReactiveFormsModule\n ],\n declarations: [\n PaymentLibComponent,\n PaymentListComponent,\n PaymentViewComponent,\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 keyValuePipe,\n SanitizeHtmlPipe,\n ReportsComponent,\n ErrorBannerComponent\n ],\n exports: [ PaymentLibComponent ],\n providers: [ \n { provide: LoggerService, useClass: ConsoleLoggerService },\n XlFileService,\n WebComponentHttpClient\n ]\n})\n\nexport class PaymentLibModule { }\n"]}
|
|
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.status === 400) {\n if (typeof err !== 'string') {\n if(JSON.parse(err.error)[\"error\"] !== undefined) {\n errorMessage = JSON.parse(err.error)[\"error\"]; \n } else {\n JSON.parse(err.error)[\"err\"].split('-')[1];\n }\n\n } \n if (errorMessage === '') {\n errorMessage = err.error.toString().replace(/\"/g,\"\");\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 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 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 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.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 addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n \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 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 chkIsRefundRemissionBtnEnable(): boolean {\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 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 { 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 }\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<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}/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';\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.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 this.successMsg = response.replace(/['\"]+/g, '');\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 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 redirecttoRefundListPage() {\n window.location.href='/refund-list?takePayment=false&refundlist=true';\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 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 serviveRequestValue: string;\n orderAddBtnEnable: boolean;\n orderFeesTotal: number = 0.00;\n orderRemissionTotal: number = 0.00;\n orderTotalPayments: number = 0.00;\n orderPendingPayments: number = 0.00;\n isCPODown: boolean;\n test: boolean;\n isPBA: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n isAddRemissionBtnEnabled: boolean = false;\n isRefundRemissionBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n isFromServiceRequestPage: boolean;\n navigationpage: string;\n remissionFeeAmt: number;\n constructor(private router: Router,\n private paymentViewService: PaymentViewService,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private caseTransactionsService: CaseTransactionsService,\n private paymentLibComponent: PaymentLibComponent,\n private OrderslistService: OrderslistService\n ) { }\n\n ngOnInit() {\n this.navigationpage = ''\n; if(this.OrderslistService.getpaymentPageView() !== null) {\n this.OrderslistService.getpaymentPageView().subscribe((data) => this.paymentView = data);\n }\n if(this.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.serviveRequestValue = 'true';\n } else {\n this.serviveRequestValue = 'false';\n }\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isNewPcipalOff = this.paymentLibComponent.ISNEWPCIPALOFF;\n this.isOldPcipalOff = this.paymentLibComponent.ISOLDPCIPALOFF;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n if (!this.isTurnOff) {\n if (this.lsCcdNumber !== this.ccdCaseNumber) {\n this.router.navigateByUrl(`/ccd-search?takePayment=true`);\n }\n\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.isAnyFeeGroupAvilable =true;\n this.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts();\n this.calculateOrderFeesAmounts();\n this.calculateRefundAmount();\n if (this.isFromServiceRequestPage) {\n this.OrderslistService.getSelectedOrderRefId().subscribe((data) => this.orderRef = data);\n this.goToOrderViewDetailSection(this.orderRef);\n // 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.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;\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 \n if(this.OrderslistService.getisFromServiceRequestPages() !== null) {\n this.OrderslistService.getisFromServiceRequestPages().subscribe((data) => this.isFromServiceRequestPage = data);\n }\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 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 this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = orderef;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\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 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[],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 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' && 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 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}\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 @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\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.viewCompStatus !== ''){\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('', 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]{1,2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n refundDDReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl()\n });\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundDDReason'].setValue('Select a different reason', {onlySelf: true});\n 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.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 && 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.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 this.isConfirmationBtnDisabled = true;\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 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.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 if (this.isFromServiceRequestPage) {\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\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 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\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 }\n\n gotoCasetransationPageCancelBtnClicked() {\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=true&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}\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 {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\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 displayedColumns = ['ccd_case_number', 'refund_reference', 'reason', 'user_full_name', 'date_updated', '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 this.userLst.sort((a, b) =>\n a.localeCompare(b)//using String.prototype.localCompare()\n); }\n }\n /**\n * Set the paginator and sort after the view init since this component will\n * be able to query its view for the initialized paginator and sort.\n */\n ngAfterViewInit() {\n \n this.dataSource.sort = this.sort;\n\n const sortState: Sort = {active: 'date_updated', direction: 'desc'};\n this.sort.active = sortState.active;\n this.sort.direction = sortState.direction;\n this.sort.sortChange.emit(sortState);\n this.dataSource.paginator = this.paginator;\n this.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 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\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 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['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]{1,2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl()\n });\n\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 getRefundsStatusHistoryList() {\n if(this.refundlist !== undefined) {\n this.refundService.getRefundStatusHistory(this.refundlist.refund_reference).subscribe(\n statusHistoryList => {\n this.refundStatusHistories = statusHistoryList['data'].status_history_dto_list;\n this.isLastUpdatedByCurrentUser = statusHistoryList['data'].last_updated_by_current_user;\n }\n ),\n (error: any) => {\n this.errorMessage = error;\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=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(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['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.errorMessage = false;\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).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';\n//import { 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","undefined","split","toString","replace","Object","values","messsage","_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","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","addRefundForRemission","remission","remissionFeeAmt","data","net_amount","chkIsRefundRemissionBtnEnable","toLocaleLowerCase","allowFurtherAccessAfter4Days","isRefundRemissionBtnEnable","issueRefund","paymentgrp","getRemissionByFeeCode","feeCode","remissions_1","tslib_1.__values","remissions_1_1","chkIssueRefundBtnEnable","check4AllowedRoles2AccessRefund","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","loadRefundListPage","navigationpage","redirecttoRefundListPage","window","location","href","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","serviveRequestValue","isBulkScanEnable","isNewPcipalOff","ISNEWPCIPALOFF","isOldPcipalOff","ISOLDPCIPALOFF","isStrategicFixEnable","ISSFENABLE","caseTransactionsService","paymentGroups","isAnyFeeGroupAvilable","calculateAmounts","calculateOrderFeesAmounts","totalRefundAmount","calculateRefundAmount","cpoDetails","setDefaults","isCPODown","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","allocationLen","nonPayments","allPayments","remisison","totalRefundAmount_1","isFeeAmountZero_1","grpOutstandingAmount","isFeeRecordsExist","isNewPaymentGroup_1","index","isHistoricGroupAvailable","getGroupOutstandingAmount","redirectToFeeSearchPage","redirectToremissionPage","redirectToReportsPage","loadFeeSummaryPage","goToPaymentViewComponent","selectedUnprocessedFeeEvent","unprocessedRecordId","isUnprocessedRecordSelected","getUnprocessedFeeCount","unProcessedRecordCount","unprocessedRecordCount","calculateAmountDue","confirmRemoveFee","isRemoveBtnDisabled","cancelRemoval","removeFee","success","reload","isCheckAmountdueExist","amountDue","isPBA","Router","ls.get","isAddRemissionEnable","orderRemissionDetails","isAddRemissionBtnEnabled","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","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","viewCompStatus","volume","remessionPayment","isPaymentSuccess","option","remissionForm","remissionCode","refundReason","refundDDReason","onlySelf","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","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","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","sort","localeCompare","ngAfterViewInit","sortState","active","direction","sortChange","paginator","cdRef","applyFilter","filterValue","goToRefundProcessComponent","refundDate","refundlistsource","goToRefundViewComponent","refundData","isRefundStatusView","isCallFromRefundList","ViewChild","MatPaginator","MatSort","displayedColumns","IResubmitRefundRequest","RefundStatusComponent","refundlist","refundStatusForm","getRefundsStatusHistoryList","isProcessRefund","refundButtonState","refund_status","statusHistoryList","refundStatusHistories","status_history_dto_list","isLastUpdatedByCurrentUser","last_updated_by_current_user","goToRefundView","gotoReviewDetailsPage","gotoReviewAndReSubmitPage","oldRefundReason","changedAmount","refundreason","notes","gotoRefundReasonPage","isRefundBtnDisabled","gotoAmountPage","goToReviewAndSubmitView","getRefundListReason","refundCode","getRefundAmount","gotoReviewRefundConfirmationPage","resubmitRequest","NgModule","imports","CommonModule","HttpClientModule","FormsModule","ReactiveFormsModule","MatTableModule","MatPaginatorModule","MatSortModule","MatFormFieldModule","MatInputModule","NoopAnimationsModule","declarations","exports","providers","provide","useClass","PaymentLibModule"],"mappings":"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"}
|