@hmcts/ccpay-web-component 4.0.0-beta54 → 4.0.0-beta543
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 +6818 -2504
- 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 +878 -137
- package/esm2015/lib/components/allocate-payments/allocate-payments.component.js +315 -310
- package/esm2015/lib/components/card-details/card-details.component.js +22 -57
- package/esm2015/lib/components/case-transactions/case-transactions.component.js +960 -353
- package/esm2015/lib/components/error-banner/error-banner.component.js +5 -17
- package/esm2015/lib/components/fee-summary/fee-summary.component.js +261 -256
- 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 +339 -127
- package/esm2015/lib/components/pba-details/pba-details.component.js +5 -39
- package/esm2015/lib/components/process-refund/process-refund.component.js +391 -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 +509 -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 +179 -0
- package/esm2015/lib/components/unprocessed-payments/unprocessed-payments.component.js +168 -91
- 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 -29
- 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 +19 -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 +29 -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 +102 -14
- package/esm2015/lib/services/refunds/refunds.service.js +203 -0
- package/esm2015/lib/services/shared/error-handler.service.js +11 -4
- package/esm2015/lib/services/shared/httpclient/webcomponent.http.client.js +27 -9
- 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 +946 -46
- package/esm5/lib/components/allocate-payments/allocate-payments.component.js +328 -107
- package/esm5/lib/components/card-details/card-details.component.js +22 -9
- package/esm5/lib/components/case-transactions/case-transactions.component.js +1043 -113
- package/esm5/lib/components/error-banner/error-banner.component.js +3 -4
- package/esm5/lib/components/fee-summary/fee-summary.component.js +280 -84
- 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 +399 -17
- package/esm5/lib/components/pba-details/pba-details.component.js +5 -6
- package/esm5/lib/components/process-refund/process-refund.component.js +468 -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 +568 -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 +214 -0
- package/esm5/lib/components/unprocessed-payments/unprocessed-payments.component.js +178 -27
- 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 -29
- 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 +19 -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 +29 -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 +142 -16
- package/esm5/lib/services/refunds/refunds.service.js +243 -0
- package/esm5/lib/services/shared/error-handler.service.js +11 -4
- package/esm5/lib/services/shared/httpclient/webcomponent.http.client.js +27 -9
- 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 +4658 -2150
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +7002 -2529
- 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 +78 -3
- package/lib/components/allocate-payments/allocate-payments.component.d.ts +26 -9
- package/lib/components/case-transactions/case-transactions.component.d.ts +72 -8
- package/lib/components/fee-summary/fee-summary.component.d.ts +16 -4
- 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 +36 -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/IFee.d.ts +7 -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 +6 -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 +17 -3
- 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 +5 -1
- package/esm2015/lib/interfaces/IPaymentList.js +0 -48
- package/esm5/lib/interfaces/IPaymentList.js +0 -47
- package/lib/interfaces/IPaymentList.d.ts +0 -15
|
@@ -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/IPaymentList.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PaymentToPayhubRequest.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/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","postBSPayments","postBSUnidentifiedPayments","postBSUnsolicitedPayments","postBSAllocationPayments","postPaymentGroupWithRemissions","feeId","deleteFeeFromPaymentGroup","postPaymentToPayHub","paymentGroupRef","postPaymentListToPayHub","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","isGrpOutstandingAmtPositive","EXC_REFERENCE","excReference","takePayment","TAKEPAYMENT","isBulkScanEnable","paymentGroups","calculateAmounts","totalRefundAmount","calculateRefundAmount","setDefaults","toLocaleLowerCase","checkForExceptionRecord","totalPayments","totalRemissions","totalFees","totalNonOffPayments","getAllocationStatus","recordData","exception_record_reference","ccd_reference","isExceptionRecord","isAddFeeBtnEnabled","nonPayments","case_reference","nonOffLinePayment","push","allocationLen","payment_group_reference","allPayments","remisison","isFeeAmountZero","grpOutstandingAmount","isFeeRecordsExist","getGroupOutstandingAmount","redirectToFeeSearchPage","navigateByUrl","redirectToReportsPage","loadFeeSummaryPage","goToPaymentViewComponent","goToPayementView","selectedUnprocessedFeeEvent","unprocessedRecordId","isUnprocessedRecordSelected","getUnprocessedFeeCount","unProcessedRecordCount","unprocessedRecordCount","confirmRemoveFee","isRemoveBtnDisabled","viewStatus","cancelRemoval","removeFee","success","window","location","reload","IPaymentList","res","ccd_case_number","currency","description","Language","provider","service","site_id","PaymentToPayhubRequest","serviceName","toFixed","BS_ENABLE_FLAG","FeeSummaryComponent","bsPaymentDcnNumber","getUnassignedPaymentlist","getPaymentGroup","unassignedPayments","responsible_service_id","upPaymentErrorMessage","addRemission","currentFee","date_created","totalAfterRemission","net_amount","isPaymentExist","fee_code","code","loadCaseTransactionPage","cancelRemission","page","ISBSenable","isConfirmationBtnDisabled","seriveName","requestBody","outStandingAmount","response","go","payhubHtml","isBackButtonEnable","goToAllocatePage","Location","ErrorBannerComponent","UnidentifiedPaymentsRequest","payment_reference","unidentified_reason","payment_allocation_status","name","AllocatePaymentRequest","unAllocatedPayment","siteID","exceptionRecord","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","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","value","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","unProcessedPaymentServiceId","isMarkAsUnidentifiedbtnEnabled","FEE_RECORDS_EXISTS","isAllocateToExistingFeebtnEnabled","IS_OS_AMT_AVAILABLE","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","fstCon","scndCn","gotoSummaryPage","selectedPaymentGroup","isContinueButtondisabled","selectedPayment","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","i","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","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';\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 { IPaymentList} from '../../interfaces/IPaymentList';\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, paymentMethod: 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 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\n postPaymentListToPayHub(body: IPaymentList): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/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 group reference</td>\n <td>{{ paymentGroup.payment_group_reference }}</td>\n </tr>\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\">Total 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\">Net amount</td>\n <td>£{{ fee.net_amount | number:'.2' }}</td>\n </tr>\n <tr *ngIf=\"paymentGroup.remissions?.length > 0\">\n <td class=\"bold\" width=\"330px\">Remission code</td>\n <td>{{paymentGroup.remissions[0].hwf_reference}}</td>\n </tr>\n <tr *ngIf=\"paymentGroup.remissions?.length > 0\">\n <td class=\"bold\" width=\"330px\">Remission amount</td>\n <td>£{{ paymentGroup.remissions[0].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.getPaymentGroupDetails(this.paymentLibComponent.paymentGroupReference,\n this.paymentLibComponent.paymentMethod).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\" scope=\"col\" *ngIf=\"totalRefundAmount > 0\">Total Surplus</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\">{{ (totalFees - totalRemissions) - totalNonOffPayments | currency :'GBP':'symbol':'1.2-2'}}</td>\n <td class=\"govuk-table__cell\" *ngIf=\"totalRefundAmount > 0\">{{totalRefundAmount | 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)=\"loadFeeSummaryPage()\" class=\"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\">\t\n <div *ngIf=\"takePayment\">\n <hr class=\"govuk-section-records-break\">\n </div>\t\n <ccpay-app-unprocessed-payments\t\n *ngIf=\"isBulkScanEnable\"\t\n [IS_BUTTON_ENABLE]=\"takePayment\"\t\n [FEE_RECORDS_EXISTS]=\"isFeeRecordsExist\" \t\n [IS_OS_AMT_AVAILABLE]=\"isGrpOutstandingAmtPositive\" \t\n (getUnprocessedFeeCount) = \"getUnprocessedFeeCount($event)\"\t\n (selectedUnprocessedFeeEvent) = \"selectedUnprocessedFeeEvent($event)\">\t\n </ccpay-app-unprocessed-payments>\t\n <hr class=\"govuk-section-records-break\">\t\n <ccpay-app-processed-payments\t\n *ngIf=\"takePayment\" [NONPAYMENTS]=\"nonPayments\"\t\n (goToPaymentViewComponent) = \"goToPaymentViewComponent($event)\"\t>\n </ccpay-app-processed-payments>\t\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;\">\t\n <td class=\"govuk-table__cell\">\t{{fee.code}} </td>\t\n <td class=\"govuk-table__cell\">{{fee.description}}</td>\t\n <td class=\"govuk-table__cell\">{{fee.volume? fee.volume : '-'}}</td>\t\n <td class=\"govuk-table__cell\">{{ fee.fee_amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\t\n <td class=\"govuk-table__cell\">{{fee.calculated_amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\t\n <td class=\"govuk-table__cell\"> - </td>\t\n <td class=\"govuk-table__cell\"> <a (click)=\"confirmRemoveFee(fee.id)\">Remove</a></td>\t\n </tr>\t\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\">\t\n <div class=\"govuk-grid-column-full\">\t\n <span class=\"heading-medium\">Processed payments</span>\t\n <table class=\"govuk-table\">\t\n <thead class=\"govuk-table__head\">\t\n <tr class=\"govuk-table__row\">\t\n <td class=\"govuk-table__header\" scope=\"col\">Payment reference</td>\t\n <td class=\"govuk-table__header\" scope=\"col\">Date created</td>\t\n <td class=\"govuk-table__header\" scope=\"col\">Date updated</td>\t\n <td class=\"govuk-table__header\" scope=\"col\">Channel</td>\t\n <td class=\"govuk-table__header\" scope=\"col\">Method</td>\t\n <td class=\"govuk-table__header\" scope=\"col\">Amount</td>\t\n <td class=\"govuk-table__header\" scope=\"col\">Allocation status</td>\t\n <td class=\"govuk-table__header\" scope=\"col\">Status</td>\t\n </tr>\t\n </thead>\t\n <tbody class=\"govuk-table__body\" *ngIf=\"allPayments?.length > 0\">\t\n <tr class=\"govuk-table__row\" *ngFor=\"let payment of allPayments\">\t\n <td class=\"govuk-table__cell whitespace-inherit\">\t\n <a href=\"javascript:void(0)\" (click)=\"goToPayementView(payment.paymentGroupReference, payment.reference, payment.method)\">{{ payment.reference }}</a>\t\n </td>\t\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.date_created | date:'dd MMM yyyy HH:mm:ss' }}</td>\t\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.date_updated | date:'dd MMM yyyy HH:mm:ss' }}</td>\t\n <td class=\"channel govuk-table__cell whitespace-inherit\">{{ payment.channel | lowercase }}</td>\t\n <td class=\"govuk-table__cell capitalize whitespace-inherit\">{{ payment.method | lowercase}}</td>\t\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.amount }}</td>\t\n <td class=\"govuk-table__cell whitespace-inherit\"> {{getAllocationStatus(payment)}}</td>\t\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.status }}</td>\t\n </tr>\t\n </tbody>\t\n <tbody class=\"govuk-table__body\" *ngIf=\"allPayments?.length === 0\">\t\n <td class=\"govuk-table__cell\" colspan=\"8\">No payments recorded</td>\t\n </tbody>\t\n </table>\t\n</div>\t \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`,\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}`]\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 isAddFeeBtnEnabled: boolean = true;\n isExceptionRecord: boolean = false;\n isUnprocessedRecordSelected: boolean = false;\n exceptionRecordReference: string;\n isFeeRecordsExist: boolean = false;\n isGrpOutstandingAmtPositive: boolean = false;\n totalRefundAmount:Number;\n isBulkScanEnable;\n viewStatus = 'main';\n isRemoveBtnDisabled: boolean = false;\n feeId:IFee;\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.isGrpOutstandingAmtPositive = false;\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.totalRefundAmount = this.calculateRefundAmount();\n },\n (error: any) => {\n this.errorMessage = <any>error;\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.totalFees = 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.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.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.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 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 feesTotal = feesTotal + fee.calculated_amount;\n fee['payment_group_reference'] = paymentGroup['payment_group_reference'];\n this.fees.push(fee);\n });\n }\n this.totalFees = feesTotal;\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 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 getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);;\n }\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}${url}`);\n }\n\n redirectToReportsPage(event: any) {\n event.preventDefault();\n this.router.navigateByUrl(`/reports?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}`);\n }\n loadFeeSummaryPage() {\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = '';\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.isAddFeeBtnEnabled = false\n this.isUnprocessedRecordSelected = true;\n } else {\n this.isAddFeeBtnEnabled = !this.isExceptionRecord;;\n this.isUnprocessedRecordSelected = false;\n }\n }\n getUnprocessedFeeCount(unProcessedRecordCount: number) {\n this.unprocessedRecordCount = unProcessedRecordCount;\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","import {IFee} from './IFee';\n\nexport class IPaymentList {\n amount: number;\n case_reference: string;\n ccd_case_number: string;\n channel: string;\n currency: string;\n description: string;\n fees: IFee[];\n Language: string;\n provider: string;\n service: string;\n site_id: string;\n\n constructor(res: any) {\n this.amount = res[0];\n this.case_reference= res[1];\n this.ccd_case_number= res[2];\n this.channel= res[3];\n this.currency= res[4];\n this.description= res[5];\n this.fees= res[6];\n this.Language= res[7];\n this.provider= res[8];\n this.service= res[9];\n this.site_id= res[10];\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 { IPaymentList } from '../../interfaces/IPaymentList';\nimport {CaseTransactionsService} from '../../services/case-transactions/case-transactions.service';\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 <div class=\"govuk-grid-column-one-third\" align=\"right\">\n <a (click)=\"redirectToFeeSearchPage($event,'summary')\" class=\"button\">Add a new fee</a>\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.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let fee of paymentGroup; 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\">{{ fee.remission?.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\"><a *ngIf=\"!(fee.isPaymentExist && i === 0)\" (click)=\"confirmRemoveFee(fee.id)\">remove fee</a></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\">{{ fee.remission?.hwf_amount ? (fee.remission?.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=\"fee.remission?.hwf_amount === 0 || !fee.remission?.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%}`]\n})\n\nexport class FeeSummaryComponent implements OnInit {\n @Input() paymentGroupRef: string;\n @Input() ccdCaseNumber: string;\n\n bsPaymentDcnNumber: string;\n paymentGroup: any = [];\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\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private location: Location,\n private paymentViewService: PaymentViewService,\n private caseTransactionsService: CaseTransactionsService,\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 addRemission(fee: IFee) {\n if (this.service) {\n this.currentFee = fee;\n this.viewStatus = 'add_remission';\n }\n }\n\n getPaymentGroup() {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n console.log(paymentGroups['payment_groups'])\n if(paymentGroups['payment_groups'] && paymentGroups['payment_groups'].length > 0) {\n paymentGroups['payment_groups'].forEach(paymentGroup => {\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n if(fee.date_created) {\n this.totalAfterRemission = this.totalAfterRemission + fee.net_amount;\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true;\n }\n fee.isFeeAmountZero = this.isFeeAmountZero;\n // fee.totalAfterRemission = this.totalAfterRemission;\n fee.isPaymentExist = paymentGroup.payments ? paymentGroup.payments.length > 0 : false;\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n if (remission.fee_code === fee.fee.code) {\n fee.remission = remission;\n }\n });\n }\n this.paymentGroup.push(fee);\n }\n });\n }\n\n });\n }\n console.log(this.paymentGroup, this.totalAfterRemission)\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 res = new IPaymentList([]);\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}\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\"><a href=\"#\" (click)=\"unprocessedPaymentUnSelectEvent($event)\">Unselect</a></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('IS_BUTTON_ENABLE') IS_BUTTON_ENABLE: boolean;\n @Input('IS_OS_AMT_AVAILABLE') IS_OS_AMT_AVAILABLE: boolean;\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 = null;\n this.paymentLibComponent.unProcessedPaymentServiceId = this.serviceId\n this.paymentLibComponent.viewName = 'allocate-payments';\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 = this.IS_OS_AMT_AVAILABLE;\n this.isAllocatedToNewFeebtnEnabled = true;\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 {CaseTransactionsService} from '../../services/case-transactions/case-transactions.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 {Router} from '@angular/router';\n\n@Component({\n selector: 'app-allocate-payments',\n template: `<div class=\"allocate-payments\">\n <div *ngIf=\"viewStatus==='mainForm'\">\n <div class=\"govuk-breadcrumbs\" *ngIf=\"paymentRef\" >\n <ol class=\"govuk-breadcrumbs__list\">\n <li class=\"govuk-breadcrumbs__list-item\">\n <a href=\"#\" (click)=\"gotoSummaryPage($event)\" class=\"govuk-back-link\">Back</a>\n </li>\n </ol>\n </div>\n <div class=\"govuk-heading-section\">\n <h1 class=\"govuk-heading-xl\">Allocate payment to fee group</h1>\n <h2 class=\"govuk-heading-l\">Amount left to be allocated: {{ unAllocatedPayment.amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</h2>\n </div>\n <div class=\"payment-group-section\" *ngFor=\"let paymentGroup of paymentGroups\">\n <h3 class=\"govuk-heading-m\">Group reference: {{paymentGroup.payment_group_reference}}</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\"></td>\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\">Group amount outstanding</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 govuk-table__custom--col1\" [attr.rowspan]=\"paymentGroup.fees.length\" *ngIf=\"i==0\"> \n <div class=\"multiple-choice\">\n <input id=\"unpaiedFee-{{i}}\"\n name=\"unassignedRecord\"\n type=\"radio\"\n (click)=\"selectedPaymentGroup(paymentGroup)\"\n /> \n <label for=\"unpaiedFee-{{i}}\"></label>\n </div>\n </td>\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 govuk-table__custom--col6\" [attr.rowspan]=\"paymentGroup.fees.length\" *ngIf=\"i==0\"> {{getGroupOutstandingAmount(paymentGroup) | currency:'GBP':'symbol-narrow':'1.2-2' }} </td>\n\n </tr>\n\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-button-group-allocate\">\n <button type=\"button\" class=\"button govuk-!-margin-right-1\" [disabled]=\"isContinueButtondisabled\" (click)=\"saveAndContinue()\">\n Continue\n </button>\n <button type=\"button\" class=\"button govuk-button--secondary\" (click)=\"gotoCasetransationPage()\">\n Cancel\n </button>\n </div>\n</div>\n <ng-container *ngIf=\"viewStatus === 'allocatePaymentConfirmation'\">\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\" >\n <h3 class=\"govuk-heading-m--custom\">Group reference: {{selectedPayment.payment_group_reference}}</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\">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\">Group amount outstanding</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" >\n <tr class=\"govuk-table__row\" *ngFor=\"let fee of selectedPayment.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]=\"selectedPayment.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=\"selectedPayment.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()\">\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 paymentGroups: IPaymentGroup[] = [];\n selectedPayment: 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 isFeeAmountZero: boolean = false;\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 router: Router,\n private errorHandlerService: ErrorHandlerService,\n private formBuilder: FormBuilder,\n private caseTransactionsService: CaseTransactionsService,\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 this.getPaymentGroupDetails(this.paymentRef)\n }\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n }\n\n getPaymentGroupDetails(paymentGroupRef: string){\n\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 === paymentGroupRef;\n return paymentGroupRef ? scndCn : fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero);\n });\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n gotoSummaryPage(event: any) {\n event.preventDefault();\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n selectedPaymentGroup(paymentGroup: IPaymentGroup) {\n this.isContinueButtondisabled = false;\n this.selectedPayment = paymentGroup;\n }\n cancelAllocatePayment(){\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n this.viewStatus = 'mainForm';\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.selectedPayment.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 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.selectedPayment) {\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.selectedPayment);\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 this.viewStatus = 'allocatePaymentConfirmation';\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 },\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.error) {\n if (typeof err.error === 'string') {\n errorMessage = err.error.replace(/\"/g,\"\");\n } else {\n errorMessage = JSON.parse(err.error)[\"err\"].split('-')[1];\n }\n \n }\n else if (err.error.messsage === undefined) {\n errorMessage = 'Server error';\n } else {\n errorMessage = `${err.error.message}`;\n }\n }\n return _throw(errorMessage);\n }\n\n getServerErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","import { Injectable } from '@angular/core';\n\nconst noop = (): any => undefined;\n\nexport abstract class Logger {\n\n info: any;\n warn: any;\n error: any;\n}\n\n@Injectable({\n providedIn: 'root'\n})\nexport class LoggerService implements Logger {\n\n info: any;\n warn: any;\n error: any;\n\n invokeConsoleMethod(type: string, args?: any): void {}\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\n\nimport { Observable } from 'rxjs/internal/Observable';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { IPayments } from '../../interfaces/IPayments';\nimport { catchError } from 'rxjs/operators';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PaymentListService {\n payments: IPayments;\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n\n getPaymentByCcdCaseNumber(ccdCaseNumber: string, paymentMethod: string): Observable<IPayments> {\n this.logger.info('Payment-list-service getPaymentByCcdCaseNumber for: ', ccdCaseNumber);\n\n return this.http.get<IPayments>(`${this.paymentLibService.API_ROOT}/cases/${ccdCaseNumber}/payments`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import {Component, OnInit} from '@angular/core';\n\nimport {PaymentListService} from '../../services/payment-list/payment-list.service';\nimport {IPayments} from '../../interfaces/IPayments';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport {IStatusHistory} from '../../interfaces/IStatusHistory';\n\n@Component({\n selector: 'ccpay-payment-list',\n templateUrl: './payment-list.component.html',\n styleUrls: ['./payment-list.component.css']\n})\nexport class PaymentListComponent implements OnInit {\n payments: IPayments;\n errorMessage: string;\n code: string;\n\n constructor(private paymentListService: PaymentListService,\n private paymentLibComponent: PaymentLibComponent) {\n }\n\n ngOnInit() {\n this.paymentListService.getPaymentByCcdCaseNumber(this.paymentLibComponent.CCD_CASE_NUMBER, this.paymentLibComponent.PAYMENT_METHOD)\n .subscribe(\n payments => this.payments = payments,\n (error: any) => this.errorMessage = <any>error\n );\n }\n\n loadPaymentViewComponent(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.paymentLibComponent.paymentMethod = paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n}\n","/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Meta } from '@angular/platform-browser';\nimport { Observable } from 'rxjs';\n\n@Injectable()\nexport class WebComponentHttpClient {\n constructor(\n private http: HttpClient,\n private meta: Meta\n ) { }\n\n post(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.post(url, body, opts);\n }\n\n put(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.put(url, body, opts);\n }\n\n get(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.get(url, opts);\n }\n\n delete(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.delete(url, opts);\n }\n \n patch(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.patch(url, body, opts);\n }\n\n addHeaders(options: any): any {\n const csrfToken = this.meta.getTag('name=csrf-token');\n const headers = {};\n \n if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n if (csrfToken === null) {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith(' XSRF-TOKEN')).split('=')[1];\n } else {\n headers['CSRF-Token'] = csrfToken.content;\n }\n options.headers = new HttpHeaders(headers);\n options.responseType = 'text';\n return options;\n }\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Observable } from 'rxjs/internal/Observable';\n\nimport {IPayment} from '../../interfaces/IPayment';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { catchError } from 'rxjs/operators';\nimport { LoggerService } from '../shared/logger/logger.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { PayhubAntennaRequest } from '../../interfaces/PayhubAntennaRequest';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { Meta } from '@angular/platform-browser';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { IAllocationPaymentsRequest } from '../../interfaces/IAllocationPaymentsRequest';\nimport {IOrderReferenceFee} from '../../interfaces/IOrderReferenceFee';\nimport { BehaviorSubject } from 'rxjs';\nimport { 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-remission`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Injectable } from '@angular/core';\nimport { Observable, BehaviorSubject } from 'rxjs';\nimport {IOrderReferenceFee} from '../interfaces/IOrderReferenceFee';\nimport { IRefundList } from '../interfaces/IRefundList';\nimport { IPaymentView } from '../interfaces/IPaymentView'; \n\n@Injectable({\n providedIn: 'root'\n})\nexport class OrderslistService {\n private ordersList: BehaviorSubject<IOrderReferenceFee[]> = new BehaviorSubject<IOrderReferenceFee[]>(null);\n private refundView: BehaviorSubject<IRefundList> = new BehaviorSubject<IRefundList>(null);\n private caseType = new BehaviorSubject(\"\");\n getcaseType = this.caseType.asObservable();\n private feeExists = new BehaviorSubject<boolean>(null);\n getFeeExist = this.feeExists.asObservable();\n private ccdCaseNumber = new BehaviorSubject(\"\");\n getCCDCaseNumberforRefund = this.ccdCaseNumber.asObservable();\n private isFromServiceRequestPage = new BehaviorSubject<boolean>(null);\n getisFromServiceRequestPage = this.isFromServiceRequestPage.asObservable();\n private OrderRefId = new BehaviorSubject(\"\");\n getOrderRefId = this.OrderRefId.asObservable();\n private navigationPage = new BehaviorSubject(\"\");\n getnavigationPage = this.navigationPage.asObservable();\n\n private paymentPageView: BehaviorSubject<IPaymentView> = new BehaviorSubject<IPaymentView>(null);\n\n constructor() { }\n\n setOrdersList(orderLevelFees: IOrderReferenceFee[]): void {\n this.ordersList.next(Object.assign([], orderLevelFees));\n }\n getOrdersList() {\n return this.ordersList;\n }\n\n setRefundView(refundList: IRefundList): void {\n this.refundView.next(Object.assign([], refundList));\n }\n getRefundView() {\n return this.refundView;\n }\n\n setCaseType(caseType: string){\n this.caseType.next(caseType);\n }\n getCaseType(){\n return this.caseType;\n }\n\n setCCDCaseNumber(ccdCaseNumber: string){\n this.ccdCaseNumber.next(ccdCaseNumber);\n }\n getCCDCaseNumber(){\n return this.ccdCaseNumber;\n }\n\n setFeeExists(feeExists: boolean){\n this.feeExists.next(feeExists);\n }\n getFeeExists(){\n return this.feeExists;\n } \n\n setisFromServiceRequestPage(isFromServiceRequestPage: boolean){\n this.isFromServiceRequestPage.next(isFromServiceRequestPage);\n }\n getisFromServiceRequestPages(){\n return this.isFromServiceRequestPage;\n }\n\n setOrderRefId(OrderRefId: string){\n this.OrderRefId.next(OrderRefId);\n }\n getSelectedOrderRefId(){\n return this.OrderRefId;\n }\n\n setnavigationPage(navigationPage: string){\n this.navigationPage.next(navigationPage);\n }\n getnavigationPageValue(){\n return this.navigationPage;\n }\n\n setpaymentPageView(paymentpageList: IPaymentView): void {\n this.paymentPageView.next(Object.assign([], paymentpageList));\n }\n getpaymentPageView() {\n return this.paymentPageView;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\nimport { ChangeDetectorRef } from '@angular/core';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-payment-view',\n templateUrl: './payment-view.component.html',\n styleUrls: ['./payment-view.component.css']\n})\nexport class PaymentViewComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() isTakePayment: boolean;\n @Input() caseType: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() isOldPcipalOff: boolean;\n @Input() orderRef: boolean;\n @Input() orderStatus: boolean;\n @Input() orderTotalPayments: boolean;\n @Input() payment: IPayment;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n ccdCaseNumber: string;\n selectedOption: string;\n dcnNumber: string;\n isStatusAllocated: boolean;\n isRemissionsMatch: boolean;\n feeId: IFee;\n viewStatus: string;\n isRefundRemission: boolean = false;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n remissions: IRemission[] = [];\n remissionFeeAmt: number;\n isRefundRemissionBtnEnable: boolean;\n\n constructor(private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) {\n }\n\n 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 if(this.chkForAddRemission(fee.code)) {\n this.feeId = fee;\n this.paymentViewService.getApportionPaymentDetails(this.paymentGroup.payments[0].reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n this.paymentLibComponent.isFromPaymentDetailPage = true;\n this.viewStatus = 'addremission';\n this.isRefundRemission = true;\n this.cd.detectChanges();\n },\n (error: any) => this.errorMessage = error\n );\n }\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n if(this.chkIsRefundRemissionBtnEnable()) {\n this.payment = payment;\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.payment.reference));\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n this.viewStatus = 'addrefundforremission';\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n 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 if(this.chkIssueRefundBtnEnable(paymentgrp.payments[0])) {\n this.paymentGroup = paymentgrp;\n this.viewStatus = 'issuerefund';\n this.isRefundRemission = true;\n }\n }\n\n getRemissionByFeeCode(feeCode: string, remissions: IRemission[]): IRemission {\n if (remissions && remissions.length > 0) {\n for (const remission of remissions) {\n if (remission.fee_code === feeCode) {\n return remission;\n // this.isAddFeeBtnEnabled = true;\n }\n }\n }\n return null;\n }\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n this.isIssueRefunfBtnEnable = true;\n }\n if (this.isIssueRefunfBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n\n chkForPBAPayment(): boolean {\n 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 }\n\npatchRefundActions(body:IPatchRefundAction, refundReference: string, reviewerAction: string): Observable<any> {\n // const opts = this.addHeaders({});\n return this.https.patch(`${this.paymentLibService.REFUNDS_API_ROOT}/${refundReference}/action/${reviewerAction}`, body)\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundList(refundstatus?: string, selfexclusive?:boolean): Observable<IRefundList[]> {\n return this.http.get<IRefundList[]>(`${this.paymentLibService.REFUNDS_API_ROOT}?status=${refundstatus}&selfExclusive=${selfexclusive}`, \n {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundStatusHistory(reference?: string) {\n return this.http.get<IRefundStatusHistory>(`${this.paymentLibService.REFUNDS_API_ROOT}/${reference}/status-history`, \n {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundStatusList(ccdCaseNumber:string): Observable<IRefundList[]> {\n return this.http.get<IRefundList[]>(`${this.paymentLibService.REFUNDS_API_ROOT}?ccdCaseNumber=${ccdCaseNumber}`, {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetUserDetails(): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/get-user-details`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n \npostIssueRefund(body: IssueRefundRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.REFUNDS_API_ROOT}/refund`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\npatchResubmitRefund(body: IResubmitRefundRequest, refund_reference: string): Observable<any> {\n // const opts = this.addHeaders({});\n return this.https.patch(`${this.paymentLibService.REFUNDS_API_ROOT}/resubmit/${refund_reference}`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\naddHeaders(options: any): any {\n const csrfToken = this.meta.getTag('name=csrf-token');\n const headers = {};\n if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n if (csrfToken.content === null) {\n headers['CSRF-Token'] = document.cookie.split(';').find(row => row.startsWith(' XSRF-TOKEN')).split('=')[1];\n } else {\n headers['CSRF-Token'] = csrfToken.content;\n }\n options.headers = new HttpHeaders(headers);\n options.responseType = 'text';\n return options;\n}\n}\n","import {Component, OnInit, Input} from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport {RefundsService} from '../../services/refunds/refunds.service';\nimport { IRefundAction } from '../../interfaces/IRefundAction';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { IRefundRejectReason } from '../../interfaces/IRefundRejectReason';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\n\n@Component({\n selector: 'ccpay-process-refund',\n templateUrl: './process-refund.component.html',\n styleUrls: ['./process-refund.component.css']\n})\nexport class ProcessRefundComponent implements OnInit {\n @Input() refundReference: string;\n @Input() refundlistsource: IRefundList;\n\n processRefundForm: FormGroup;\n\n errorMessage = this.getErrorMessage(false, '', '', '');\n sendmeback: string = null;\n viewStatus: string;\n refundActionList: IRefundAction[] = []; \n refundRejectReasonList: IRefundRejectReason[] = []; \n isSendMeBackClicked: boolean = false;\n isRejectClicked: boolean = false;\n isOtherClicked: boolean = false;\n isSuccesspageEnable: boolean = false;\n\n refundActionsHasError: boolean = false;\n refundRejectReasonHasError: boolean = false;\n isReasonFieldEmpty: boolean = false;\n isReasonFieldInvalid: boolean = false;\n reasonFieldMinHasError: boolean = false;\n reasonFieldMaxHasError: boolean = false;\n isReasonEmpty: boolean = false;\n isReasonInvalid: boolean = false;\n successMsg: string = null;\n navigationpage: string;\n\n isConfirmButtondisabled: boolean = true;\n constructor(private RefundsService: RefundsService,\n private formBuilder: FormBuilder,\n private OrderslistService: OrderslistService,\n private paymentLibComponent: PaymentLibComponent,) {\n }\n\n ngOnInit() {\n this.viewStatus = 'RefundProcess';\n this.RefundsService.getRefundActions(this.refundReference).subscribe(\n refundActionList => {\n this.refundActionList = <any>refundActionList;\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err, err);\n }\n );\n this.processRefundForm = this.formBuilder.group({\n refundActionField: new FormControl('', Validators.compose([\n Validators.required\n ])),\n refundRejectReasonField: new FormControl('', Validators.compose([\n Validators.required\n ])),\n sendMeBackField: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$'),\n\n ])),\n enterReasonField: new FormControl('', Validators.compose([\n Validators.required,\n Validators.maxLength(30),\n Validators.pattern('^([a-zA-Z0-9\\\\s]*)$'),\n ])),\n });\n \n }\n checkRefundActions(code: string) {\n\n if(code === 'Return to caseworker') {\n this.isConfirmButtondisabled = true;\n this.isSendMeBackClicked = true;\n this.isRejectClicked = false;\n this.isOtherClicked = false;\n\n } else if (code === 'Approve') {\n this.isSendMeBackClicked = false;\n this.isConfirmButtondisabled = false;\n this.isRejectClicked = false;\n this.isOtherClicked = false;\n\n } else if (code === 'Reject') {\n this.isRejectClicked = true;\n this.isSendMeBackClicked = false;\n this.isOtherClicked = false;\n this.RefundsService.getRefundRejectReasons().subscribe(\n refundRejectReasonList => {\n this.refundRejectReasonList = <any>refundRejectReasonList;\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err, err);\n }\n );\n } else if (code === 'RE005') {\n this.isOtherClicked = true;\n } else if (code !== 'RE005') {\n this.isOtherClicked = false;\n }\n }\n processRefundSubmit() {\n let processRefundRequest;\n let status;\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n const controls = this.processRefundForm.controls;\n const processFormError = controls.sendMeBackField.errors;\n\n if (this.processRefundForm.dirty && controls.refundActionField.valid \n && (controls.refundActionField.value == 'Approve'\n || (controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.valid && controls.refundRejectReasonField.value != 'RE005')\n || (controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.value == 'RE005' && controls.enterReasonField.valid)\n || (controls.refundActionField.value == 'Return to caseworker' && controls.sendMeBackField.valid))) {\n if (controls.refundActionField.value === 'Approve'){\n status = 'APPROVE';\n processRefundRequest = {\n code:'',\n reason: ''\n };\n } else if (controls.refundActionField.value === 'Reject') {\n status = 'REJECT';\n\n processRefundRequest = {\n code: controls.refundRejectReasonField.value ? controls.refundRejectReasonField.value : '',\n reason: controls.refundRejectReasonField.value == 'RE005' ? controls.enterReasonField.value : ''\n };\n } else if (controls.refundActionField.value === 'Return to caseworker') {\n status = 'SENDBACK';\n\n processRefundRequest = {\n code: '',\n reason: controls.sendMeBackField.value\n };\n }\n this.RefundsService.patchRefundActions(processRefundRequest, this.refundReference, status).subscribe(\n response => {\n this.isSuccesspageEnable = true;\n this.successMsg = JSON.stringify(response).replace(\"\\\"\",\"\").replace(\"\\\"\",\"\").replace(\"\",\"\")\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err, err);\n }\n );\n } else {\n if(controls.refundActionField.value == \"\") {\n this.resetForm([true, false, false, false, false, false, false, false], 'action');\n }\n if(controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.value == \"\") {\n this.resetForm([false, true, false, false, false, false, false, false], 'rejectReason');\n }\n if(controls.refundActionField.value == 'Return to caseworker') {\n if(controls.sendMeBackField.value == '' ) {\n this.resetForm([false, false, true, false, false, false, false, false], 'addAreason');\n }\n if(controls.sendMeBackField.value != '' && controls.sendMeBackField.invalid ) {\n this.resetForm([false, false, false, true, false, false, false, false], 'addAreason');\n }\n if(processFormError && processFormError.minlength && processFormError.minlength.actualLength < 3 ) {\n this.resetForm([false, false, false, false, true, false, false, false], 'addAreason');\n }\n if(processFormError && processFormError.maxlength && processFormError.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, false, false, true, false, false], 'addAreason');\n }\n }\n if(controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.value == 'RE005') {\n if(controls.enterReasonField.value === \"\") {\n this.resetForm([false, false, false, false, false, false, true, false], 'enterReason');\n }\n if(controls.enterReasonField.value!== \"\" && controls.enterReasonField.invalid) {\n this.resetForm([false, false, false, false, false, false, false, true], 'enterReason');\n }\n }\n }\n\n }\n getErrorMessage(isErrorExist, status, errorMsg, err) {\n let bodyTxt = 'Please try again later';\n if (status !== 500) {\n if (errorMsg !== undefined) {\n bodyTxt = errorMsg;\n } else {\n bodyTxt = err;\n }\n \n }\n return {\n title: 'Something went wrong',\n body: bodyTxt,\n showError: isErrorExist\n };\n }\n loadRefundListPage() {\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n if (this.navigationpage === 'casetransactions') {\n window.location.href='/refund-list?takePayment=false&refundlist=true';\n } else {\n this.paymentLibComponent.viewName = 'refund-list';\n }\n }\n redirecttoRefundListPage() {\n if(this.paymentLibComponent.API_ROOT === 'api/payment-history') {\n window.location.href='/refund-list?takePayment=false&refundlist=true';\n }\n else {\n this.loadRefundListPage();\n }\n }\n // loadCaseTransactionPage() {\n // this.paymentLibComponent.isRefundStatusView = false;\n // this.paymentLibCo}mponent.TAKEPAYMENT = true;\n // this.paymentLibComponent.viewName = 'case-transactions';\n // this.paymentViewService.getBSfeature().subscribe(\n // features => {\n // let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n // this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n // },\n // err => {\n // this.paymentLibComponent.ISBSENABLE = false;\n // }\n // );\n\n // let partUrl = `selectedOption=${this.paymentLibComponent.SELECTED_OPTION}`;\n // partUrl += this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n // partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n // partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n // partUrl += this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n // partUrl += `&caseType=${this.paymentLibComponent.CASETYPE}`;\n // partUrl += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n // partUrl += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n // let url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=true&${partUrl}`;\n // this.router.navigateByUrl(url);\n // }\n\n resetForm(vals, field) {\n if(field==='action' || field==='all') {\n this.refundActionsHasError = vals[0];\n }\n if(field==='rejectReason' || field==='all') {\n this.refundRejectReasonHasError = vals[1];\n }\n if(field==='addAreason' || field==='all') {\n this.isReasonFieldEmpty = vals[2];\n this.isReasonFieldInvalid = vals[3];\n this.reasonFieldMinHasError = vals[4];\n this.reasonFieldMaxHasError = vals[5];\n }\n if(field==='enterReason' || field==='all') {\n this.isReasonEmpty = vals[6];\n this.isReasonInvalid = vals[7];\n }\n }\n}\n","import {Component, OnInit, Input} from '@angular/core';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { IRefundList } from '../../interfaces/IRefundList';\n\n@Component({\n selector: 'ccpay-refund-list',\n templateUrl: './refund-list.component.html',\n styleUrls: ['./refund-list.component.css']\n})\nexport class RefundListComponent implements OnInit {\n @Input('USERID') USERID: string;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: any[];\n @Input('LOGGEDINUSEREMAIL') LOGGEDINUSEREMAIL:string;\n\n constructor(private refundService: RefundsService) {\n }\n\n tableApprovalHeader: string;\n tableRejectedHeader: string;\n submittedRefundList: IRefundList[] = [];\n rejectedRefundList: IRefundList[] = [];\n approvalStatus = 'sent for approval';\n rejectStatus = 'sent back';\n errorMessage = null;\n isApproveTableVisible:boolean;\n isRejectTableVisible:boolean;\n dropdownvalue: string;\n isAuthorized: boolean = true;\n userLst\n ngOnInit() {\n \n // this.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['refund_list'];\n this.isApproveTableVisible = true;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n }\n\n this.refundService.getRefundList(this.rejectStatus,false).subscribe(\n refundList => {\n this.rejectedRefundList = refundList['refund_list'];\n this.isRejectTableVisible = true;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n\n }\n\n // selectchange(args){ \n // this.dropdownvalue = args.target.value;\n // if(args.target.value === 'caseworker-probate-authorize') {\n // this.isApproveTableVisible = true;\n // } else {\n // this.isApproveTableVisible = false;\n // }\n // this.ngOnInit();\n \n // } \n \n}","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {Observable} from 'rxjs/internal/Observable';\n\nimport {ICardDetails} from '../../interfaces/ICardDetails';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { catchError } from 'rxjs/operators';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class CardDetailsService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getCardDetails(paymentReference: string): Observable<ICardDetails> {\n this.logger.info('Card-detail-service getCardDetails for: ', paymentReference);\n\n return this.http.get<ICardDetails>(`${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}/details`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit } from '@angular/core';\nimport { CardDetailsService } from '../../services/card-details/card-details.service';\nimport {ICardDetails} from '../../interfaces/ICardDetails';\nimport { PaymentLibComponent } from '../../payment-lib.component';\n\n@Component({\n selector: 'ccpay-card-details',\n templateUrl: './card-details.component.html',\n styleUrls: ['./card-details.component.css']\n})\nexport class CardDetailsComponent implements OnInit {\n pageTitle: string = 'Card details';\n cardDetails: ICardDetails;\n paymentReference: string;\n errorMessage: string;\n\n constructor(private cardDetailsService: CardDetailsService,\n private paymentLibComponent: PaymentLibComponent) { }\n\n ngOnInit() {\n this.cardDetailsService.getCardDetails(this.paymentLibComponent.paymentReference).subscribe(\n cardDetails => this.cardDetails = cardDetails,\n (error: any) => this.errorMessage = <any>error\n );\n }\n\n get getPaymentReference(): string {\n return this.paymentReference;\n }\n\n}\n","import { Component } from '@angular/core';\n\n@Component({\n template: `\n <h1>This is not the page you were looking for!</h1>\n `\n})\nexport class PageNotFoundComponent { }\n","import { Injectable } from '@angular/core';\nimport { PaymentLibService } from '../../payment-lib.service';\nimport { HttpClient } from '@angular/common/http';\nimport { IStatusHistories } from '../../interfaces/IStatusHistories';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { catchError } from 'rxjs/operators';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class StatusHistoryService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getPaymentStatusesByReference(paymentReference: string, paymentMethod: string): Observable<IStatusHistories> {\n this.logger.info('Status-history-service getPaymentStatusesByReference for: ', paymentReference);\n\n return this.http.get<IStatusHistories>(paymentMethod === 'card' || paymentMethod === 'cash' || paymentMethod === 'cheque' || paymentMethod === 'postal order' ?\n `${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}/statuses` :\n `${this.paymentLibService.API_ROOT}/credit-account-payments/${paymentReference}/statuses`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { IStatusHistories } from '../../interfaces/IStatusHistories';\nimport { StatusHistoryService } from '../../services/status-history/status-history.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\n\n@Component({\n selector: 'ccpay-payment-statuses',\n templateUrl: './status-history.component.html',\n styleUrls: ['./status-history.component.css']\n})\nexport class StatusHistoryComponent implements OnInit {\n @Input() isTakePayment: boolean;\n pageTitle: string = 'Payment status history';\n statuses: IStatusHistories;\n errorMessage: string;\n\n constructor(private statusHistoryService: StatusHistoryService,\n private paymentLibComponent: PaymentLibComponent) { }\n\n ngOnInit() {\n this.statusHistoryService.getPaymentStatusesByReference(this.paymentLibComponent.paymentReference, this.paymentLibComponent.paymentMethod).subscribe(\n statuses => this.statuses = statuses,\n (error: any) => this.errorMessage = <any>error.replace(/\"/g,\"\")\n );\n }\n\n}\n","import { Component, Input, OnInit } from '@angular/core';\nimport { IPayment } from '../../interfaces/IPayment';\n\n@Component({\n selector: 'ccpay-pba-details',\n templateUrl: './pba-details.component.html',\n styleUrls: ['./pba-details.component.css']\n})\nexport class PbaDetailsComponent implements OnInit {\n @Input() payment: IPayment;\n\n constructor() { }\n\n ngOnInit() {\n }\n\n}\n","import { Injectable } from '@angular/core';\nimport { Logger } from './logger.service';\n\nexport let isDebugMode = false;\n\nconst noop = (): any => undefined;\n\n@Injectable({\n providedIn: 'root'\n})\nexport class ConsoleLoggerService implements Logger {\n\n get info() {\n if (isDebugMode) {\n return console.info.bind(console);\n } else {\n return noop;\n }\n }\n\n get warn() {\n if (isDebugMode) {\n return console.warn.bind(console);\n } else {\n return noop;\n }\n }\n\n get error() {\n if (isDebugMode) {\n return console.error.bind(console);\n } else {\n return noop;\n }\n }\n\n invokeConsoleMethod(type: string, args?: any): void {\n const logFn: Function = (console)[type] || console.log || noop;\n logFn.apply(console, [args]);\n }\n}\n","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {LoggerService} from '../shared/logger/logger.service';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport {catchError} from 'rxjs/operators';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class CaseTransactionsService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService\n ) { }\n\n getPaymentGroups(ccdCaseNumber: string): Observable<IPaymentGroup[]> {\n this.logger.info('Case-transactions-service getPaymentGroups for: ', ccdCaseNumber);\n\n return this.http.get<IPaymentGroup[]>(`${this.paymentLibService.API_ROOT}/cases/${ccdCaseNumber}/paymentgroups`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {catchError} from 'rxjs/operators';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class BulkScaningPaymentService {\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService\n ) { }\n\n getBSPaymentsByCCD(ccdCaseNumber: string): Observable<IBSPayments> {\n return this.http.get<IBSPayments>(`${this.paymentLibService.BULKSCAN_API_ROOT}/cases/${ccdCaseNumber}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getBSPaymentsByDCN(dcn: string): Observable<IBSPayments> {\n return this.http.get<IBSPayments>(`${this.paymentLibService.BULKSCAN_API_ROOT}/cases?document_control_number=${dcn}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSAllocatePayment(body: AllocatePaymentRequest, paymentRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentRef}/bulk-scan-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSPaymentStrategic(body: AllocatePaymentRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/bulk-scan-payments-strategic`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSWoPGStrategic(body: AllocatePaymentRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/bulk-scan-payments-strategic`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n patchBSChangeStatus(dcnNumber: string, status: string): Observable<any> {\n return this.https.patch(`${this.paymentLibService.API_ROOT}/bulk-scan-payments/${dcnNumber}/status/${status}`, status).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n calculateOutStandingAmount(paymentGroup: IPaymentGroup): number {\n let feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00;\n\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n });\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n } \n return (feesTotal - remissionsTotal) - paymentsTotal;\n }\n\n removeUnwantedString(input: string, replaceText: string) {\n const pattern = /[\\_]/gi;\n return input.replace(pattern, replaceText);\n }\n\n downloadSelectedReport(reportName: string, startDate: string, endDate:string): Observable<any> {\n return this.https.get(`${this.paymentLibService.BULKSCAN_API_ROOT}/report/data?date_from=${startDate}&date_to=${endDate}&report_type=${reportName}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { CaseTransactionsService } from '../../services/case-transactions/case-transactions.service';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IPaymentView } from '../../interfaces/IPaymentView';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { Router } from '@angular/router';\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(Event);\n this.calculateOrderFeesAmounts(Event);\n this.calculateRefundAmount(Event);\n if (this.isFromServiceRequestPage) {\n this.OrderslistService.getSelectedOrderRefId().subscribe((data) => this.orderRef = data);\n this.goToOrderViewDetailSection(this.orderRef);\n // this.viewStatus = 'order-full-view';\n }\n\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).data.content[0];\n\n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.isCPODown = true;\n }\n );\n\n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n } else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.isAnyFeeGroupAvilable =true;\n this.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts(Event);\n this.calculateOrderFeesAmounts(Event);\n this.totalRefundAmount = this.calculateRefundAmount(Event);\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).data.content[0];\n\n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.setDefaults();\n this.isCPODown = true;\n }\n );\n\n },\n (error: any) => {\n this.errorMessage = <any>error.replace(/\"/g,\"\");\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n }\n this.checkForExceptionRecord(Event);\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(event: any): void {\n event.preventDefault();\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(event: any): void {\n event.preventDefault();\n let feesTotal = 0.00;\n this.paymentGroups.forEach(paymentGroup => {\n this.resetOrderVariables();\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.orderFeesTotal = this.orderFeesTotal + fee.calculated_amount\n }\n )\n }\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n this.orderRemissionTotal = this.orderRemissionTotal + remission.hwf_amount;\n });\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n this.orderTotalPayments = this.orderTotalPayments + payment.amount;\n }\n });\n }\n\n this.orderPendingPayments = (this.orderFeesTotal - this.orderRemissionTotal) - this.orderTotalPayments;\n if (this.orderPendingPayments <= 0.00) {\n this.orderStatus = 'Paid';\n this.orderAddBtnEnable = false;\n } else if (this.orderFeesTotal > 0 && (this.orderTotalPayments > 0 || this.orderRemissionTotal > 0) && (this.orderTotalPayments < this.orderPendingPayments)) {\n this.orderStatus = 'Partially paid'\n this.orderAddBtnEnable = true;\n } else {\n this.orderStatus = 'Not paid'\n this.orderAddBtnEnable = true;\n }\n\n //this.orderLevelFees.push({orderRefId:paymentGroup['payment_group_reference'],orderTotalFees: this.orderFeesTotal,orderStatus: this.orderStatus,orderParty:'Santosh', orderCCDEvent:'Case Creation',orderCreated: new Date(), orderAddBtnEnable: this.orderAddBtnEnable}); this.cpoDetails['createdTimestamp']\n if (this.cpoDetails !== null) {\n this.orderLevelFees.push({ orderRefId: paymentGroup['payment_group_reference'], orderTotalFees: this.orderFeesTotal, orderStatus: this.orderStatus, orderParty: this.cpoDetails['responsibleParty'], orderCCDEvent: this.cpoDetails['action'], orderCreated: paymentGroup['date_created'], orderAddBtnEnable: this.orderAddBtnEnable });\n\n } else {\n this.orderLevelFees.push({ orderRefId: paymentGroup['payment_group_reference'], orderTotalFees: this.orderFeesTotal, orderStatus: this.orderStatus, orderParty: '', orderCCDEvent: '', orderCreated: paymentGroup['date_created'], orderAddBtnEnable: this.orderAddBtnEnable });\n }\n\n if (this.orderStatus !== 'Paid') {\n this.OrderslistService.setOrdersList(this.orderLevelFees);\n }\n });\n };\n\n resetOrderVariables(): void {\n this.orderFeesTotal = 0.00;\n this.orderTotalPayments = 0.00;\n this.orderRemissionTotal = 0.00;\n this.orderPendingPayments = 0.00;\n this.isAddFeeBtnEnabled = true;\n\n };\n\n goToOrderViewDetailSection(orderReferenceObj: any) {\n if (this.isFromServiceRequestPage) {\n this.OrderslistService.setOrderRefId(orderReferenceObj);\n this.orderRef = orderReferenceObj;\n } else {\n this.OrderslistService.setOrderRefId(orderReferenceObj.orderRefId);\n this.orderRef = orderReferenceObj.orderRefId;\n }\n\n this.orderFeesTotal = 0.00;\n this.orderRemissionTotal = 0.00;\n this.orderTotalPayments = 0.00;\n this.orderPendingPayments = 0.00;\n\n this.orderDetail = this.paymentGroups.filter(x => x.payment_group_reference === this.orderRef);\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.fees) {\n orderDetail.fees.forEach(fee => {\n this.orderFeesTotal = this.orderFeesTotal + fee.calculated_amount;\n });\n }\n if (orderDetail.remissions) {\n orderDetail.remissions.forEach(remission => {\n this.orderRemissionTotal = this.orderRemissionTotal + remission.hwf_amount;\n });\n if (orderDetail.payments) {\n this.payment = orderDetail.payments[0];\n orderDetail.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n this.orderTotalPayments = this.orderTotalPayments + payment.amount;\n }\n });\n }\n }\n });\n this.orderPendingPayments = (this.orderFeesTotal - this.orderRemissionTotal) - this.orderTotalPayments;\n // this.orderRef = orderReferenceObj.orderRefId;\n if (this.orderPendingPayments <= 0.00) {\n this.orderStatus = 'Paid';\n } else if (this.orderFeesTotal > 0 && (this.orderTotalPayments > 0 || this.orderRemissionTotal > 0) && (this.orderTotalPayments < this.orderPendingPayments)) {\n this.orderStatus = 'Partially paid'\n } else {\n this.orderStatus = 'Not paid'\n }\n\n if (this.cpoDetails !== null) {\n this.orderParty = this.cpoDetails['responsibleParty'];\n this.orderCreated = this.cpoDetails['createdTimestamp'];\n this.orderCCDEvent = this.cpoDetails['action'];\n } else {\n this.orderParty = '';\n this.orderCCDEvent = '';\n this.orderCreated = orderReferenceObj.orderCreated;\n }\n this.viewStatus = 'order-full-view';\n }\n\n redirectToOrderFeeSearchPage(event: any, orderef: any) {\n if(orderef.orderAddBtnEnable) {\n event.preventDefault();\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = orderef.orderRefId;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n }\n\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n this.isFromServiceRequestPage = false;\n this.viewStatus = 'main'\n this.paymentLibComponent.viewName = 'case-transactions';\n }\n\n\n calculateAmounts(event: any): void {\n event.preventDefault();\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(event: any) {\n event.preventDefault();\n if (!this.isTurnOff) {\n let isNewPaymentGroup = false;\n\n this.paymentGroups.forEach((paymentGroup, index) => {\n let grpOutstandingAmount = 0.00,\n feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00,\n fees = [];\n\n if (paymentGroup.fees) {\n // this.isFeeRecordsExist = true;\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n\n this.isRemissionsMatch = false;\n paymentGroup.remissions.forEach(rem => {\n if (rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n // if(!fees.find(k => k.code=fee.code))\n // {\n fees.push(fee);\n //}\n }\n });\n\n if (!this.isRemissionsMatch) {\n fees.push(fee);\n }\n\n if (fee.date_created) {\n isNewPaymentGroup = true;\n } else {\n this.isHistoricGroupAvailable = true;\n this.paymentGroups[index]['old'] = true;\n }\n });\n this.paymentGroups[index].fees = fees;\n }\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n }\n grpOutstandingAmount = (feesTotal - remissionsTotal) - paymentsTotal;\n if (grpOutstandingAmount > 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = true;\n this.isFeeRecordsExist = true;\n this.paymentRef = paymentGroup.payment_group_reference;\n }\n if (paymentGroup.fees && paymentGroup.fees.length > 0 && grpOutstandingAmount <= 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = false;\n }\n });\n if ((!isNewPaymentGroup && this.isHistoricGroupAvailable) || (!isNewPaymentGroup && !this.isHistoricGroupAvailable)) {\n this.isAnyFeeGroupAvilable = false;\n }\n } else {\n let totalRefundAmount = 0,\n isFeeAmountZero = false;\n this.paymentGroups.forEach(paymentGroup => {\n let grpOutstandingAmount = 0.00,\n feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00;\n if (paymentGroup.fees) {\n this.isFeeRecordsExist = true;\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n if (fee.calculated_amount === 0) {\n isFeeAmountZero = true\n }\n });\n\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n }\n grpOutstandingAmount = (feesTotal - remissionsTotal) - paymentsTotal;\n if (grpOutstandingAmount < 0) {\n if (totalRefundAmount === 0) {\n totalRefundAmount = grpOutstandingAmount;\n } else {\n totalRefundAmount = (totalRefundAmount + grpOutstandingAmount);\n }\n }\n else if (grpOutstandingAmount > 0 || (grpOutstandingAmount === 0 && isFeeAmountZero)) {\n this.isGrpOutstandingAmtPositive = true;\n }\n });\n return totalRefundAmount * -1;\n }\n }\n\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);;\n }\n\n redirectToFeeSearchPage(event: any) {\n event.preventDefault();\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n url += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n url += `&caseType=${this.caseType}`\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}${url}`);\n }\n\n addRemission(fee: IFee) {\n if(this.chkForAddRemission(fee.code)) {\n this.feeId = fee;\n this.viewStatus = 'addremission';\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error.replace(/\"/g,\"\")\n );\n }\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],fees:any) {\n this.viewStatus = 'addrefundforremission';\n \n this.payment = payment;\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.payment.reference));\n this.payment = this.paymentGroup.payments[0];\n this.remissions = remission;\n this.remissionFeeAmt = fees.filter(data=>data.code === this.remissions['fee_code'])[0].net_amount;\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n\n redirectToremissionPage(event: any) {\n event.preventDefault();\n this.paymentLibComponent.viewName = 'remission'\n }\n\n redirectToReportsPage(event: any) {\n event.preventDefault();\n this.router.navigateByUrl(`/reports?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}`);\n }\n\n loadFeeSummaryPage(paymentGroup: IPaymentGroup) {\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.payment_group_reference;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n\n goToPaymentViewComponent(paymentGroup: any) {\n this.paymentLibComponent.paymentMethod = paymentGroup.paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentGroup.paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n\n goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent({ paymentGroupReference, paymentReference, paymentMethod });\n }\n\n selectedUnprocessedFeeEvent(unprocessedRecordId: string) {\n if (unprocessedRecordId) {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = false;\n }\n this.isUnprocessedRecordSelected = true;\n } else {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = true;\n }\n this.isUnprocessedRecordSelected = false;\n }\n }\n\n getUnprocessedFeeCount(unProcessedRecordCount: number) {\n this.unprocessedRecordCount = unProcessedRecordCount;\n }\n\n calculateAmountDue(fee: IFee) {\n\n if (fee.date_created) {\n return fee.amount_due !== undefined ? fee.amount_due : fee.net_amount;\n } else {\n return \"0.00\";\n }\n }\n\n confirmRemoveFee(fee: IFee) {\n this.isRemoveBtnDisabled = false;\n this.feeId = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n cancelRemoval() {\n this.viewStatus = 'main';\n }\n\n removeFee(fee: any) {\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n window.location.reload();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n\n issueRefund(payment: IPayment) {\n if(this.chkIssueRefundBtnEnable(payment)) {\n this.viewStatus = 'issuerefund';\n this.payment = payment;\n this.isRefundRemission = true;\n }\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund()) {\n if (this.orderDetail[0]['remissions'].length > 0) {\n for (const remission of this.orderDetail[0]['remissions']) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n }\n return true;\n } else {\n return false;\n }\n }\n\n chkForPBAPayment(): boolean {\n 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.replace(/\"/g,\"\")\n );\n }\n\n confirmRemoveFee(fee: IFee){\n this.isRemoveBtnDisabled = false;\n this.currentFee = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n removeFee(fee: any){\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n if (this.paymentGroup.fees && this.paymentGroup.fees.length > 1){\n this.totalAfterRemission = 0;\n this.getPaymentGroup();\n this.viewStatus = 'main';\n return;\n }\n this.loadCaseTransactionPage();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n loadCaseTransactionPage() {\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n\n let partUrl = `selectedOption=${this.paymentLibComponent.SELECTED_OPTION}`;\n partUrl +=this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl +=this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl +=this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n\n let url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=true&${partUrl}`;\n this.router.navigateByUrl(url);\n }\n cancelRemission() {\n this.viewStatus = 'main';\n }\n redirectToFeeSearchPage(event: any, page?: string) {\n event.preventDefault();\n let partUrl =this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl +=this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl +=this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n\n if(this.viewStatus === 'feeRemovalConfirmation' || this.viewStatus === 'add_remission') {\n this.viewStatus = 'main';\n return;\n }\n let url = `/fee-search?ccdCaseNumber=${this.ccdCaseNumber}&selectedOption=${this.paymentLibComponent.SELECTED_OPTION}&paymentGroupRef=${this.paymentGroupRef}${partUrl}`;\n this.router.navigateByUrl(url);\n }\n takePayment() {\n this.isConfirmationBtnDisabled = true;\n const requestBody = new PaymentToPayhubRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType),\n antennaReqBody = new PayhubAntennaRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType);\n\n if(this.platForm === '8x8') {\n this.paymentViewService.postPaymentToPayHub(requestBody, this.paymentGroupRef).subscribe(\n response => {\n this.location.go(`payment-history?view=fee-summary`);\n this.payhubHtml = response;\n this.viewStatus = 'payhub_view';\n this.isBackButtonEnable=false;\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.router.navigateByUrl('/pci-pal-failure');\n }\n );\n } else if(this.platForm === 'Antenna') {\n\n this.paymentViewService.postPaymentAntennaToPayHub(antennaReqBody, this.paymentGroupRef).subscribe(\n response => {\n this.isBackButtonEnable=false;\n window.location.href = '/makePaymentByTelephoneyProvider';\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.router.navigateByUrl('/pci-pal-failure');\n }\n );\n }\n\n }\n\n goToAllocatePage(outStandingAmount: number, isFeeAmountZero: Boolean) {\n if (outStandingAmount > 0 || (outStandingAmount === 0 && isFeeAmountZero)) {\n this.paymentLibComponent.paymentGroupReference = this.paymentGroupRef;\n this.paymentLibComponent.viewName = 'allocate-payments';\n } else {\n this.loadCaseTransactionPage();\n }\n }\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\n\n\n\n@Component({\n selector: 'ccpay-error-banner',\n templateUrl: './error-banner.component.html',\n styleUrls: ['./error-banner.component.scss']\n})\n\nexport class ErrorBannerComponent implements OnInit {\n @Input('errorMessage') errorMessage;\n\n constructor(\n ) {}\n\n ngOnInit() {\n\n }\n}\n","\nexport class UnidentifiedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n unidentified_reason: string;\n\n constructor(payment_group_reference: string, payment_reference : string, unidentified_reason: any) {\n this.payment_allocation_status = {\n description: '',\n name: \"Unidentified\"\n };\n this.payment_group_reference = payment_group_reference ;\n this.payment_reference= payment_reference;\n this.unidentified_reason= unidentified_reason;\n\n }\n\n\n\n}\n","import { IBSPayments } from \"./IBSPayments\";\n\nexport class AllocatePaymentRequest {\n amount: Number;\n banked_date: String;\n ccd_case_number: String;\n exception_record: string;\n currency: String;\n document_control_number: String;\n external_provider: String;\n giro_slip_no: String;\n payer_name: String;\n payment_channel: Object;\n payment_status: Object;\n payment_method: String;\n case_type: String;\n payment_allocation_dto?: {\n allocation_reason: String,\n allocation_status: String,\n explanation: String,\n payment_allocation_status: Object,\n payment_group_reference: String,\n payment_reference: String,\n reason: String,\n receiving_office: String,\n unidentified_reason: String,\n user_id: String,\n user_name: String,\n case_type: String\n }\n\n constructor(ccd_case_number : string, unAllocatedPayment: IBSPayments, caseType: string, exceptionRecord: string, allocatedRequest?: any) {\n this.amount = unAllocatedPayment.amount;\n this.banked_date = unAllocatedPayment.date_banked;\n this.ccd_case_number = ccd_case_number;\n this.exception_record = exceptionRecord;\n this.currency= unAllocatedPayment.currency;\n this.document_control_number = unAllocatedPayment.dcn_reference;\n this.external_provider = 'exela';\n this.giro_slip_no = unAllocatedPayment.bgc_reference;\n this.payer_name = unAllocatedPayment.payer_name;\n this.payment_channel = {\n description: '',\n name: 'bulk scan'\n };\n this.payment_status ={\n description: 'bulk scan payment completed',\n name: 'success'\n }\n this.payment_method = unAllocatedPayment.payment_method;\n this.case_type= caseType;\n if(allocatedRequest) {\n this.payment_allocation_dto = allocatedRequest;\n }\n\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\n\n@Component({\n selector: 'app-mark-unidentified-payment',\n templateUrl: './mark-unidentified-payment.component.html',\n styleUrls: ['./mark-unidentified-payment.component.scss']\n})\nexport class MarkUnidentifiedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnidentifiedForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n isInvesticationDetailEmpty: boolean = false;\n investicationDetailHasError: boolean = false;\n investicationDetailMinHasError: boolean = false;\n investicationDetailMaxHasError: boolean = false;\n errorMessage = this.getErrorMessage(false);\n unassignedRecord:IBSPayments;\n siteID: string = null;\n investigationComment: string;\n isConfirmButtondisabled:Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n isStrategicFixEnable: boolean = true;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.markPaymentUnidentifiedForm = this.formBuilder.group({\n investicationDetail: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ]))\n });\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.getErrorMessage(false);\n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n saveAndContinue() {\n this.resetForm([false, false, false, false]);\n const investicationField = this.markPaymentUnidentifiedForm.controls.investicationDetail;\n const formerror = investicationField.errors;\n if (this.markPaymentUnidentifiedForm.dirty && this.markPaymentUnidentifiedForm.valid) {\n this.investigationComment = this.markPaymentUnidentifiedForm.controls.investicationDetail.value;\n this.viewStatus = 'unidentifiedContinueConfirm';\n }else {\n if(investicationField.value == '' ) {\n this.resetForm([true, false, false, false]);\n }\n if(investicationField.value != '' && investicationField.invalid ) {\n this.resetForm([false, true, false, false]);\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false, false, true, false]);\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, true]);\n }\n }\n }\n resetForm(val) {\n this.isInvesticationDetailEmpty = val[0];\n this.investicationDetailHasError = val[1];\n this.investicationDetailMinHasError = val[2];\n this.investicationDetailMaxHasError = val[3];\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const reason = this.markPaymentUnidentifiedForm.get('investicationDetail').value;\n\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Unidentified',\n payment_allocation_status: {\n description: '',\n name: 'Unidentified'\n },\n unidentified_reason: reason,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnidentifiedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, reason);\n if (response2.success) {\n this.paymentViewService.postBSUnidentifiedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n cancelMarkUnidentifiedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.markPaymentUnidentifiedForm.get('investicationDetail').value!==\"\"){\n this.viewStatus = 'unidentifiedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.viewStatus = 'mainForm';\n }\n }\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","\nexport class UnsolicitedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n receiving_office: string;\n receiving_email_address: string;\n sending_email_address: string;\n unidentified_reason: string;\n constructor(payment_group_reference: string, payment_reference : string, reason: string,responsible_office: string, responsible_person:string,email_id: string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Transferred\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.unidentified_reason= reason;\n this.receiving_office= responsible_office;\n this.receiving_email_address= email_id;\n this.sending_email_address= responsible_person;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\n\n\n@Component({\n selector: 'app-mark-unsolicited-payment',\n templateUrl: './mark-unsolicited-payment.component.html',\n styleUrls: ['./mark-unsolicited-payment.component.scss']\n})\nexport class MarkUnsolicitedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnsolicitedForm: FormGroup;\n viewStatus: string;\n reasonHasError: boolean = false;\n isReasonEmpty: boolean = false;\n reasonMinHasError: boolean = false;\n reasonMaxHasError: boolean = false;\n responsibleOfficeHasError: boolean = false;\n isResponsibleOfficeEmpty: boolean = false;\n errorMessage = this.getErrorMessage(false);\n ccdCaseNumber: string;\n bspaymentdcn: string;\n unassignedRecord: IBSPayments;\n siteID: string = null;\n reason: string;\n responsiblePerson: string;\n responsibleOffice: string;\n emailId: string;\n isConfirmButtondisabled: Boolean = false;\n isContinueButtondisabled: Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n selectedSiteId: string;\n selectedSiteName: string;\n isStrategicFixEnable: boolean = true;\n siteIDList;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.resetForm([false,false,false,false,false,false], 'all');\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.paymentViewService.getSiteID().subscribe(\n siteids => {\n this.isContinueButtondisabled = false;\n this.errorMessage = this.getErrorMessage(false);\n this.siteIDList = JSON.parse(siteids);\n },\n err => {\n window.scrollTo(0, 0);\n this.isContinueButtondisabled = true;\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n \n this.markPaymentUnsolicitedForm = this.formBuilder.group({\n reason: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n responsibleOffice: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s\\\\n,\\\\.-:]*)$')\n ])),\n responsiblePerson: new FormControl(''),\n emailId: new FormControl('')\n });\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const controls = this.markPaymentUnsolicitedForm.controls;\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Transferred',\n payment_allocation_status: {\n description: '',\n name: 'Transferred'\n },\n unidentified_reason: controls.reason.value,\n receiving_office: this.selectedSiteId,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n // controls.responsibleOffice.setValue('P219');\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const response1 = JSON.parse(res1),\n requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnsolicitedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, controls.reason.value, this.selectedSiteId, controls.responsiblePerson.value, controls.emailId.value);\n if (response2.success) {\n this.paymentViewService.postBSUnsolicitedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n saveAndContinue() {\n this.resetForm([false,false,false,false,false,false], 'all');\n const formerror = this.markPaymentUnsolicitedForm.controls.reason.errors;\n const reasonField = this.markPaymentUnsolicitedForm.controls.reason;\n //const officeIdField = this.selectedSiteId;\n const officeIdField = this.markPaymentUnsolicitedForm.controls.responsibleOffice;\n if (this.markPaymentUnsolicitedForm.dirty && this.markPaymentUnsolicitedForm.valid) {\n const controls = this.markPaymentUnsolicitedForm.controls;\n this.emailId = controls.emailId.value;\n this.responsibleOffice = officeIdField.value;\n this.responsiblePerson = controls.responsiblePerson.value;\n this.reason = controls.reason.value;\n this.viewStatus = 'unsolicitedContinueConfirm';\n }else {\n if( reasonField.value == '' ) {\n this.resetForm([true,false,false,false,false,false], 'reason');\n }\n if(reasonField.value != '' && this.markPaymentUnsolicitedForm.controls.reason.invalid ) {\n this.resetForm([false,true,false,false,false,false], 'reason');\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false,false,true,false,false,false], 'reason');\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false,false,false,true,false,false], 'reason');\n }\n if(officeIdField.value == '') {\n this.resetForm([false,false,false,false,true,false], 'responsibleOffice');\n }\n if(officeIdField.value != '' && officeIdField.invalid) {\n this.resetForm([false,false,false,false,false,true],'responsibleOffice');\n }\n }\n }\n resetForm(val, field) {\n if(field==='reason' || field==='all') {\n this.isReasonEmpty = val[0];\n this.reasonHasError = val[1];\n this.reasonMinHasError = val[2];\n this.reasonMaxHasError = val[3];\n }\n if(field==='responsibleOffice' || field==='all') {\n this.isResponsibleOfficeEmpty = val[4];\n this.responsibleOfficeHasError = val[5];\n }\n }\n\ncancelMarkUnsolicitedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.checkingFormValue()){\n this.viewStatus = 'unsolicitedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.markPaymentUnsolicitedForm.controls.responsibleOffice.setValue('');\n this.viewStatus = 'mainForm';\n }\n }\n checkingFormValue(){\n const formFields = this.markPaymentUnsolicitedForm.value;\n let valueExists = false;\n\n for (var field in formFields) {\n if (formFields.hasOwnProperty(field) && formFields[field] !==\"\") {\n valueExists = true;\n break;\n }\n }\n return valueExists;\n }\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n \n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n\n getErrorMessage(isErrorExist) {\n return {\n title: \"Something went wrong.\",\n body: \"Please try again later.\",\n showError: isErrorExist\n };\n }\n\n selectchange(args){ \n this.selectedSiteId = args.target.value; \n this.selectedSiteName = args.target.options[args.target.selectedIndex].text; \n } \n\n}\n","import { Component, OnInit, Output,Input, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport {Router} from '@angular/router';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-app-unprocessed-payments',\n templateUrl: './unprocessed-payments.component.html',\n styleUrls: ['./unprocessed-payments.component.scss']\n})\nexport class UnprocessedPaymentsComponent implements OnInit {\n\n @Input('FEE_RECORDS_EXISTS') FEE_RECORDS_EXISTS: boolean;\n @Input('PAYMENTREF') PAYMENTREF: string;\n @Input('ISTURNOFF') ISTURNOFF: boolean;\n @Input('IS_BUTTON_ENABLE') IS_BUTTON_ENABLE: boolean;\n @Input('IS_OS_AMT_AVAILABLE') IS_OS_AMT_AVAILABLE: boolean;\n @Input('ISNEWPCIPALOFF') ISNEWPCIPALOFF: boolean;\n @Input('ISOLDPCIPALOFF') ISOLDPCIPALOFF: boolean;\n @Input('ISSFENABLE') ISSFENABLE: boolean;\n @Input('PAYMENTSLENGTH') PAYMENTSLENGTH:Number;\n @Input('LEVEL')LEVEL:Number;\n\n @Output() selectedUnprocessedFeeEvent: EventEmitter<string> = new EventEmitter();\n @Output() getUnprocessedFeeCount: EventEmitter<string> = new EventEmitter();\n\n viewStatus = 'main';\n unassignedRecordList: IBSPayments;\n upPaymentErrorMessage: string = null;\n ccdCaseNumber: string;\n recordId: string = null;\n isRecordExist: boolean = false;\n dcnNumber: string = null;\n selectedOption: string;\n isUnprocessedRecordSelected: boolean = true;\n isAllocateToExistingFeebtnEnabled: boolean = false;\n isMarkAsUnidentifiedbtnEnabled: boolean = false;\n isAllocatedToNewFeebtnEnabled: boolean = false;\n isExceptionCase: boolean = false;\n serviceId: string = null;\n isBulkScanEnable;\n isNewpcipaloff;\n isOldpcipaloff;\n isTurnOff: boolean = true;\n isStFixEnable;\n unassignedRecordSelectedList: IBSPayments;\n unassignedRecordListLength: number = 0;\n showContent: boolean;\n\n constructor(private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private OrderslistService: OrderslistService\n ) { }\n\n ngOnInit() {\n // Todo ...\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isNewpcipaloff = this.paymentLibComponent.ISNEWPCIPALOFF;\n this.isOldpcipaloff = this.paymentLibComponent.ISOLDPCIPALOFF;\n this.isStFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.getFeeExists().subscribe( (data) => this.FEE_RECORDS_EXISTS = data);;\n this.getUnassignedPaymentlist();\n\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.dcnNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n }\n\n }\n\n setValuesForUnassignedRecord(unassignedPayments) {\n \n this.unassignedRecordList = unassignedPayments.payments;\n if(this.unassignedRecordList){\n this.unassignedRecordListLength = unassignedPayments.payments.length\n }\n this.serviceId = unassignedPayments.responsible_service_id;\n if (unassignedPayments['ccd_reference'] === undefined) {\n this.isExceptionCase = true;\n }\n // this.isRecordExist = this.unassignedRecordList.length === 0;\n this.getUnprocessedFeeCount.emit(<any>this.unassignedRecordList.length);\n this.unprocessedPaymentSelectEvent(this.unassignedRecordList);\n }\n\n formatUnassignedRecordId(ID: Number) {\n return `unassignrecord-${ID}`;\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n\n redirectToFeeSearchPage(event: any, dcn_reference:any) {\n event.preventDefault();\n this.recordId = dcn_reference;\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n url += this.isOldpcipaloff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n url += this.isNewpcipaloff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}&dcn=${this.recordId}${url}`);\n }\n\n loadUnsolicitedPage(viewName: string, dcn_reference:any) {\n this.recordId = dcn_reference;\n this.paymentLibComponent.bspaymentdcn = this.recordId;\n this.paymentLibComponent.viewName = viewName;\n }\n\n unprocessedPaymentSelectEvent(selectedRecordReference: any) {\n this.isUnprocessedRecordSelected = true;\n this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit(selectedRecordReference);\n }\n\n resetButtons() {\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n }\n\n goToAllocatePage(dcn_reference:any) {\n this.paymentLibComponent.bspaymentdcn = dcn_reference;\n this.paymentLibComponent.unProcessedPaymentServiceId = this.serviceId\n this.paymentLibComponent.isTurnOff = this.ISTURNOFF;\n this.paymentLibComponent.isNewPcipalOff = this.ISNEWPCIPALOFF;\n this.paymentLibComponent.isOldPcipalOff = this.ISOLDPCIPALOFF;\n this.paymentLibComponent.ISSFENABLE = this.isStFixEnable;\n\n if(this.ISTURNOFF) {\n this.paymentLibComponent.paymentGroupReference = this.PAYMENTREF;\n this.paymentLibComponent.viewName = 'fee-summary';\n }else {\n this.paymentLibComponent.paymentGroupReference = null;\n this.paymentLibComponent.viewName = 'allocate-payments';\n }\n\n }\n\n validateButtons() {\n if ( this.isUnprocessedRecordSelected && this.isExceptionCase) {\n this.isMarkAsUnidentifiedbtnEnabled = true;\n } else if ( this.isUnprocessedRecordSelected && !this.isExceptionCase && !this.FEE_RECORDS_EXISTS) {\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = true;\n } else if( this.isUnprocessedRecordSelected && !this.isExceptionCase && this.FEE_RECORDS_EXISTS ) {\n if(!this.ISTURNOFF) {\n this.isAllocateToExistingFeebtnEnabled = true;\n this.isAllocatedToNewFeebtnEnabled = false;\n } else {\n this.isAllocateToExistingFeebtnEnabled = this.IS_OS_AMT_AVAILABLE;\n this.isAllocatedToNewFeebtnEnabled = true;\n }\n }\n }\n\n unprocessedPaymentUnSelectEvent(event: any) {\n event.preventDefault();\n this.recordId = null;\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n //this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit('');\n }\n\n showDetailRow(event: any,obj: any, i: any) {\n event.preventDefault();\n \n this.unassignedRecordSelectedList = obj;\n \n }\n}\n","import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport {IPayment} from '../../interfaces/IPayment';\nimport {Router} from '@angular/router';\n\n@Component({\n selector: 'ccpay-app-processed-payments',\n templateUrl: './processed-payments.component.html',\n styleUrls: ['./processed-payments.component.scss']\n})\nexport class ProcessedPaymentsComponent implements OnInit {\n\n @Input('NONPAYMENTS') NONPAYMENTS: IPayment[];\n @Output() goToPaymentViewComponent: EventEmitter<any> = new EventEmitter();\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService\n ) { }\n ngOnInit() {\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n redirectToPaymentViewPage(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent.emit({paymentGroupReference, paymentReference, paymentMethod});\n }\n}\n","\nexport class IAllocationPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n reason: string;\n explanation: string;\n user_name: string;\n constructor(payment_group_reference: string, payment_reference : string, reason? : string, explanation? : string, userName? : string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Allocated\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.reason = reason ? reason : null;\n this.explanation = explanation ? explanation : null;\n this.user_name = userName ? userName : null;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {CaseTransactionsService} from '../../services/case-transactions/case-transactions.service'; \nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport {IBSPayments} from '../../interfaces/IBSPayments';\nimport {AllocatePaymentRequest} from '../../interfaces/AllocatePaymentRequest';\nimport {IAllocationPaymentsRequest} from '../../interfaces/IAllocationPaymentsRequest';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n\n\n@Component({\n selector: 'app-allocate-payments',\n templateUrl: './allocate-payments.component.html',\n styleUrls: ['./allocate-payments.component.scss']\n})\nexport class AllocatePaymentsComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() caseType: string;\n\n overUnderPaymentForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n recordId:string;\n feedbackUrlLabel:string;\n unAllocatedPayment: IBSPayments = {\n amount: 0\n };\n siteID: string = null;\n errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n paymentGroup: IPaymentGroup;\n paymentGroups: IPaymentGroup[] = [];\t\n remainingAmount: number;\n isRemainingAmountGtZero: boolean;\n isMoreDetailsBoxHide: boolean = true;\n isRemainingAmountLtZero: boolean;\n afterFeeAllocateOutstanding: number;\n amountForAllocation: number;\n isConfirmButtondisabled: boolean = false;\n isContinueButtondisabled: boolean = true;\n otherPaymentExplanation: string = null;\n selectedOption: string = null;\n isFeeAmountZero: boolean = false;\t\n\n paymentReasonHasError: boolean = false;\n paymentExplanationHasError: boolean = false;\n isPaymentDetailsEmpty: boolean = false;\n isPaymentDetailsInvalid: boolean = false;\n paymentDetailsMinHasError: boolean = false;\n paymentDetailsMaxHasError: boolean = false;\n isUserNameEmpty: boolean = false;\n isUserNameInvalid: boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n paymentReason: string = null;\n paymentExplanation: string = null;\n userName: string = null;\n paymentSectionLabel: any;\n paymentRef: string = null;\n isStrategicFixEnable: boolean = true;\n orderLevelFees: IOrderReferenceFee[] = [];\n\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 !== '' && this.viewCompStatus !== undefined){\n this.viewStatus = '';\n }\n if(this.remission) {\n // this.cd.detectChanges();\n }\n if(this.fee) {\n this.amount = (this.fee.volume * this.fee.calculated_amount);\n }\n if (this.payment){\n this.remessionPayment = this.payment;\n if(this.payment.status === 'Success') {\n this.isPaymentSuccess = true;\n }\n }\n this.option = this.paymentLibComponent.SELECTED_OPTION;\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.remissionForm = this.formBuilder.group({\n remissionCode: new FormControl('', 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.filter((data) => data.recently_used === false);\n this.refundReasons = this.refundReasons.filter((data) => data.name !== 'Retrospective remission');\n this.cd.detectChanges();\n this.commonRefundReasons = refundReasons.filter((data) => data.recently_used === true);\n this.commonRefundReasons.sort((a, b) => a.toString().localeCompare(b));\n this.cd.detectChanges();\n } );\n }\n \n if(this.viewCompStatus === 'processretroremissonpage' && this.isFromRefundListPage){\n this.viewStatus = 'processretroremissonpage';\n }\n\n // 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.errorMessage = false;\n this.viewStatus = '';\n this.isRefundRemission = false;\n this.resetRemissionForm([false, false, false, false, false, false], 'All');\n const remissionctrls=this.remissionForm.controls\n // isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value; \n this.remissionForm.controls['refundReason'].setErrors(null);\n this.remissionForm.controls['refundDDReason'].setErrors(null);\n this.remissionForm.controls['amount'].setErrors(null);\n if (this.remissionForm.dirty && this.remissionForm.valid ) {\n this.viewCompStatus = '';\n this.viewStatus = \"processretroremissonpage\";\n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false], 'amount');\n }\n if(remissionctrls['reason'].value == '') {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n }\n if(remissionctrls.amount.valid){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n }\n \n }\n }\n\n\n gotoAddRetroRemissionCodePage() {\n this.errorMessage = false;\n if(this.isRefundRemission) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListAmount.emit();\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n }\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n } \n this.viewStatus = '';\n this.selectedValue = 'yes';\n this.viewCompStatus = \"addremission\";\n this.isRefundRemission = true;\n this.errorMessage = '';\n if(this.isFromPaymentDetailPage) {\n this.paymentLibComponent.viewName = 'payment-view';\n }\n }\n\n gotoCheckRetroRemissionPage(payment: IPayment) {\n this.paymentLibComponent.iscancelClicked = false;\n this.errorMessage = '';\n this.resetRemissionForm([false, false, false, false, false], 'All');\n if( !this.isRefundRemission) {\n var remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value; \n if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' || remissionctrls['amount'].value < 0) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, false, false, true, false], 'amount');\n } else if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n }\n }\n } else {\n var remissionctrls=this.remissionForm.controls;\n //if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' || remissionctrls['amount'].value < 0 ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n this.refundListAmount.emit(remissionctrls['amount'].value);\n }\n //}\n \n }\n }\n\n gotoProcessRetroRemissionPage() {\n this.viewStatus = '';\n this.viewCompStatus = 'addremission';\n this.isRefundRemission = true;\n this.errorMessage = '';\n }\n\n confirmRetroRemission() {\n if(!this.isConfirmationBtnDisabled) {\n this.retroRemission = true;\n this.remissionamt = this.remissionForm.controls.amount.value;\n const requestBody = new AddRetroRemissionRequest(this.remissionamt,this.remissionForm.controls.remissionCode.value )\n this.paymentViewService.postPaymentGroupWithRetroRemissions(decodeURIComponent(this.paymentGroupRef).trim(), this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.isRemissionApplied = true;\n this.viewCompStatus = '';\n this.viewStatus = 'retroremissionconfirmationpage';\n this.remissionReference =JSON.parse(response).remission_reference;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n }\n );\n }\n }\n\n processRefund() {\n this.errorMessage = '';\n this.isConfirmationBtnDisabled = true;\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n if (this.remissionReference === undefined || this.remissionReference === '') {\n this.remissionReference = this.remission.remission_reference;\n }\n const requestBody = new PostIssueRefundRetroRemission(this.remissionReference);\n \n this.paymentViewService.postRefundRetroRemission(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n })\n }\n\n // Issue Refund changes\n\n gotoIssueRefundConfirmation(payment: IPayment) {\n this.paymentLibComponent.iscancelClicked = false;\n if(this.paymentLibComponent.REFUNDLIST === \"true\") {\n this.isFromRefundListPage = true; \n }\n this.errorMessage = '';\n this.refundReason = this.remissionForm.controls['refundReason'].value === null ? this.remissionForm.controls['refundDDReason'].value : this.remissionForm.controls['refundReason'].value;\n if(!this.refundReason || this.refundReason === 'Select a different reason') {\n this.refundHasError = true;\n } else if(this.selectedRefundReason.includes('Other') && (this.remissionForm.controls['reason'].value == '' || this.remissionForm.controls['reason'].value == null)) {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n } else if (this.selectedRefundReason.includes('Other') && this.remissionForm.controls['reason'].value !== '') {\n this.refundHasError = false;\n this.refundReason += '-' + this.remissionForm.controls['reason'].value;\n this.selectedRefundReason = this.remissionForm.controls['reason'].value;\n if ( this.isFromRefundListPage ) {\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n } else {\n this.viewCompStatus = '';\n this.viewStatus = 'checkissuerefundpage';\n }\n \n } else {\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n } else {\n this.viewCompStatus = '';\n this.viewStatus = 'checkissuerefundpage';\n }\n \n }\n }\n\n gotoIssueRefundPage() {\n this.errorMessage = '';\n this.viewCompStatus = 'issuerefund';\n this.viewStatus = '';\n this.isRefundRemission = true;\n this.errorMessage = false;\n this.refundHasError = false;\n this.isReasonEmpty = false;\n }\n\n changeIssueRefundReason() {\n // this.remissionForm.controls['refundReason'].setValue('Duplicate payment');\n this.errorMessage = '';\n this.refundHasError = false;\n this.isReasonEmpty = false;\n this.viewCompStatus = 'issuerefund';\n this.viewStatus = '';\n this.isRefundRemission = true;\n }\n\n confirmIssueRefund() {\n this.isConfirmationBtnDisabled = true;\n this.errorMessage = '';\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n \n const requestBody = new PostRefundRetroRemission(this.payment.reference,this.refundReason);\n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference =JSON.parse(response).refund_reference;\n if(JSON.parse(response).refund_amount) {\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n })\n }\n\n// Retro Refund\n\n confirmRetroRefund() {\n this.isConfirmationBtnDisabled = true;\n this.errorMessage = '';\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n\n const requestBody = new PostRefundRetroRemission(this.payment.reference,'RR004-Retrospective remission');\n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'retrorefundconfirmationpage';\n this.refundReference =JSON.parse(response).refund_reference;\n if(JSON.parse(response).refund_amount) {\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n });\n }\n\n selectRadioButton(key, value) {\n localStorage.setItem(\"myradio\", key);\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundDDReason'].setValue('Select a different reason', {onlySelf: true});\n remissionctrls['reason'].reset();\n this.isRefundReasonsSelected = true;\n this.errorMessage = false;\n this.isReasonEmpty = false;\n this.showReasonText = false;\n this.refundHasError = false;\n this.selectedRefundReason = key;\n if(this.selectedRefundReason.includes('Other')) {\n this.showReasonText = true;\n this.refundHasError = false;\n this.refundReason = key;\n }\n }\n\n selectchange(args) {\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundReason'].reset();\n remissionctrls['reason'].reset();\n this.isRefundReasonsSelected = false;\n this.showReasonText = false;\n this.refundHasError = false;\n this.selectedRefundReason = args.target.options[args.target.options.selectedIndex].id;\n this.reasonLength = (29-this.selectedRefundReason.split('- ')[1].length);\n\n if(this.selectedRefundReason.includes('Other')) {\n this.showReasonText = true;\n this.refundHasError = false;\n this.refundReason = args.target.options[args.target.options.selectedIndex].id;\n }\n\n\n }\n\n gotoServiceRequestPage(event: any) {\n event.preventDefault();\n \n if (this.paymentLibComponent.TAKEPAYMENT === undefined && this.paymentLibComponent.SERVICEREQUEST === undefined) {\n this.paymentLibComponent.SERVICEREQUEST = 'false';\n this.paymentLibComponent.TAKEPAYMENT = false;\n }\n if (this.isFromServiceRequestPage) {\n //this.paymentLibComponent.TAKEPAYMENT = false;\n this.paymentLibComponent.isFromRefundStatusPage = false;\n this.viewStatus = 'main'\n this.paymentLibComponent.viewName = 'case-transactions';\n this.OrderslistService.setisFromServiceRequestPage(true);\n this.OrderslistService.setnavigationPage('servicerequestpage');\n }\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n } \n if(!this.paymentLibComponent.isFromRefundStatusPage) {\n if(this.payment) {\n this.OrderslistService.setpaymentPageView({method: this.payment.method,payment_group_reference: this.paymentGroupRef, reference:this.payment.reference});\n }\n if (this.isFromServiceRequestPage) { \n this.OrderslistService.setnavigationPage('servicerequestpage');\n } else {\n this.OrderslistService.setnavigationPage('paymentdetailspage');\n }\n this.errorMessage = '';\n this.paymentLibComponent.viewName = 'case-transactions';\n // this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n this.paymentLibComponent.isFromServiceRequestPage = true; \n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n\n let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n if(this.isFromPaymentDetailPage) {\n partUrl += this.paymentLibComponent.isFromPaymentDetailPage\n }\n if(!this.paymentLibComponent.TAKEPAYMENT) {\n this.paymentLibComponent.TAKEPAYMENT = undefined;\n }\n if ( this.paymentLibComponent.SERVICEREQUEST) {\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n } else {\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n \n } else {\n this.paymentLibComponent.viewName === 'refundstatuslist';\n this.paymentLibComponent.isFromRefundStatusPage = true;\n }\n }\n\n gotoCasetransationPage() {\n this.OrderslistService.setnavigationPage('casetransactions');\n this.errorMessage = '';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n this.paymentLibComponent.isFromServiceRequestPage = true; \n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n\n let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n if(this.isFromPaymentDetailPage) {\n partUrl += this.paymentLibComponent.isFromPaymentDetailPage\n }\n\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n\n gotoCasetransationPageCancelBtnClicked() {\n if (this.paymentLibComponent.REFUNDLIST) {\n this.paymentLibComponent.viewName = 'refund-list';\n return;\n }\n if (this.paymentLibComponent.TAKEPAYMENT === undefined && this.paymentLibComponent.SERVICEREQUEST === undefined) {\n this.paymentLibComponent.SERVICEREQUEST = 'false';\n }\n this.OrderslistService.setisFromServiceRequestPage(false);\n this.OrderslistService.setpaymentPageView({method: '',payment_group_reference: '', reference:''});\n this.OrderslistService.setnavigationPage('casetransactions');\n this.errorMessage = '';\n this.paymentLibComponent.viewName = 'case-transactions';\n //this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n this.paymentLibComponent.isFromServiceRequestPage = true; \n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n\n let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n if(this.isFromPaymentDetailPage) {\n partUrl += this.paymentLibComponent.isFromPaymentDetailPage\n }\n\n if(!this.paymentLibComponent.SERVICEREQUEST) {\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n } else {\n const url =`/payment-history/${this.ccdCaseNumber}?selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n }\n \n \n }\n\n\n getFormattedCurrency(currency:number){\n if(currency.toString().includes(\".\")){\n return currency\n }\n return currency.toString().concat(\".00\");\n }\n \n}","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'ccdHyphens'\n})\nexport class CcdHyphensPipe implements PipeTransform {\n constructor() {}\n transform(value: any, args?: any): any {\n const pattern = /^([0-9]{4})+([0-9]{4})+([0-9]{4})+([0-9]{4})$/;\n if ( value.match(pattern)) {\n return value.replace(pattern,'$1-$2-$3-$4') \n }\n return value;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'capitalize'\n})\nexport class CapitalizePipe implements PipeTransform {\n constructor() { }\n transform(s: any, args?: any): any {\n return s && s[0].toUpperCase() + s.slice(1) || \"\";\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'keyValue'\n})\nexport class keyValuePipe implements PipeTransform {\n constructor() {}\n transform(input: any): any {\n let keys = [];\n for (let key in input) {\n if (input.hasOwnProperty(key)) {\n keys.push({ key: key, value: input[key]});\n }\n }\n return keys;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\nimport { DomSanitizer, SafeHtml } from '@angular/platform-browser';\n\n@Pipe({ name: 'sanitizeHtml' })\nexport class SanitizeHtmlPipe implements PipeTransform {\n constructor(private sanitizer: DomSanitizer) {}\n transform(value: any): SafeHtml {\n return this.sanitizer.bypassSecurityTrustHtml(value);\n }\n}\n","import { Injectable } from '@angular/core';\nimport * as FileSaver from 'file-saver';\nimport * as XLSX from 'xlsx';\nimport * as XLSXStyle from 'xlsx-style';\n\n\nconst EXCEL_TYPE = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8';\nconst EXCEL_EXTENSION = '.xlsx';\n\n@Injectable()\nexport class XlFileService {\n\n constructor() { }\n\n public exportAsExcelFile(json: any[], excelFileName: string): void {\n let worksheet: XLSX.WorkSheet; \n let workbook: XLSX.WorkBook; \n\n if(excelFileName.match('Data_Loss')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['loss_resp','payment_asset_dcn','env_ref','env_item','resp_service_id','resp_service_name','date_banked','bgc_batch','payment_method','amount']});\n worksheet = this.setDataLossReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Unprocessed')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','exception_ref','ccd_ref','date_banked','bgc_batch','payment_asset_dcn','env_ref','env_item','payment_method','amount']});\n worksheet = this.setUnprocessedReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Processed_Unallocated')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','allocation_status','receiving_office','allocation_reason','ccd_exception_reference','ccd_case_reference','payment_asset_dcn','env_ref','env_item','date_banked','bgc_batch','payment_method','amount']});\n worksheet = this.setProcessedUnallocatedReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else {\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','surplus_shortfall','balance','payment_amount','ccd_case_reference', 'ccd_exception_reference', 'processed_date', 'reason', 'explanation', 'user_name']});\n worksheet = this.setShortFallReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n }\n workbook = { Sheets: { 'data': worksheet }, SheetNames: ['data'] };\n const excelBuffer: any = XLSX.write(workbook, { bookType: 'xlsx', type: 'array' });\n this.saveAsExcelFile(excelBuffer, excelFileName);\n }\n\n\nprivate autoFitColumns (worksheet: XLSX.WorkSheet,json:any) : XLSX.WorkSheet {\n let objectMaxLength = []; \n let ColWidth = [];\n let obj = <any>Object;\n for (let i = 0; i < json.length; i++) {\n let value = obj.values(json[i]);\n let key = obj.keys(json[i]);\n for (let j = 0; j < value.length; j++) {\n if(value[j] === null){\n value[j] = '';\n }\n objectMaxLength[j] =\n key[j].length >= value[j].length\n ? key[j].length+2\n : value[j].length+1;\n if( value[j].length === undefined){\n objectMaxLength[j] = key[j].length+2;\n }\n ColWidth.push({'width': +objectMaxLength[j]});\n }\n }\n worksheet['!cols'] = ColWidth;\n return worksheet;\n}\n\n\nprivate setDataLossReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Loss_Resp\";\n worksheet.B1.v = \"Payment_Asset_DCN\";\n worksheet.C1.v = \"Envelope_Ref\";\n worksheet.D1.v = \"Envelope_Item\";\n worksheet.E1.v = \"Resp_Service ID\";\n worksheet.F1.v = \"Resp_Service Name\";\n worksheet.G1.v = \"Date_Banked\";\n worksheet.H1.v = \"BGC_Batch\";\n worksheet.I1.v = \"Payment_Method\";\n worksheet.J1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setUnprocessedReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Exception_Ref\";\n worksheet.D1.v = \"CCD_Ref\";\n worksheet.E1.v = \"Date_Banked\";\n worksheet.F1.v = \"BGC_Batch\";\n worksheet.G1.v = \"Payment_Asset_DCN\";\n worksheet.H1.v = \"Envelope_Ref\";\n worksheet.I1.v = \"Envelope_Item\";\n worksheet.J1.v = \"Payment_Method\";\n worksheet.K1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setProcessedUnallocatedReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Allocation_Status\";\n worksheet.D1.v = \"Receiving_Office\";\n worksheet.E1.v = \"Allocation_Reason\";\n worksheet.F1.v = \"CCD_Exception_Ref\";\n worksheet.G1.v = \"CCD_Case_Ref\";\n worksheet.H1.v = \"Payment_Asset_DCN\";\n worksheet.I1.v = \"Envelope_Ref\";\n worksheet.J1.v = \"Envelope_Item\";\n worksheet.K1.v = \"Date_Banked\";\n worksheet.L1.v = \"BGC_Batch\";\n worksheet.M1.v = \"Payment_Method\";\n worksheet.N1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setShortFallReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"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@Component({\n selector: 'ccpay-table',\n templateUrl: './table.component.html',\n styleUrls: ['./table.component.css']\n})\nexport class TableComponent {\n @Input('DATASOURCE') DATASOURCE: any[];\n @Input('STATUS') STATUS: string;\n @Input('errorMessage') errorMessage: string;\n isApprovalFlow: boolean;\n // displayedColumns = ['ccdCaseNumber', 'refundReference', 'reason', 'createBy', 'updateDate', 'Action'];\n displayedColumns = ['ccd_case_number', 'refund_reference', 'reason', 'user_full_name', 'date_updated', 'Action'];\n \n dataSource: MatTableDataSource<any>;\n userLst;\n actualcount: number;\n count: number;\n refundList: IRefundList[];\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n constructor(\n private paymentLibComponent: PaymentLibComponent,\n private cdRef: ChangeDetectorRef,\n private OrderslistService: OrderslistService\n ) {}\n ngOnInit() {\n this.errorMessage = this.errorMessage;\n if(this.STATUS.toLowerCase() === 'sent for approval') {\n this.isApprovalFlow = true;\n } else {\n this.isApprovalFlow = false;\n }\n this.refundList = this.DATASOURCE;\n this.dataSource = new MatTableDataSource(this.refundList);\n this.actualcount = this.dataSource.data.length;\n if( this.refundList !== undefined) {\n this.userLst = this.refundList.reduce((r,{user_full_name}) => (r[user_full_name]='', r) , {});\n this.userLst = Object.keys(this.userLst);\n }\n this.userLst.sort((a, b) => a.toString().localeCompare(b));\n }\n /**\n * Set the paginator and sort after the view init since this component will\n * be able to query its view for the initialized paginator and sort.\n */\n ngAfterViewInit() {\n \n this.dataSource.sort = this.sort;\n\n //const sortState: Sort = {active: 'date_updated', direction: 'desc'};\n // this.sort.active = sortState.active;\n // this.sort.direction = sortState.direction;\n // this.sort.sortChange.emit(sortState);\n this.dataSource.paginator = this.paginator;\n this.dataSource.sort = this.sort;\n this.cdRef.detectChanges();\n }\n applyFilter(filterValue: string) {\n filterValue = filterValue.trim(); // Remove whitespace\n filterValue = filterValue.toLowerCase(); // Datasource defaults to lowercase matches\n this.dataSource.filter = filterValue;\n }\n selectchange(args){\n this.dataSource.filter = args.target.value;\n this.actualcount = this.dataSource.data.length;\n this.dataSource.paginator = this.paginator;\n }\n goToRefundProcessComponent(refundReference: string, refundDate: IRefundList ) {\n this.paymentLibComponent.refundlistsource = refundDate;\n this.paymentLibComponent.refundReference = refundReference;\n this.paymentLibComponent.viewName = 'process-refund';\n }\n goToRefundViewComponent(refundReference: string, refundData: IRefundList ) {\n this.OrderslistService.setRefundView(refundData);\n this.paymentLibComponent.viewName='refundstatuslist';\n this.paymentLibComponent.CCD_CASE_NUMBER = refundData.ccd_case_number;\n this.paymentLibComponent.isRefundStatusView = true;\n this.paymentLibComponent.isCallFromRefundList = true;\n }\n goToCaseReview(ccdCaseNumber: string, refundData: IRefundList ) {\n window.location.href =`/cases/case-details/:${ccdCaseNumber}`;\n }\n}","export class IResubmitRefundRequest {\n refund_reason: string;\n amount: number;\n \n \n constructor(refund_reason : string, amount: number) {\n this.refund_reason= refund_reason;\n this.amount = amount;\n \n } \n }\n ","import { Component, OnInit, Input } from '@angular/core';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { FormBuilder, FormGroup, Validators, FormControl, RequiredValidator } from '@angular/forms';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { Router } from '@angular/router';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { IRefundStatus } from '../../interfaces/IRefundStatus';\nimport { IResubmitRefundRequest } from '../../interfaces/IResubmitRefundRequest';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-refund-status',\n templateUrl: './refund-status.component.html',\n styleUrls: ['./refund-status.component.css']\n})\nexport class RefundStatusComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[] = [];\n @Input() isOldPcipalOff: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: boolean;\n refundStatusForm: FormGroup;\n selectedRefundReason: string;\n rejectedRefundList: IRefundList[] = [];\n approvalStatus = 'sent for approval';\n rejectStatus = 'sent back';\n errorMessage = null;\n viewName: string;\n refundReason: string;\n refundlist: IRefundList;\n bsPaymentDcnNumber: string;\n isCallFromRefundList: boolean;\n refundButtonState: string = '';\n isAmountEmpty: boolean = false;\n isReasonEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n refundHasError: boolean = false;\n refundReasons: any[] = [];\n refundStatusHistories: IRefundStatus[];\n refundReference: string;\n refundAmount: string;\n refundCode: string;\n isRefundBtnDisabled: boolean = true;\n oldRefundReason: string;\n refundreason: string;\n navigationpage: string;\n isLastUpdatedByCurrentUser: boolean = true;\n isProcessRefund: boolean = false;\n changedAmount: number;\n\n constructor(private formBuilder: FormBuilder,\n private refundService: RefundsService,\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private router: Router,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.resetRemissionForm([false, false, false, false], 'All');\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.isCallFromRefundList = this.paymentLibComponent.isCallFromRefundList;\n // if(this.paymentLibComponent.isFromRefundStatusPage) {\n // this.viewName = 'reviewandsubmitview';\n // }\n if (this.paymentLibComponent.isRefundStatusView) {\n this.viewName = 'refundview';\n this.OrderslistService.getRefundView().subscribe((data) => this.refundlist = data);\n this.OrderslistService.getCCDCaseNumberforRefund.subscribe((data) => this.ccdCaseNumber = data);\n } else {\n this.viewName = 'refundstatuslist';\n this.refundService.getRefundStatusList(this.ccdCaseNumber).subscribe(\n refundList => {\n this.rejectedRefundList = refundList['refund_list'];\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n };\n }\n\n\n this.refundStatusForm = this.formBuilder.group({\n amount: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[0-9]+(\\.[0-9]{1,2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl()\n });\n\n 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.status_history_dto_list;\n this.isLastUpdatedByCurrentUser = statusHistoryList.last_updated_by_current_user;\n }\n ),\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n }; \n }\n }\n\n goToRefundView(refundlist: IRefundList, navigationpage: string) {\n this.OrderslistService.setRefundView(refundlist);\n this.OrderslistService.setCCDCaseNumber(this.ccdCaseNumber);\n this.paymentLibComponent.viewName = 'refundstatuslist';\n this.paymentLibComponent.isRefundStatusView = true;\n this.refundlist = refundlist;\n this.OrderslistService.setnavigationPage(navigationpage);\n }\n\n loadCaseTransactionPage() {\n this.paymentLibComponent.isRefundStatusView = false;\n //this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n\n let partUrl = `selectedOption=${this.paymentLibComponent.SELECTED_OPTION}`;\n partUrl += this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n let url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=${this.paymentLibComponent.TAKEPAYMENT}&${partUrl}`;\n this.router.navigateByUrl(url);\n }\n\n loadRefundListPage() {\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n if (this.navigationpage === 'casetransactions') {\n this.loadCaseTransactionPage();\n } else {\n this.paymentLibComponent.viewName = 'refund-list';\n }\n }\n\n gotoReviewDetailsPage(event:any) {\n // event.preventDefault();\n this.errorMessage = false;\n this.paymentLibComponent.isRefundStatusView = true;\n this.ngOnInit();\n // this.viewName='refundview';\n // this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;\n // this.paymentLibComponent.isRefundStatusView = true;\n // this.paymentLibComponent.isCallFromRefundList = true;\n }\n\n gotoReviewAndReSubmitPage() {\n this.viewName = 'reviewandsubmitview';\n this.oldRefundReason = this.refundlist.reason;\n this.changedAmount = this.refundlist.amount;\n this.refundreason = this.refundStatusHistories.filter(data => data.status === 'sentback')[0].notes;\n this.refundService.getRefundReasons().subscribe(\n refundReasons => {\n this.refundReasons = refundReasons;\n });\n }\n gotoRefundReasonPage() {\n this.isRefundBtnDisabled = false;\n this.paymentLibComponent.REFUNDLIST = \"true\";\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.errorMessage = false;\n this.viewName = 'issuerefund';\n }\n\n gotoAmountPage() {\n this.errorMessage = false;\n this.paymentLibComponent.REFUNDLIST = \"true\";\n this.isRefundBtnDisabled = false;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.viewName = 'processretroremissonpage';\n }\n\n goToReviewAndSubmitView() {\n const remissionctrls = this.refundStatusForm.controls\n if (this.refundStatusForm.dirty) {\n if (remissionctrls['amount'].value == '') {\n this.resetRemissionForm([true, false, false, false], 'amount');\n }\n else if (remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid) {\n this.resetRemissionForm([false, true, false, false], 'amount');\n }\n else if (remissionctrls['reason'].value == '') {\n this.resetRemissionForm([false, false, false, true], 'reason');\n } else {\n this.refundlist.reason = remissionctrls['reason'].value;\n this.viewName = 'reviewandsubmitview';\n }\n }\n\n }\n\n resetRemissionForm(val, field) {\n if (field === 'All') {\n this.isAmountEmpty = val[0];\n this.amountHasError = val[1];\n this.isRemissionLessThanFeeError = val[2];\n this.isReasonEmpty = val[3];\n } else if (field === 'amount' || field === 'All') {\n this.isAmountEmpty = val[0];\n this.amountHasError = val[1];\n this.isRemissionLessThanFeeError = val[2];\n } else if (field === 'reason' || field === 'All') {\n this.isReasonEmpty = val[3];\n }\n }\n\n selectRadioButton(key, value) {\n this.refundHasError = false;\n this.selectedRefundReason = key;\n if (key === 'Other') {\n this.refundHasError = false;\n this.refundReason = key;\n }\n }\n\n getRefundListReason(refundListReason: any) {\n if (this.paymentLibComponent.isFromRefundStatusPage && !this.paymentLibComponent.iscancelClicked) {\n this.refundlist.reason = refundListReason.reason;\n this.refundCode = refundListReason.code;\n } else {\n this.isRefundBtnDisabled = true;\n }\n this.viewName = 'reviewandsubmitview';\n this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;\n }\n\n getRefundAmount(amount: number) {\n if (this.paymentLibComponent.isFromRefundStatusPage && !this.paymentLibComponent.iscancelClicked) {\n if (amount > 0) {\n this.changedAmount = amount;\n // this.refundlist.amount = amount;\n }\n } else {\n this.isRefundBtnDisabled = true;\n }\n this.viewName = 'reviewandsubmitview';\n this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;\n }\n\n gotoReviewRefundConfirmationPage() {\n if (this.oldRefundReason === this.refundlist.reason) {\n this.refundCode = '';\n }\n const resubmitRequest = new IResubmitRefundRequest(this.refundCode, this.changedAmount);\n this.refundService.patchResubmitRefund(resubmitRequest, this.refundlist.refund_reference).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n this.viewName = 'reviewrefundconfirmationpage';\n }\n },\n (error: any) => {\n this.errorMessage = error.replace(/\"/g,\"\");\n }\n );\n\n }\n\n goToRefundProcessComponent(refundReference: string, refundList: IRefundList) {\n this.paymentLibComponent.refundlistsource = refundList;\n this.paymentLibComponent.refundReference = refundReference;\n this.paymentLibComponent.viewName = 'process-refund';\n }\n\n}\n","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';\n// import { 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","replace","JSON","parse","split","messsage","undefined","_throw","getServerErrorMessage","isErrorExist","title","body","showError","LoggerService","invokeConsoleMethod","type","PaymentListService","getPaymentByCcdCaseNumber","ccdCaseNumber","paymentMethod","logger","info","http","get","withCredentials","pipe","catchError","errorHandlerService","HttpClient","PaymentListComponent","_this","paymentListService","paymentLibComponent","CCD_CASE_NUMBER","PAYMENT_METHOD","subscribe","payments","loadPaymentViewComponent","paymentReference","__values","o","s","Symbol","iterator","m","i","call","length","next","value","done","TypeError","WebComponentHttpClient","post","url","options","opts","addHeaders","put","delete","patch","csrfToken","meta","getTag","headers","forEach","element","document","cookie","find","row","startsWith","content","HttpHeaders","responseType","Meta","PaymentViewService","getPaymentDetails","getPaymentGroupDetails","getApportionPaymentDetails","postBSPayments","https","postBSUnidentifiedPayments","postBSUnsolicitedPayments","postBSAllocationPayments","postPaymentGroupWithRemissions","feeId","deleteFeeFromPaymentGroup","postPaymentToPayHub","paymentGroupRef","postPaymentAntennaToPayHub","downloadSelectedReport","reportName","startDate","endDate","getBSfeature","getSiteID","getPartyDetails","caseNumber","setOrdersList","orderLevelFees","ordersList","Object","assign","getOrdersList","postRefundsReason","postPaymentGroupWithRetroRemissions","postRefundRetroRemission","BehaviorSubject","OrderslistService","setRefundView","refundList","refundView","getRefundView","setCaseType","caseType","getCaseType","setCCDCaseNumber","getCCDCaseNumber","setFeeExists","feeExists","getFeeExists","setisFromServiceRequestPage","isFromServiceRequestPage","getisFromServiceRequestPages","setOrderRefId","OrderRefId","getSelectedOrderRefId","setnavigationPage","navigationPage","getnavigationPageValue","setpaymentPageView","paymentpageList","paymentPageView","getpaymentPageView","getcaseType","asObservable","getFeeExist","getCCDCaseNumberforRefund","getisFromServiceRequestPage","getOrderRefId","getnavigationPage","PaymentViewComponent","selectedOption","SELECTED_OPTION","dcnNumber","isTurnOff","ISTURNOFF","viewStatus","paymentViewService","paymentGroup","fees","fee","isRemissionsMatch","remissions","rem","fee_code","code","push","filter","paymentGroupObj","includes","paymentAllocation","payment_allocation","isStatusAllocated","allocation_status","console","log","defineProperty","method","channel","goToPaymentList","goToCaseTransationPage","event","preventDefault","features","result","feature","uid","ISBSENABLE","enable","addRemission","chkForAddRemission","reference","payment","isFromPaymentDetailPage","isRefundRemission","cd","detectChanges","addRefundForRemission","remission","chkIsRefundRemissionBtnEnable","remissionFeeAmt","data","net_amount","toLocaleLowerCase","allowFurtherAccessAfter4Days","isRefundRemissionBtnEnable","issueRefund","paymentgrp","chkIssueRefundBtnEnable","getRemissionByFeeCode","feeCode","remissions_1","tslib_1.__values","remissions_1_1","check4AllowedRoles2AccessRefund","isIssueRefunfBtnEnable","chkForPBAPayment","_b","_c","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","stringify","invalid","minlength","actualLength","maxlength","errorMsg","bodyTxt","loadRefundListPage","navigationpage","window","location","href","redirecttoRefundListPage","vals","field","refundActionsHasError","refundRejectReasonHasError","isReasonFieldEmpty","isReasonFieldInvalid","reasonFieldMinHasError","reasonFieldMaxHasError","isReasonEmpty","isReasonInvalid","FormBuilder","sendmeback","RefundListComponent","userLst","isAuthorized","isApproveTableVisible","tableApprovalHeader","tableRejectedHeader","refundService","approvalStatus","submittedRefundList","rejectStatus","rejectedRefundList","isRejectTableVisible","CardDetailsService","getCardDetails","CardDetailsComponent","cardDetailsService","cardDetails","pageTitle","PageNotFoundComponent","StatusHistoryService","getPaymentStatusesByReference","StatusHistoryComponent","statusHistoryService","statuses","PbaDetailsComponent","noop","ConsoleLoggerService","apply","CaseTransactionsService","getPaymentGroups","BulkScaningPaymentService","getBSPaymentsByCCD","getBSPaymentsByDCN","dcn","postBSAllocatePayment","paymentRef","postBSPaymentStrategic","postBSWoPGStrategic","patchBSChangeStatus","calculateOutStandingAmount","feesTotal","paymentsTotal","remissionsTotal","calculated_amount","toUpperCase","amount","hwf_amount","removeUnwantedString","input","replaceText","CaseTransactionsComponent","paymentView","payment_group_reference","goToPayementView","isGrpOutstandingAmtPositive","CASETYPE","EXC_REFERENCE","excReference","takePayment","TAKEPAYMENT","servicerequest","SERVICEREQUEST","serviveRequestValue","isBulkScanEnable","isNewPcipalOff","ISNEWPCIPALOFF","isOldPcipalOff","ISOLDPCIPALOFF","isStrategicFixEnable","ISSFENABLE","caseTransactionsService","paymentGroups","isAnyFeeGroupAvilable","calculateAmounts","Event","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","sort","toString","localeCompare","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","values","j","width","A1","v","B1","C1","D1","E1","F1","G1","H1","I1","J1","K1","L1","M1","N1","buffer","fileName","Blob","FileSaver.saveAs","ReportsComponent","fromValidation","getToday","toISOString","getSelectedFromDate","validateDates","reportsForm","selectedStartDate","tranformDate","selectedEndDate","isDateRangeMoreThanWeek","isDateRangeBetnWeek","isStartDateLesthanEndDate","selectedreport","downloadReport","isDownLoadButtondisabled","dataLossRptDefault","loss_resp","payment_asset_dcn","env_ref","env_item","resp_service_id","resp_service_name","bgc_batch","unProcessedRptDefault","exception_ref","ccd_ref","processedUnallocated","allocation_reason","ccd_exception_ref","ccd_case_ref","updated_by","shortFallsRptDefault","surplus_shortfall","balance","payment_amount","ccd_case_reference","ccd_exception_reference","processed_date","selectedReportName","applyDateFormat","substr","convertToFloatValue","xlFileService","getFileName","loc","stDt","formatDate","enDt","now","timestamp","getTwodigit","getHours","getMinutes","getSeconds","getCamelCaseString","strDate","parts","map","amt","Number","parseFloat","RefundsComponent","TableComponent","STATUS","toLowerCase","isApprovalFlow","DATASOURCE","dataSource","MatTableDataSource","actualcount","reduce","r","_a","user_full_name","ngAfterViewInit","paginator","cdRef","applyFilter","filterValue","goToRefundProcessComponent","refundDate","refundlistsource","goToRefundViewComponent","refundData","isRefundStatusView","isCallFromRefundList","goToCaseReview","ViewChild","MatPaginator","MatSort","displayedColumns","IResubmitRefundRequest","RefundStatusComponent","refundlist","refundStatusForm","getRefundsStatusHistoryList","isProcessRefund","refundButtonState","refund_status","statusHistoryList","refundStatusHistories","status_history_dto_list","isLastUpdatedByCurrentUser","last_updated_by_current_user","goToRefundView","gotoReviewDetailsPage","gotoReviewAndReSubmitPage","oldRefundReason","changedAmount","refundreason","notes","gotoRefundReasonPage","isRefundBtnDisabled","gotoAmountPage","goToReviewAndSubmitView","getRefundListReason","refundCode","getRefundAmount","gotoReviewRefundConfirmationPage","resubmitRequest","NgModule","imports","CommonModule","HttpClientModule","FormsModule","ReactiveFormsModule","MatTableModule","MatPaginatorModule","MatSortModule","MatFormFieldModule","MatInputModule","declarations","exports","providers","provide","useClass","PaymentLibModule"],"mappings":"s3CAAA,IAAAA,GAaEA,EAAAC,UAAAC,cAAA,SAAcC,GACZC,KAAKC,SAAWF,GAGlBH,EAAAC,UAAAK,cAAA,WACE,OAAOF,KAAKC,UAGdL,EAAAC,UAAAM,sBAAA,SAAsBC,GACpBJ,KAAKK,kBAAoBD,GAG3BR,EAAAC,UAAAS,sBAAA,WACE,OAAON,KAAKK,mBAGdT,EAAAC,UAAAU,uBAAA,SAAuBC,GACrBR,KAAKS,iBAAmBD,GAG1BZ,EAAAC,UAAAa,qBAAA,WACE,OAAOV,KAAKS,kB,oBAhCfE,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,W,4IAQZ,SAAAjB,KCXF,IAAAkB,GA4FEA,EAAAjB,UAAAkB,SAAA,WACEf,KAAKgB,kBAAkBlB,cAAcE,KAAKC,UAC1CD,KAAKgB,kBAAkBb,sBAAsBH,KAAKK,mBAClDL,KAAKgB,kBAAkBT,uBAAuBP,KAAKS,kBAC/CT,KAAKiB,oBACPjB,KAAKkB,sBAAwBlB,KAAKiB,mBAEhCjB,KAAKmB,aACPnB,KAAKoB,aAAepB,KAAKmB,YAEH,SAApBnB,KAAKqB,aACPrB,KAAKsB,KAAO,cACZtB,KAAKuB,SAAWvB,KAAKsB,MAEL,gBAAdtB,KAAKsB,KACPtB,KAAKuB,SAAW,cACO,YAAdvB,KAAKsB,MAAoC,gBAAdtB,KAAKsB,KACzCtB,KAAKuB,SAAW,oBAEhBvB,KAAKuB,SAAWvB,KAAKsB,M,oBA3G1BE,EAAAA,UAASZ,KAAA,CAAC,CACTa,SAAU,oBACVC,SAAU,43D,yCALH9B,K,kCA0CN+B,EAAAA,MAAKf,KAAA,CAAC,c,yBACNe,EAAAA,MAAKf,KAAA,CAAC,uB,wBACNe,EAAAA,MAAKf,KAAA,CAAC,sB,uBACNe,EAAAA,MAAKf,KAAA,CAAC,qB,qBACNe,EAAAA,MAAKf,KAAA,CAAC,mB,sBACNe,EAAAA,MAAKf,KAAA,CAAC,oB,YACNe,EAAAA,MAAKf,KAAA,CAAC,U,mBACNe,EAAAA,MAAKf,KAAA,CAAC,iB,yBACNe,EAAAA,MAAKf,KAAA,CAAC,uB,mBACNe,EAAAA,MAAKf,KAAA,CAAC,iB,sBACNe,EAAAA,MAAKf,KAAA,CAAC,oB,kBACNe,EAAAA,MAAKf,KAAA,CAAC,gB,uBACNe,EAAAA,MAAKf,KAAA,CAAC,qB,kBACNe,EAAAA,MAAKf,KAAA,CAAC,gB,kBACNe,EAAAA,MAAKf,KAAA,CAAC,gB,iBACNe,EAAAA,MAAKf,KAAA,CAAC,e,gBACNe,EAAAA,MAAKf,KAAA,CAAC,c,sBACNe,EAAAA,MAAKf,KAAA,CAAC,oB,sBACNe,EAAAA,MAAKf,KAAA,CAAC,oB,eACNe,EAAAA,MAAKf,KAAA,CAAC,a,kBACNe,EAAAA,MAAKf,KAAA,CAAC,gB,cACNe,EAAAA,MAAKf,KAAA,CAAC,Y,yBACNe,EAAAA,MAAKf,KAAA,CAAC,uB,yBACNe,EAAAA,MAAKf,KAAA,CAAC,uB,gCACNe,EAAAA,MAAKf,KAAA,CAAC,+BA+CTE,GAxBE,SAAAA,EAAoBE,GAAAhB,KAAAgB,kBAAAA,EAnBpBhB,KAAA4B,4BAAsC,KAUtC5B,KAAA6B,mBAAkC,KCjFpC,IAAAC,GAeEA,EAAAjC,UAAAkC,YAAA,SAAYC,GAIRC,EAFED,EAAIE,iBAAiBC,MAER,sBAAsBH,EAAIE,MAAME,QAG5B,MAAfJ,EAAIK,OACDL,EAAIE,OACQ,YAIRF,EAAIE,MACY,iBAAdF,EAAIE,MACEF,EAAIE,MAAMI,QAAQ,KAAK,IAEvBC,KAAKC,MAAMR,EAAIE,OAAY,IAAEO,MAAM,KAAK,GAIjDT,EAAIE,MAAMQ,WAAaC,UAChB,eAEA,GAAGX,EAAIE,MAAME,QAGhC,OAAOQ,EAAAA,OAAOX,IAGhBH,EAAAjC,UAAAgD,sBAAA,SAAsBC,GACpB,MAAO,CACLC,MAAO,sCACPC,KAAM,kBACNC,UAAWH,I,oBA5ChBnC,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,W,4IAMZ,SAAAiB,KCZF,IAAAoB,GAoBEA,EAAArD,UAAAsD,oBAAA,SAAoBC,EAAcxC,K,oBATnCD,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,W,sGADd,SAAAqC,KCXA,IAAAG,GAsBEA,EAAAxD,UAAAyD,0BAAA,SAA0BC,EAAuBC,GAG/C,OAFAxD,KAAKyD,OAAOC,KAAK,uDAAwDH,GAElEvD,KAAK2D,KAAKC,IAAkB5D,KAAKgB,kBAAkBf,SAAQ,UAAUsD,EAAa,YAAa,CAClGM,iBAAiB,IAElBC,KACCC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,e,oBAnB3CpB,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,W,yCAVLoD,EAAAA,Y,MAOAf,G,MADApB,G,MAHDlC,K,kKAYN,SAAAyD,EAAoBM,EACAF,EACAO,EACAhD,GAHAhB,KAAA2D,KAAAA,EACA3D,KAAAyD,OAAAA,EACAzD,KAAAgE,oBAAAA,EACAhE,KAAAgB,kBAAAA,ECnBtB,IAAAkD,GAqBEA,EAAArE,UAAAkB,SAAA,WAAA,IAAAoD,EAAAnE,KACEA,KAAKoE,mBAAmBd,0BAA0BtD,KAAKqE,oBAAoBC,gBAAiBtE,KAAKqE,oBAAoBE,gBAClHC,UAAS,SACRC,GAAY,OAAAN,EAAKM,SAAWA,GAAQ,SACnCvC,GAAe,OAAAiC,EAAKlC,aAAY,KAIvCiC,EAAArE,UAAA6E,yBAAA,SAAyBxD,EAA+ByD,EAA0BnB,GAChFxD,KAAKqE,oBAAoBb,cAAgBA,EACzCxD,KAAKqE,oBAAoBnD,sBAAwBA,EACjDlB,KAAKqE,oBAAoBM,iBAAmBA,EAC5C3E,KAAKqE,oBAAoB9C,SAAW,gB,oBA1BvCC,EAAAA,UAASZ,KAAA,CAAC,CACTa,SAAU,qBACVC,SAAA,yjH,yDAPM2B,G,MAEAvC,KA+BRoD,GAlBE,SAAAA,EAAoBE,EACAC,GADArE,KAAAoE,mBAAAA,EACApE,KAAAqE,oBAAAA,ECJtB,SAoGgBO,EAASC,GACrB,IAAIC,EAAsB,mBAAXC,QAAyBA,OAAOC,SAAUC,EAAIH,GAAKD,EAAEC,GAAII,EAAI,EAC5E,GAAID,EAAG,OAAOA,EAAEE,KAAKN,GACrB,GAAIA,GAAyB,iBAAbA,EAAEO,OAAqB,MAAO,CAC1CC,KAAM,WAEF,MAAO,CAAEC,OADeT,EAApBA,GAAKK,GAAKL,EAAEO,YAAY,EACZP,IAAKA,EAAEK,KAAMK,MAAOV,KAG5C,MAAM,IAAIW,UAAUV,EAAI,0BAA4B,mCC3HxD,IAAAW,GAYEA,EAAA5F,UAAA6F,KAAA,SAAKC,EAAa3C,EAAkB4C,GAC5BC,EAAO7F,KAAK8F,WAAWF,GAAW,IACxC,OAAO5F,KAAK2D,KAAK+B,KAAKC,EAAK3C,EAAM6C,IAGnCJ,EAAA5F,UAAAkG,IAAA,SAAIJ,EAAa3C,EAAkB4C,GAC3BC,EAAO7F,KAAK8F,WAAWF,GAAW,IACxC,OAAO5F,KAAK2D,KAAKoC,IAAIJ,EAAK3C,EAAM6C,IAGlCJ,EAAA5F,UAAA+D,IAAA,SAAI+B,EAAaC,GACTC,EAAO7F,KAAK8F,WAAWF,GAAW,IACxC,OAAO5F,KAAK2D,KAAKC,IAAI+B,EAAKE,IAG5BJ,EAAA5F,UAAAmG,UAAA,SAAOL,EAAaC,GACZC,EAAO7F,KAAK8F,WAAWF,GAAW,IACxC,OAAO5F,KAAK2D,KAAKqC,UAAOL,EAAKE,IAG/BJ,EAAA5F,UAAAoG,MAAA,SAAMN,EAAa3C,EAAkB4C,GAC7BC,EAAO7F,KAAK8F,WAAWF,GAAW,IACxC,OAAO5F,KAAK2D,KAAKsC,MAAMN,EAAK3C,EAAM6C,IAGpCJ,EAAA5F,UAAAiG,WAAA,SAAWF,G,IACHM,EAAYlG,KAAKmG,KAAKC,OAAO,mBAC7BC,EAAU,GAehB,OAbIT,EAAQS,SACVT,EAAQS,QAAQC,QAAO,SAACC,GACtBF,EAAQE,GAAWX,EAAQS,QAAQzC,IAAI2C,KAG3CF,EAAQ,oBAAsB,iBAE5BA,EAAQ,cADQ,OAAdH,EACsBM,SAASC,OAAOhE,MAAM,KAAKiE,KAAI,SAACC,GAAO,OAAAA,EAAIC,WAAW,iBAAgBnE,MAAM,KAAK,GAEjFyD,EAAUW,QAEpCjB,EAAQS,QAAU,IAAIS,EAAAA,YAAYT,GAClCT,EAAQmB,aAAe,OAChBnB,G,oBAjDVjF,EAAAA,a,yCAJQsD,EAAAA,Y,MACA+C,EAAAA,QAsDTvB,GAjDE,SAAAA,EACU9B,EACAwC,GADAnG,KAAA2D,KAAAA,EACA3D,KAAAmG,KAAAA,ECTZ,IAAAc,GAwCEA,EAAApH,UAAAqH,kBAAA,SAAkBvC,EAA0BnB,GAG1C,OAFAxD,KAAKyD,OAAOC,KAAK,+CAAgDiB,GAE1D3E,KAAK2D,KAAKC,IAAgC,SAAlBJ,GAA8C,SAAlBA,GAA8C,WAAlBA,GAAgD,iBAAlBA,EAC5GxD,KAAKgB,kBAAkBf,SAAQ,kBAAkB0E,EACjD3E,KAAKgB,kBAAkBf,SAAQ,4BAA4B0E,EAAoB,CACpFd,iBAAiB,IAElBC,KACCC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAI1CkF,EAAApH,UAAAsH,uBAAA,SAAuBjG,GAGrB,OAFAlB,KAAKyD,OAAOC,KAAK,oDAAqDxC,GAE/DlB,KAAK2D,KAAKC,IAAiB5D,KAAKgB,kBAAkBf,SAAQ,mBAAmBiB,EAAyB,CAC3G2C,iBAAiB,IAEhBC,KACCC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAG1CkF,EAAApH,UAAAuH,2BAAA,SAA2BzC,GAGzB,OAFA3E,KAAKyD,OAAOC,KAAK,oDAAqDiB,GAE/D3E,KAAK2D,KAAKC,IAAiB5D,KAAKgB,kBAAkBf,SAAQ,qCAAqC0E,EAAoB,CACxHd,iBAAiB,IAEhBC,KACCC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAG1CkF,EAAApH,UAAAwH,eAAA,SAAerE,GACb,OAAOhD,KAAKsH,MAAM5B,KAAQ1F,KAAKgB,kBAAkBf,SAAQ,qCAAsC+C,GAAMc,KACnGC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAGxCkF,EAAApH,UAAA0H,2BAAA,SAA2BvE,GACzB,OAAOhD,KAAKsH,MAAM5B,KAAQ1F,KAAKgB,kBAAkBf,SAAQ,uBAAwB+C,GAAMc,KACrFC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAGxCkF,EAAApH,UAAA2H,0BAAA,SAA0BxE,GACxB,OAAOhD,KAAKsH,MAAM5B,KAAQ1F,KAAKgB,kBAAkBf,SAAQ,uBAAwB+C,GAAMc,KACrFC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAGxCkF,EAAApH,UAAA4H,yBAAA,SAAyBzE,GACvB,OAAOhD,KAAKsH,MAAM5B,KAAQ1F,KAAKgB,kBAAkBf,SAAQ,uBAAwB+C,GAAMc,KACrFC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAIxCkF,EAAApH,UAAA6H,+BAAA,SAA+BxG,EAA+ByG,EAAe3E,GAC3E,OAAOhD,KAAKsH,MAAM5B,KAAQ1F,KAAKgB,kBAAkBf,SAAQ,mBAAmBiB,EAAqB,SAASyG,EAAK,cAAe3E,GAAMc,KAClIC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAIxCkF,EAAApH,UAAA+H,0BAAA,SAA0BD,GAExB,OADI3H,KAAKyD,OAAOC,KAAK,uDAAwDiE,GACtE3H,KAAKsH,MAAMtB,UAAUhG,KAAKgB,kBAAkBf,SAAQ,SAAS0H,GAAS7D,KAC3EC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAGxCkF,EAAApH,UAAAgI,oBAAA,SAAoB7E,EAA8B8E,GAChD,OAAO9H,KAAKsH,MAAM5B,KAAQ1F,KAAKgB,kBAAkBf,SAAQ,mBAAmB6H,EAAe,iBAAkB9E,GAAMc,KACjHC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAIxCkF,EAAApH,UAAAkI,2BAAA,SAA2B/E,EAA4B8E,GACrD,OAAO9H,KAAKsH,MAAM5B,KAAQ1F,KAAKgB,kBAAkBf,SAAQ,mBAAmB6H,EAAe,2BAA4B9E,GAAMc,KAC3HC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAGxCkF,EAAApH,UAAAmI,uBAAA,SAAuBC,EAAoBC,EAAmBC,GACtDxC,EAAS3F,KAAKgB,kBAAkBf,SAAQ,0BAA0BiI,EAAS,YAAYC,EAAO,gBAAgBF,EACpH,OAAOjI,KAAKsH,MAAM1D,IAAI+B,EAAK,CAAE9B,iBAAiB,IAAQC,KAAMC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAElGkF,EAAApH,UAAAuI,aAAA,WACE,OAAOpI,KAAKsH,MAAM1D,IAAI,wCAAyC,CAAEC,iBAAiB,IAAQC,KAAMC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAEtIkF,EAAApH,UAAAwI,UAAA,WACE,OAAOrI,KAAKsH,MAAM1D,IAAI,2CAA4C,CAAEC,iBAAiB,IAAQC,KAAMC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAEzIkF,EAAApH,UAAAyI,gBAAA,SAAgBC,GACR5C,EAAS3F,KAAKgB,kBAAkBf,SAAQ,iCAAiCsI,EAC/E,OAAOvI,KAAKsH,MAAM1D,IAAI+B,EAAK,CAAE9B,iBAAiB,IAAQC,KAAMC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAGlGkF,EAAApH,UAAA2I,cAAA,SAAcC,GACZzI,KAAK0I,WAAWrD,KAAKsD,OAAOC,OAAO,GAAIH,KAEzCxB,EAAApH,UAAAgJ,cAAA,WACE,OAAO7I,KAAK0I,YAIdzB,EAAApH,UAAAiJ,kBAAA,SAAkB9F,GAChB,OAAOhD,KAAKsH,MAAM5B,KAAQ1F,KAAKgB,kBAAkBf,SAAQ,sBAAuB+C,GAAMc,KACpFC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAKxCkF,EAAApH,UAAAkJ,oCAAA,SAAoC7H,EAA+ByG,EAAe3E,GAChF,OAAOhD,KAAKsH,MAAM5B,KAAQ1F,KAAKgB,kBAAkBf,SAAQ,mBAAmBiB,EAAqB,SAASyG,EAAK,mBAAoB3E,GAAMc,KACvIC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAIxCkF,EAAApH,UAAAmJ,yBAAA,SAAyBhG,GACvB,OAAOhD,KAAKsH,MAAM5B,KAAQ1F,KAAKgB,kBAAkBf,SAAQ,0BAA2B+C,GAAMc,KACxFC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,e,oBAjIzCpB,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,W,yCA1BLoD,EAAAA,Y,MAKAwB,G,MAGAvC,G,MAFApB,G,MAFDlC,K,8KA6BN,SAAAqH,EAAoBtD,EACA2D,EACA7D,EACAO,EACAhD,GAJAhB,KAAA2D,KAAAA,EACA3D,KAAAsH,MAAAA,EACAtH,KAAAyD,OAAAA,EACAzD,KAAAgE,oBAAAA,EACAhE,KAAAgB,kBAAAA,EARZhB,KAAA0I,WAAU,IAA+CO,EAAAA,gBAAgB,IC9BnF,IAAAC,GA6BEA,EAAArJ,UAAA2I,cAAA,SAAcC,GACZzI,KAAK0I,WAAWrD,KAAKsD,OAAOC,OAAO,GAAIH,KAEzCS,EAAArJ,UAAAgJ,cAAA,WACE,OAAO7I,KAAK0I,YAGdQ,EAAArJ,UAAAsJ,cAAA,SAAcC,GACZpJ,KAAKqJ,WAAWhE,KAAKsD,OAAOC,OAAO,GAAIQ,KAEzCF,EAAArJ,UAAAyJ,cAAA,WACE,OAAOtJ,KAAKqJ,YAGdH,EAAArJ,UAAA0J,YAAA,SAAYC,GACVxJ,KAAKwJ,SAASnE,KAAKmE,IAErBN,EAAArJ,UAAA4J,YAAA,WACE,OAAOzJ,KAAKwJ,UAGdN,EAAArJ,UAAA6J,iBAAA,SAAiBnG,GACfvD,KAAKuD,cAAc8B,KAAK9B,IAE1B2F,EAAArJ,UAAA8J,iBAAA,WACE,OAAO3J,KAAKuD,eAGd2F,EAAArJ,UAAA+J,aAAA,SAAaC,GACX7J,KAAK6J,UAAUxE,KAAKwE,IAEtBX,EAAArJ,UAAAiK,aAAA,WACE,OAAO9J,KAAK6J,WAGdX,EAAArJ,UAAAkK,4BAAA,SAA4BC,GAC1BhK,KAAKgK,yBAAyB3E,KAAK2E,IAErCd,EAAArJ,UAAAoK,6BAAA,WACE,OAAOjK,KAAKgK,0BAGdd,EAAArJ,UAAAqK,cAAA,SAAcC,GACZnK,KAAKmK,WAAW9E,KAAK8E,IAEvBjB,EAAArJ,UAAAuK,sBAAA,WACE,OAAOpK,KAAKmK,YAGdjB,EAAArJ,UAAAwK,kBAAA,SAAkBC,GAChBtK,KAAKsK,eAAejF,KAAKiF,IAE3BpB,EAAArJ,UAAA0K,uBAAA,WACE,OAAOvK,KAAKsK,gBAGdpB,EAAArJ,UAAA2K,mBAAA,SAAmBC,GACjBzK,KAAK0K,gBAAgBrF,KAAKsD,OAAOC,OAAO,GAAI6B,KAE9CvB,EAAArJ,UAAA8K,mBAAA,WACE,OAAO3K,KAAK0K,iB,oBAnFf/J,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,W,4IAoBZ,SAAAqI,IAjBQlJ,KAAA0I,WAAoD,IAAIO,EAAAA,gBAAsC,MAC9FjJ,KAAAqJ,WAA2C,IAAIJ,EAAAA,gBAA6B,MAC5EjJ,KAAAwJ,SAAW,IAAIP,EAAAA,gBAAgB,IACvCjJ,KAAA4K,YAAc5K,KAAKwJ,SAASqB,eACpB7K,KAAA6J,UAAY,IAAIZ,EAAAA,gBAAyB,MACjDjJ,KAAA8K,YAAc9K,KAAK6J,UAAUgB,eACrB7K,KAAAuD,cAAgB,IAAI0F,EAAAA,gBAAgB,IAC5CjJ,KAAA+K,0BAA4B/K,KAAKuD,cAAcsH,eACvC7K,KAAAgK,yBAA2B,IAAIf,EAAAA,gBAAyB,MAChEjJ,KAAAgL,4BAA8BhL,KAAKgK,yBAAyBa,eACpD7K,KAAAmK,WAAa,IAAIlB,EAAAA,gBAAgB,IACzCjJ,KAAAiL,cAAgBjL,KAAKmK,WAAWU,eACxB7K,KAAAsK,eAAiB,IAAIrB,EAAAA,gBAAgB,IAC7CjJ,KAAAkL,kBAAoBlL,KAAKsK,eAAeO,eAEhC7K,KAAA0K,gBAAiD,IAAIzB,EAAAA,gBAA8B,M,ICjB7FkC,GA4CEA,EAAAtL,UAAAkB,SAAA,WAAA,IAAAoD,EAAAnE,KACEA,KAAKuD,cAAgBvD,KAAKqE,oBAAoBC,gBAC9CtE,KAAKoL,eAAiBpL,KAAKqE,oBAAoBgH,gBAC/CrL,KAAKsL,UAAYtL,KAAKqE,oBAAoBlD,WAC1CnB,KAAKuL,UAAYvL,KAAKqE,oBAAoBmH,UAC1CxL,KAAKyL,WAAa,cAClBzL,KAAK0L,mBAAmBtE,2BAA2BpH,KAAKqE,oBAAoBM,kBAAkBH,UAAS,SACrGmH,G,IACMC,EAAO,GACXD,EAAaC,KAAKtF,QAAO,SAACuF,GACxB1H,EAAK2H,mBAAoB,EAEzBH,EAAaI,WAAWzF,QAAO,SAAC0F,GAC1BA,EAAIC,WAAaJ,EAAIK,OACvB/H,EAAK2H,mBAAoB,EACzBD,EAAgB,WAAIG,EACpBJ,EAAKO,KAAKN,MAGT1H,EAAK2H,mBACRF,EAAKO,KAAKN,KAGdF,EAAaC,KAAOA,EACpBzH,EAAKwH,aAAeA,EAEpBxH,EAAKwH,aAAalH,SAAWN,EAAKwH,aAAalH,SAAS2H,OAAM,SAC3DC,GAAmB,OAAAA,EAA2B,UAAEC,SAASnI,EAAKE,oBAAoBM,oB,IAC/E4H,EAAoBpI,EAAKwH,aAAalH,SAAS,GAAG+H,mBACxDrI,EAAKsI,kBAA+C,EAA3BF,EAAkBnH,QAAyD,cAA3CmH,EAAkB,GAAGG,mBAAkE,IAA7BH,EAAkBnH,OACrIuH,QAAQC,IAAIzI,EAAKwH,aAAalH,SAAS,GAAK,MAC7C,SACAvC,GAAe,OAAAiC,EAAKlC,aAAeC,KAKxCyG,OAAAkE,eAAI1B,EAAAtL,UAAA,gBAAa,C,IAAjB,WACE,MAAgD,SAAzCG,KAAK2L,aAAalH,SAAS,GAAGqI,Q,gCAGvCnE,OAAAkE,eAAI1B,EAAAtL,UAAA,qBAAkB,C,IAAtB,WACE,MAAiD,cAA1CG,KAAK2L,aAAalH,SAAS,GAAGsI,S,gCAGhC5B,EAAAtL,UAAAmN,gBAAP,WACEhN,KAAKqE,oBAAoB9C,SAAW,gBAGtC4J,EAAAtL,UAAAoN,uBAAA,SAAuBC,GAAvB,IAAA/I,EAAAnE,KACEkN,EAAMC,iBACNnN,KAAKkJ,kBAAkBmB,kBAAkB,oBACzCrK,KAAKkJ,kBAAkBa,6BAA4B,GACnD/J,KAAKqE,oBAAoB9C,SAAW,oBACpCvB,KAAK0L,mBAAmBtD,eAAe5D,UAAS,SAC9C4I,GACMC,EAAS9K,KAAKC,MAAM4K,GAAUhB,OAAM,SAACkB,GAAW,MArGrC,0BAqGqCA,EAAQC,MAC5DpJ,EAAKE,oBAAoBmJ,aAAaH,EAAO,IAAKA,EAAO,GAAGI,QAC7D,SACDzL,GACEmC,EAAKE,oBAAoBmJ,YAAa,KAK5CrC,EAAAtL,UAAA6N,aAAA,SAAa7B,GAAb,IAAA1H,EAAAnE,KACKA,KAAK2N,mBAAmB9B,EAAIK,QAC/BlM,KAAK2H,MAAQkE,EACb7L,KAAK0L,mBAAmBtE,2BAA2BpH,KAAK2L,aAAalH,SAAS,GAAGmJ,WAAWpJ,UAAS,SACnGmH,GACExH,EAAKwH,aAAeA,EAEpBxH,EAAKwH,aAAalH,SAAWN,EAAKwH,aAAalH,SAAS2H,OAAM,SAC3DC,GAAmB,OAAAA,EAA2B,UAAEC,SAASnI,EAAKE,oBAAoBM,oBACrFR,EAAK0J,QAAU1J,EAAKwH,aAAalH,SAAS,GAC1CN,EAAKE,oBAAoByJ,yBAA0B,EACnD3J,EAAKsH,WAAa,eAClBtH,EAAK4J,mBAAoB,EACzB5J,EAAK6J,GAAGC,iBACT,SACA/L,GAAe,OAAAiC,EAAKlC,aAAeC,MAKxCiJ,EAAAtL,UAAAqO,sBAAA,SAAsBL,EAAmBM,EAAwBvC,GAAjE,IAAAzH,EAAAnE,KACEA,KAAKoO,kCACLpO,KAAK6N,QAAUA,EACf7N,KAAK0L,mBAAmBtE,2BAA2BpH,KAAK6N,QAAQD,WAAWpJ,UAAS,SAClFmH,GACExH,EAAKwH,aAAeA,EAEpBxH,EAAKwH,aAAalH,SAAWN,EAAKwH,aAAalH,SAAS2H,OAAM,SAC3DC,GAAmB,OAAAA,EAA2B,UAAEC,SAASnI,EAAK0J,QAAQD,aACzEzJ,EAAK0J,QAAU1J,EAAKwH,aAAalH,SAAS,GAC1CN,EAAK4H,WAAaoC,EAClBhK,EAAKkK,gBAAkBzC,EAAKQ,OAAM,SAACkC,GAAM,OAAAA,EAAKpC,OAAS/H,EAAK4H,WAAqB,WAAG,GAAGwC,WACvFpK,EAAKsH,WAAa,yBAGnB,SACAvJ,GAAe,OAAAiC,EAAKlC,aAAeC,MAKxCiJ,EAAAtL,UAAAuO,8BAAA,WAAA,IAAAjK,EAAAnE,KAME,OALAA,KAAK2L,aAAalH,SAAS6B,QAAO,SAACuH,GACc,uBAAvCA,EAAQf,OAAO0B,qBAAuF,YAAvCX,EAAQxL,OAAOmM,qBAAqCrK,EAAKsK,6BAA6BZ,KACvJ1J,EAAKuK,4BAA6B,OAGtC1O,KAAK0O,4BAOXvD,EAAAtL,UAAA8O,YAAA,SAAYC,GACP5O,KAAK6O,wBAAwBD,EAAWnK,SAAS,MACpDzE,KAAK2L,aAAeiD,EACpB5O,KAAKyL,WAAa,cAClBzL,KAAK+N,mBAAoB,IAI3B5C,EAAAtL,UAAAiP,sBAAA,SAAsBC,EAAiBhD,G,QACrC,GAAIA,GAAkC,EAApBA,EAAW3G,O,IAC3B,IAAwB,IAAA4J,EAAAC,EAAAlD,GAAUmD,EAAAF,EAAA3J,QAAA6J,EAAA3J,KAAA2J,EAAAF,EAAA3J,OAAE,CAA/B,IAAM8I,EAASe,EAAA5J,MAClB,GAAI6I,EAAUlC,WAAa8C,EACzB,OAAOZ,G,oGAKb,OAAO,MAGThD,EAAAtL,UAAAgP,wBAAA,SAAwBhB,GAKtB,OAJI7N,KAAKmP,mCAAqCnP,KAAKyO,6BAA6BZ,IAC3D,uBAAnBA,EAAQf,QAA0E,YAAvCe,EAAQxL,OAAOmM,sBAC1DxO,KAAKoP,wBAAyB,KAE5BpP,KAAKoP,wBAOXjE,EAAAtL,UAAAwP,iBAAA,W,IACMxB,EAAU7N,KAAK2L,aAAalH,SAAS,GACzC,QAA2C,uBAAvCoJ,EAAQf,OAAO0B,sBAAgDxO,KAAKyO,6BAA6BZ,KAMvG1C,EAAAtL,UAAA8N,mBAAA,SAAmBoB,G,QACjB,GAAI/O,KAAKqP,oBAAsBrP,KAAKmP,mCAAqCnP,KAAKyO,6BAA6BzO,KAAK2L,aAAalH,SAAS,IAAK,CACzI,GAAIzE,KAAK2L,aAAaI,YAAoD,EAAtC/L,KAAK2L,aAAaI,WAAW3G,OAAY,C,IAC3E,IAAwB,IAAAkK,EAAAL,EAAAjP,KAAK2L,aAAaI,YAAUwD,EAAAD,EAAAjK,QAAAkK,EAAAhK,KAAAgK,EAAAD,EAAAjK,OAClD,GADkBkK,EAAAjK,MACJ2G,WAAa8C,EACzB,OAAO,E,oGAGX,OAAO,EAET,OAAO,EAGP,OAAO,G,oBArNZvN,EAAAA,UAASZ,KAAA,CAAC,CACTa,SAAU,qBACVC,SAAA,uoe,ubAZOuF,G,MACAnG,G,MAMA0O,EAAAA,mB,MACAtG,K,mCAQNvH,EAAAA,Q,qBACAA,EAAAA,Q,gBACAA,EAAAA,Q,sBACAA,EAAAA,Q,sBACAA,EAAAA,Q,gBACAA,EAAAA,Q,mBACAA,EAAAA,Q,0BACAA,EAAAA,Q,eACAA,EAAAA,Q,yBACAA,EAAAA,MAAKf,KAAA,CAAC,wBAqNTuK,GAjME,SAAAA,EAAoBO,EACVrH,EACA2J,EACA9E,GAHV,IAAA/E,EAAAnE,KAAoBA,KAAA0L,mBAAAA,EACV1L,KAAAqE,oBAAAA,EACArE,KAAAgO,GAAAA,EACAhO,KAAAkJ,kBAAAA,EAZVlJ,KAAA+N,mBAA6B,EAE7B/N,KAAAyP,oBAA8B,EAC9BzP,KAAAoP,wBAAkC,EAClCpP,KAAA0P,2BAA6B,CAAC,2BAA4B,mBAC1D1P,KAAA+L,WAA2B,GA0L3B/L,KAAAmP,gCAA+B,WAC7B,OAAOhL,EAAKuL,2BAA2BC,KAAI,SAACC,GAC1C,OAA0C,IAA1CzL,EAAK0L,kBAAkBC,QAAQF,MAInC5P,KAAAyO,6BAA4B,SAAIZ,G,IAC1BkC,EAAa,IAAIC,KAErB,OADAD,EAAWE,QAAQF,EAAWG,UAAY,GACnCH,GAAc,IAAIC,KAAKnC,EAAQsC,eC7O1C,IAAAC,GA0BEA,EAAAvQ,UAAAwQ,iBAAA,WACI,OAAOrQ,KAAK2D,KAAKC,IAAyB5D,KAAKgB,kBAAkBP,iBAAgB,WAAY,CAC7FoD,iBAAiB,IAEhBC,KACCC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAI1CqO,EAAAvQ,UAAAyQ,uBAAA,WACE,OAAOtQ,KAAK2D,KAAKC,IAAY5D,KAAKgB,kBAAkBP,iBAAgB,qBAAsB,CACxFoD,iBAAiB,IAElBC,KACCC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAIxCqO,EAAAvQ,UAAA0Q,iBAAA,SAAiBC,GACf,OAAOxQ,KAAK2D,KAAKC,IAAY5D,KAAKgB,kBAAkBP,iBAAgB,IAAI+P,EAAe,WAAY,CACjG3M,iBAAiB,IAEhBC,KACCC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAI5CqO,EAAAvQ,UAAA4Q,mBAAA,SAAmBzN,EAAyBwN,EAAyBE,GAEnE,OAAO1Q,KAAKsH,MAAMrB,MAASjG,KAAKgB,kBAAkBP,iBAAgB,IAAI+P,EAAe,WAAWE,EAAkB1N,GACjHc,KACCC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAIxCqO,EAAAvQ,UAAA8Q,cAAA,SAAcC,EAAuBC,GACjC,OAAO7Q,KAAK2D,KAAKC,IAAsB5D,KAAKgB,kBAAkBP,iBAAgB,WAAWmQ,EAAY,kBAAkBC,EACvH,CACAhN,iBAAiB,IAEhBC,KACCC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAI1CqO,EAAAvQ,UAAAiR,uBAAA,SAAuBlD,GACrB,OAAO5N,KAAK2D,KAAKC,IAA6B5D,KAAKgB,kBAAkBP,iBAAgB,IAAImN,EAAS,kBAClG,CACA/J,iBAAiB,IAEhBC,KACCC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAIxCqO,EAAAvQ,UAAAkR,oBAAA,SAAoBxN,GAClB,OAAOvD,KAAK2D,KAAKC,IAAsB5D,KAAKgB,kBAAkBP,iBAAgB,kBAAkB8C,EAAiB,CACjHM,iBAAiB,IAEhBC,KACCC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAIxCqO,EAAAvQ,UAAAmR,eAAA,WACI,OAAOhR,KAAK2D,KAAKC,IAAY5D,KAAKgB,kBAAkBP,iBAAgB,oBAAqB,CACzFoD,iBAAiB,IAEhBC,KACCC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAI1CqO,EAAAvQ,UAAAoR,gBAAA,SAAgBjO,GACd,OAAOhD,KAAKsH,MAAM5B,KAAQ1F,KAAKgB,kBAAkBP,iBAAgB,UAAWuC,GAAMc,KAChFC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAIxCqO,EAAAvQ,UAAAqR,oBAAA,SAAoBlO,EAA8BmO,GAEhD,OAAOnR,KAAKsH,MAAMrB,MAASjG,KAAKgB,kBAAkBP,iBAAgB,aAAa0Q,EAAoBnO,GAAMc,KACvGC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAIxCqO,EAAAvQ,UAAAiG,WAAA,SAAWF,G,IACHM,EAAYlG,KAAKmG,KAAKC,OAAO,mBAC7BC,EAAU,GAchB,OAbIT,EAAQS,SACVT,EAAQS,QAAQC,QAAO,SAACC,GACtBF,EAAQE,GAAWX,EAAQS,QAAQzC,IAAI2C,KAG3CF,EAAQ,oBAAsB,iBACJ,OAAtBH,EAAUW,QACZR,EAAQ,cAAgBG,SAASC,OAAOhE,MAAM,KAAKiE,KAAI,SAACC,GAAO,OAAAA,EAAIC,WAAW,iBAAgBnE,MAAM,KAAK,GAEzG4D,EAAQ,cAAgBH,EAAUW,QAEpCjB,EAAQS,QAAU,IAAIS,EAAAA,YAAYT,GAClCT,EAAQmB,aAAe,OAChBnB,G,oBAlHRjF,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,W,yCAdNoD,EAAAA,Y,MAGCwB,G,MADD3D,G,MAEAlC,G,MAHCoH,EAAAA,Q,mLAiBP,SAAAoJ,EAAoBzM,EACV2D,EACUtD,EACAhD,EACAmF,GAJAnG,KAAA2D,KAAAA,EACV3D,KAAAsH,MAAAA,EACUtH,KAAAgE,oBAAAA,EACAhE,KAAAgB,kBAAAA,EACAhB,KAAAmG,KAAAA,ECvBtB,IAAAiL,GAgDEA,EAAAvR,UAAAkB,SAAA,WAAA,IAAAoD,EAAAnE,KACEA,KAAKyL,WAAa,gBAClBzL,KAAKoQ,eAAeG,iBAAiBvQ,KAAKwQ,iBAAiBhM,UAAS,SAClE6M,GACElN,EAAKkN,iBAAgB,GACtB,SACDrP,GACEmC,EAAKlC,aAAekC,EAAKmN,iBAAgB,EAAMtP,EAAIuP,WAAYvP,EAAIA,IAAKA,KAG5EhC,KAAKwR,kBAAoBxR,KAAKyR,YAAYC,MAAM,CAC9CC,kBAAmB,IAAIC,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CACxDD,EAAAA,WAAWE,YAEbC,wBAAyB,IAAIJ,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CAC9DD,EAAAA,WAAWE,YAEbE,gBAAiB,IAAIL,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CACtDD,EAAAA,WAAWE,SACXF,EAAAA,WAAWK,UAAU,GACrBL,EAAAA,WAAWM,UAAU,KACrBN,EAAAA,WAAWO,QAAQ,8BAGrBC,iBAAkB,IAAIT,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CACvDD,EAAAA,WAAWE,SACXF,EAAAA,WAAWM,UAAU,IACrBN,EAAAA,WAAWO,QAAQ,6BAKzBhB,EAAAvR,UAAAyS,mBAAA,SAAmBpG,GAAnB,IAAA/H,EAAAnE,KAEc,yBAATkM,GACDlM,KAAKuS,yBAA0B,EAC/BvS,KAAKwS,qBAAsB,EAC3BxS,KAAKyS,iBAAkB,EACvBzS,KAAK0S,gBAAiB,GAEJ,YAATxG,GACTlM,KAAKwS,qBAAsB,EAC3BxS,KAAKuS,yBAA0B,EAC/BvS,KAAKyS,iBAAkB,EACvBzS,KAAK0S,gBAAiB,GAEJ,WAATxG,GACTlM,KAAKyS,iBAAkB,EACvBzS,KAAKwS,qBAAsB,EAC3BxS,KAAK0S,gBAAiB,EACtB1S,KAAKoQ,eAAeE,yBAAyB9L,UAAS,SACpDmO,GACExO,EAAKwO,uBAAsB,GAC5B,SACD3Q,GACEmC,EAAKlC,aAAekC,EAAKmN,iBAAgB,EAAMtP,EAAIuP,WAAYvP,EAAIA,IAAKA,MAG1D,UAATkK,EACTlM,KAAK0S,gBAAiB,EACJ,UAATxG,IACTlM,KAAK0S,gBAAiB,IAG1BtB,EAAAvR,UAAA+S,oBAAA,WAAA,IACMC,EACAxQ,EAFN8B,EAAAnE,KAGEA,KAAK8S,UAAU,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAQ,O,IACnEC,EAAW/S,KAAKwR,kBAAkBuB,SAClCC,EAAmBD,EAASd,gBAAgBgB,OAE9CjT,KAAKwR,kBAAkB0B,OAASH,EAASpB,kBAAkBwB,QACrB,WAApCJ,EAASpB,kBAAkBrM,OACS,UAApCyN,EAASpB,kBAAkBrM,OAAqByN,EAASf,wBAAwBmB,OAAmD,SAA1CJ,EAASf,wBAAwB1M,OACvF,UAApCyN,EAASpB,kBAAkBrM,OAA+D,SAA1CyN,EAASf,wBAAwB1M,OAAoByN,EAASV,iBAAiBc,OAC3F,wBAApCJ,EAASpB,kBAAkBrM,OAAmCyN,EAASd,gBAAgBkB,QAClD,YAArCJ,EAASpB,kBAAkBrM,OAC7BjD,EAAS,UACTwQ,EAAuB,CACrB3G,KAAK,GACLkH,OAAQ,KAEoC,WAArCL,EAASpB,kBAAkBrM,OACpCjD,EAAS,SAETwQ,EAAuB,CACrB3G,KAAM6G,EAASf,wBAAwB1M,OAAiD,GACxF8N,OAAkD,SAA1CL,EAASf,wBAAwB1M,MAAmByN,EAASV,iBAAiB/M,MAAQ,KAElD,yBAArCyN,EAASpB,kBAAkBrM,QACpCjD,EAAS,WAETwQ,EAAuB,CACrB3G,KAAM,GACNkH,OAAQL,EAASd,gBAAgB3M,QAGrCtF,KAAKoQ,eAAeK,mBAAmBoC,EAAsB7S,KAAKwQ,gBAAiBnO,GAAQmC,UAAS,SAClG6O,GACElP,EAAKmP,qBAAsB,EAC3BnP,EAAKoP,WAAahR,KAAKiR,UAAUH,GAAU/Q,QAAQ,IAAK,IAAIA,QAAQ,IAAK,IAAIA,QAAQ,GAAG,KACzF,SACDN,GACEmC,EAAKlC,aAAekC,EAAKmN,iBAAgB,EAAMtP,EAAIuP,WAAYvP,EAAIA,IAAKA,OAIrC,IAApC+Q,EAASpB,kBAAkBrM,OAC5BtF,KAAK8S,UAAU,EAAC,GAAM,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAQ,UAEnC,UAApCC,EAASpB,kBAAkBrM,OAA+D,IAA1CyN,EAASf,wBAAwB1M,OAClFtF,KAAK8S,UAAU,EAAC,GAAO,GAAM,GAAO,GAAO,GAAO,GAAO,GAAO,GAAQ,gBAEnC,wBAApCC,EAASpB,kBAAkBrM,QACS,IAAlCyN,EAASd,gBAAgB3M,OAC1BtF,KAAK8S,UAAU,EAAC,GAAO,GAAO,GAAM,GAAO,GAAO,GAAO,GAAO,GAAQ,cAErC,IAAlCC,EAASd,gBAAgB3M,OAAeyN,EAASd,gBAAgBwB,SAClEzT,KAAK8S,UAAU,EAAC,GAAO,GAAO,GAAO,GAAM,GAAO,GAAO,GAAO,GAAQ,cAEvEE,GAAoBA,EAAiBU,WAAaV,EAAiBU,UAAUC,aAAe,GAC7F3T,KAAK8S,UAAU,EAAC,GAAO,GAAO,GAAO,GAAO,GAAM,GAAO,GAAO,GAAQ,cAEvEE,GAAoBA,EAAiBY,WAAuD,IAA1CZ,EAAiBY,UAAUD,cAC9E3T,KAAK8S,UAAU,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,GAAM,GAAO,GAAQ,eAGrC,UAApCC,EAASpB,kBAAkBrM,OAA+D,SAA1CyN,EAASf,wBAAwB1M,QAC3C,KAApCyN,EAASV,iBAAiB/M,OAC3BtF,KAAK8S,UAAU,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAM,GAAQ,eAEpC,KAAnCC,EAASV,iBAAiB/M,OAAeyN,EAASV,iBAAiBoB,SACpEzT,KAAK8S,UAAU,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,kBAMhF1B,EAAAvR,UAAAyR,gBAAA,SAAgBxO,EAAcT,EAAQwR,EAAU7R,G,IAC1C8R,EAAU,yBASd,MAAO,CACL/Q,MAAO,uBACPC,KARE8Q,EAFW,MAAXzR,EACEwR,IAAalR,UACLkR,EAEA7R,EAMN8R,EACN7Q,UAAWH,IAGfsO,EAAAvR,UAAAkU,mBAAA,WAAA,IAAA5P,EAAAnE,KACEA,KAAKkJ,kBAAkBqB,yBAAyB/F,UAAS,SAAE8J,GAAS,OAAAnK,EAAK6P,eAAiB1F,IAC9D,qBAAxBtO,KAAKgU,eACPC,OAAOC,SAASC,KAAK,iDAErBnU,KAAKqE,oBAAoB9C,SAAW,eAGzC6P,EAAAvR,UAAAuU,yBAAA,WAC2C,wBAAtCpU,KAAKqE,oBAAoBpE,SAC3BgU,OAAOC,SAASC,KAAK,iDAGrBnU,KAAK+T,sBA6BP3C,EAAAvR,UAAAiT,UAAA,SAAUuB,EAAMC,GACH,WAARA,GAA4B,QAARA,IACrBtU,KAAKuU,sBAAwBF,EAAK,IAEzB,iBAARC,GAAkC,QAARA,IAC3BtU,KAAKwU,2BAA6BH,EAAK,IAE9B,eAARC,GAAgC,QAARA,IACzBtU,KAAKyU,mBAAqBJ,EAAK,GAC/BrU,KAAK0U,qBAAuBL,EAAK,GACjCrU,KAAK2U,uBAAyBN,EAAK,GACnCrU,KAAK4U,uBAAyBP,EAAK,IAE1B,gBAARC,GAAiC,QAARA,IAC1BtU,KAAK6U,cAAgBR,EAAK,GAC1BrU,KAAK8U,gBAAkBT,EAAK,K,oBA1PjC7S,EAAAA,UAASZ,KAAA,CAAC,CACTa,SAAU,uBACVC,SAAA,y1R,04BATM0O,G,MADC2E,EAAAA,a,MAKA7L,G,MACApI,K,yCAQNa,EAAAA,Q,wBACAA,EAAAA,SAsPHyP,GA5NE,SAAAA,EAAoBhB,EACAqB,EACAvI,EACA7E,GAHArE,KAAAoQ,eAAAA,EACApQ,KAAAyR,YAAAA,EACAzR,KAAAkJ,kBAAAA,EACAlJ,KAAAqE,oBAAAA,EAzBpBrE,KAAAiC,aAAgBjC,KAAKsR,iBAAgB,EAAO,GAAI,GAAI,IACpDtR,KAAAgV,WAAqB,KAErBhV,KAAAqR,iBAAoC,GACpCrR,KAAA2S,uBAAgD,GAChD3S,KAAAwS,qBAA+B,EAC/BxS,KAAAyS,iBAA2B,EAC3BzS,KAAA0S,gBAA0B,EAC1B1S,KAAAsT,qBAA+B,EAE/BtT,KAAAuU,uBAAiC,EACjCvU,KAAAwU,4BAAsC,EACtCxU,KAAAyU,oBAA8B,EAC9BzU,KAAA0U,sBAAgC,EAChC1U,KAAA2U,wBAAkC,EAClC3U,KAAA4U,wBAAkC,EAClC5U,KAAA6U,eAAyB,EACzB7U,KAAA8U,iBAA2B,EAC3B9U,KAAAuT,WAAqB,KAGrBvT,KAAAuS,yBAAmC,ECzCrC,IAAA0C,GA6BEA,EAAApV,UAAAkB,SAAA,WAAA,IAAAoD,EAAAnE,KAWEA,KAAKkV,QAAUlV,KAAK6P,kBAGjB7P,KAAK6P,kBAAkBF,KAAI,SAACzK,GAAI,OAAAA,EAAEoH,SAAS,8BAE5CtM,KAAKmV,cAAe,GAEpBnV,KAAKoV,uBAAwB,EAC7BpV,KAAKmV,cAAe,GAItBnV,KAAKqV,oBAAsB,yBAC3BrV,KAAKsV,oBAAsB,iCAQzBtV,KAAKmV,cACPnV,KAAKuV,cAAc5E,cAAc3Q,KAAKwV,gBAAe,GAAMhR,UAAS,SAClE4E,GACEjF,EAAKsR,oBAAsBrM,EAAwB,YACnDjF,EAAKiR,uBAAwB,IAQjCpV,KAAKuV,cAAc5E,cAAc3Q,KAAK0V,cAAa,GAAOlR,UAAS,SACjE4E,GACEjF,EAAKwR,mBAAqBvM,EAAwB,YAClDjF,EAAKyR,sBAAuB,K,oBAxEnCpU,EAAAA,UAASZ,KAAA,CAAC,CACTa,SAAU,oBACVC,SAAA,w8C,qMALO0O,K,gCASNzO,EAAAA,MAAKf,KAAA,CAAC,Y,yBACNe,EAAAA,MAAKf,KAAA,CAAC,uB,yBACNe,EAAAA,MAAKf,KAAA,CAAC,wBAoFTqU,GAlFE,SAAAA,EAAoBM,GAAAvV,KAAAuV,cAAAA,EAKpBvV,KAAAyV,oBAAqC,GACrCzV,KAAA2V,mBAAoC,GACpC3V,KAAAwV,eAAiB,oBACjBxV,KAAA0V,aAAe,YACf1V,KAAAiC,aAAe,KAIfjC,KAAAmV,cAAwB,EC3B1B,IAAAU,GAqBEA,EAAAhW,UAAAiW,eAAA,SAAenR,GAGb,OAFA3E,KAAKyD,OAAOC,KAAK,2CAA4CiB,GAEtD3E,KAAK2D,KAAKC,IAAqB5D,KAAKgB,kBAAkBf,SAAQ,kBAAkB0E,EAAgB,WAAY,CAC/Gd,iBAAiB,IAElBC,KACCC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,e,oBAjB3CpB,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,W,yCAXNoD,EAAAA,Y,MAOCf,G,MADApB,G,MAFDlC,K,kKAWN,SAAAiW,EAAoBlS,EACAF,EACAO,EACAhD,GAHAhB,KAAA2D,KAAAA,EACA3D,KAAAyD,OAAAA,EACAzD,KAAAgE,oBAAAA,EACAhE,KAAAgB,kBAAAA,ECnBtB,IAAA+U,GAmBEA,EAAAlW,UAAAkB,SAAA,WAAA,IAAAoD,EAAAnE,KACEA,KAAKgW,mBAAmBF,eAAe9V,KAAKqE,oBAAoBM,kBAAkBH,UAAS,SACzFyR,GAAe,OAAA9R,EAAK8R,YAAcA,GAAW,SAC5C/T,GAAe,OAAAiC,EAAKlC,aAAY,KAIrC0G,OAAAkE,eAAIkJ,EAAAlW,UAAA,sBAAmB,C,IAAvB,WACE,OAAOG,KAAK2E,kB,oDAtBfnD,EAAAA,UAASZ,KAAA,CAAC,CACTa,SAAU,qBACVC,SAAA,+iB,+EANOmU,G,MAEA/U,KA2BTiV,GAdE,SAAAA,EAAoBC,EACA3R,GADArE,KAAAgW,mBAAAA,EACAhW,KAAAqE,oBAAAA,EANpBrE,KAAAkW,UAAoB,eCXtB,IAAAC,G,oBAEC3U,EAAAA,UAASZ,KAAA,CAAC,CACPc,SAAU,sEAIuByU,GALrC,SAAAA,KCFA,IAAAC,GAoBEA,EAAAvW,UAAAwW,8BAAA,SAA8B1R,EAA0BnB,GAGtD,OAFAxD,KAAKyD,OAAOC,KAAK,6DAA8DiB,GAExE3E,KAAK2D,KAAKC,IAAwC,SAAlBJ,GAA8C,SAAlBA,GAA8C,WAAlBA,GAAgD,iBAAlBA,EACpHxD,KAAKgB,kBAAkBf,SAAQ,kBAAkB0E,EAAgB,YACjE3E,KAAKgB,kBAAkBf,SAAQ,4BAA4B0E,EAAgB,YAAa,CAC7Fd,iBAAiB,IAElBC,KACCC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,e,oBAnB3CpB,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,W,yCATLoD,EAAAA,Y,MAKAf,G,MAFApB,G,MAJAlC,K,kKAcP,SAAAwW,EAAoBzS,EACAF,EACAO,EACAhD,GAHAhB,KAAA2D,KAAAA,EACA3D,KAAAyD,OAAAA,EACAzD,KAAAgE,oBAAAA,EACAhE,KAAAgB,kBAAAA,EClBtB,IAAAsV,GAmBEA,GAAAzW,UAAAkB,SAAA,WAAA,IAAAoD,EAAAnE,KACEA,KAAKuW,qBAAqBF,8BAA8BrW,KAAKqE,oBAAoBM,iBAAkB3E,KAAKqE,oBAAoBb,eAAegB,UAAS,SAClJgS,GAAY,OAAArS,EAAKqS,SAAWA,GAAQ,SACnCtU,GAAe,OAAAiC,EAAKlC,aAAoBC,EAAMI,QAAQ,KAAK,O,qBAjBjEd,EAAAA,UAASZ,KAAA,CAAC,CACTa,SAAU,yBACVC,SAAA,o+B,0DALO0U,G,MACAtV,K,wCAQNa,EAAAA,SAeH2U,IAVE,SAAAA,GAAoBC,EACAlS,GADArE,KAAAuW,qBAAAA,EACAvW,KAAAqE,oBAAAA,EALpBrE,KAAAkW,UAAoB,yBCZtB,IAAAO,IAaEA,GAAA5W,UAAAkB,SAAA,a,qBAVDS,EAAAA,UAASZ,KAAA,CAAC,CACTa,SAAU,oBACVC,SAAA,+xB,kKAICC,EAAAA,SAOH8U,IALE,SAAAA,M,ICNIC,GAAI,WAAc,OAAA/T,W,IAOtBgG,OAAAkE,eAAI8J,GAAA9W,UAAA,OAAI,C,IAAR,WAII,OAAO6W,I,gCAIX/N,OAAAkE,eAAI8J,GAAA9W,UAAA,OAAI,C,IAAR,WAII,OAAO6W,I,gCAIX/N,OAAAkE,eAAI8J,GAAA9W,UAAA,QAAK,C,IAAT,WAII,OAAO6W,I,gCAIXC,GAAA9W,UAAAsD,oBAAA,SAAoBC,EAAcxC,IACR,QAAUwC,IAASuJ,QAAQC,KAAO8J,IACpDE,MAAMjK,QAAS,CAAC/L,K,qBA/BzBD,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,W,0GADd,SAAA8V,MCPA,IAAAE,IAoBEA,GAAAhX,UAAAiX,iBAAA,SAAiBvT,GAGf,OAFAvD,KAAKyD,OAAOC,KAAK,mDAAoDH,GAE9DvD,KAAK2D,KAAKC,IAAwB5D,KAAKgB,kBAAkBf,SAAQ,UAAUsD,EAAa,iBAAkB,CAC/GM,iBAAiB,IAEhBC,KACCC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,e,qBAlB3CpB,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,W,0CATNoD,EAAAA,Y,MACAf,G,MACApB,G,MACAlC,K,sKAUN,SAAAiX,GAAoBlT,EACAF,EACAO,EACAhD,GAHAhB,KAAA2D,KAAAA,EACA3D,KAAAyD,OAAAA,EACAzD,KAAAgE,oBAAAA,EACAhE,KAAAgB,kBAAAA,ECjBtB,IAAA+V,IAuBEA,GAAAlX,UAAAmX,mBAAA,SAAmBzT,GACf,OAAOvD,KAAK2D,KAAKC,IAAoB5D,KAAKgB,kBAAkBX,kBAAiB,UAAUkD,EAAiB,CACxGM,iBAAiB,IAEhBC,KACCC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAG1CgV,GAAAlX,UAAAoX,mBAAA,SAAmBC,GACjB,OAAOlX,KAAK2D,KAAKC,IAAoB5D,KAAKgB,kBAAkBX,kBAAiB,kCAAkC6W,EAAO,CACpHrT,iBAAiB,IAEhBC,KACCC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAG1CgV,GAAAlX,UAAAsX,sBAAA,SAAsBnU,EAA8BoU,GAClD,OAAOpX,KAAKsH,MAAM5B,KAAQ1F,KAAKgB,kBAAkBf,SAAQ,mBAAmBmX,EAAU,sBAAuBpU,GAAMc,KACjHC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAGxCgV,GAAAlX,UAAAwX,uBAAA,SAAuBrU,EAA8B8E,GACnD,OAAO9H,KAAKsH,MAAM5B,KAAQ1F,KAAKgB,kBAAkBf,SAAQ,mBAAmB6H,EAAe,gCAAiC9E,GAAMc,KAChIC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAGxCgV,GAAAlX,UAAAyX,oBAAA,SAAoBtU,GAClB,OAAOhD,KAAKsH,MAAM5B,KAAQ1F,KAAKgB,kBAAkBf,SAAQ,+CAAgD+C,GAAMc,KAC7GC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAGxCgV,GAAAlX,UAAA0X,oBAAA,SAAoBjM,EAAmBjJ,GACrC,OAAOrC,KAAKsH,MAAMrB,MAASjG,KAAKgB,kBAAkBf,SAAQ,uBAAuBqL,EAAS,WAAWjJ,EAAUA,GAAQyB,KACrHC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,eAGxCgV,GAAAlX,UAAA2X,2BAAA,SAA2B7L,G,IACrB8L,EAAY,EACfC,EAAgB,EAChBC,EAAkB,EAqBnB,OAnBIhM,EAAaC,MACfD,EAAaC,KAAKtF,QAAO,SAACuF,GACxB4L,GAAwB5L,EAAI+L,oBAI5BjM,EAAalH,UACfkH,EAAalH,SAAS6B,QAAO,SAACuH,GACS,YAAjCA,EAAQxL,OAAOwV,gBACjBH,GAAgC7J,EAAQiK,UAK1CnM,EAAaI,YACfJ,EAAaI,WAAWzF,QAAO,SAAC6H,GAC9BwJ,GAAoCxJ,EAAU4J,aAG1CN,EAAYE,EAAmBD,GAGzCX,GAAAlX,UAAAmY,qBAAA,SAAqBC,EAAeC,GAElC,OAAOD,EAAM3V,QADG,SACc4V,IAGhCnB,GAAAlX,UAAAmI,uBAAA,SAAuBC,EAAoBC,EAAmBC,GAC5D,OAAOnI,KAAKsH,MAAM1D,IAAO5D,KAAKgB,kBAAkBX,kBAAiB,0BAA0B6H,EAAS,YAAYC,EAAO,gBAAgBF,EAAc,CACnJpE,iBAAiB,IAEhBC,KACCC,EAAAA,WAAW/D,KAAKgE,oBAAoBjC,e,qBApF3CpB,EAAAA,WAAUC,KAAA,CAAC,CACVC,WAAY,W,0CAZNoD,EAAAA,Y,MAECwB,G,MADD3D,G,MAEAlC,K,sKAaN,SAAAmX,GAAoBpT,EACV2D,EACUtD,EACAhD,GAHAhB,KAAA2D,KAAAA,EACV3D,KAAAsH,MAAAA,EACUtH,KAAAgE,oBAAAA,EACAhE,KAAAgB,kBAAAA,E,QCoFpBmX,GAAAtY,UAAAkB,SAAA,WAAA,IAAAoD,EAAAnE,KACEA,KAAKgU,eAAkB,GAC4B,OAAhDhU,KAAKkJ,kBAAkByB,sBACxB3K,KAAKkJ,kBAAkByB,qBAAqBnG,UAAS,SAAE8J,GAAS,OAAAnK,EAAKiU,YAAc9J,IAE9B,OAApDtO,KAAKkJ,kBAAkBqB,0BACxBvK,KAAKkJ,kBAAkBqB,yBAAyB/F,UAAS,SAAE8J,GAAS,OAAAnK,EAAK6P,eAAiB1F,IAIxFtO,KAAKoY,cAAgBzV,WAAkC,OAArB3C,KAAKoY,aAAwBpY,KAAKoY,YAAYC,0BAA4B1V,WAAqC,uBAAxB3C,KAAKgU,gBAChIhU,KAAKsY,iBAAiBtY,KAAKoY,YAAYC,wBAAyBrY,KAAKoY,YAAYxK,UAAW5N,KAAKoY,YAAYtL,QAE/G9M,KAAKuY,6BAA8B,EACnCvY,KAAKuD,cAAgBvD,KAAKqE,oBAAoBC,gBAC9CtE,KAAKwJ,SAAWxJ,KAAKqE,oBAAoBmU,SACQ,KAA7CxY,KAAKqE,oBAAoBC,kBAC3BtE,KAAKuD,cAAgBvD,KAAKqE,oBAAoBoU,eAEhDzY,KAAK0Y,aAAe1Y,KAAKqE,oBAAoBoU,cAC7CzY,KAAK2Y,YAAc3Y,KAAKqE,oBAAoBuU,YAC5C5Y,KAAK6Y,eAAiB7Y,KAAKqE,oBAAoByU,eACC,SAA5C9Y,KAAKqE,oBAAoByU,eAC3B9Y,KAAK+Y,oBAAsB,OAE3B/Y,KAAK+Y,oBAAsB,QAE7B/Y,KAAKgZ,iBAAmBhZ,KAAKqE,oBAAoBmJ,WACjDxN,KAAKsL,UAAYtL,KAAKqE,oBAAoBlD,WAC1CnB,KAAKoL,eAAiBpL,KAAKqE,oBAAoBgH,gBAAgBmD,oBAC/DxO,KAAKuL,UAAYvL,KAAKqE,oBAAoBmH,UAC1CxL,KAAKiZ,eAAiBjZ,KAAKqE,oBAAoB6U,eAC/ClZ,KAAKmZ,eAAiBnZ,KAAKqE,oBAAoB+U,eAC/CpZ,KAAKqZ,qBAAuBrZ,KAAKqE,oBAAoBiV,WAChDtZ,KAAKuL,UAqCRvL,KAAKuZ,wBAAwBzC,iBAAiB9W,KAAKuD,eAAeiB,UAAS,SACzEgV,GACErV,EAAKsV,uBAAuB,EAC5BtV,EAAKqV,cAAgBA,EAA8B,eACnDrV,EAAKuV,iBAAiBC,OACtBxV,EAAKyV,0BAA0BD,OAC/BxV,EAAK0V,kBAAoB1V,EAAK2V,sBAAsBH,OACpDxV,EAAKuH,mBAAmBpD,gBAAgBnE,EAAKZ,eAAeiB,UAAS,SACnE6O,GACElP,EAAK4V,WAAaxX,KAAKC,MAAM6Q,GAAU/E,KAAKzH,QAAQ,IAErD,SACA3E,GACCiC,EAAKlC,aAAoBC,EAAMI,QAAQ,KAAK,IAC5C6B,EAAK6V,cACL7V,EAAK8V,WAAY,KAItB,SACA/X,GACCiC,EAAKlC,aAAoBC,EAAMI,QAAQ,KAAK,IAC5C6B,EAAKsV,uBAAwB,EAC7BtV,EAAK6V,iBA3DLha,KAAKka,cAAgBla,KAAKuD,eAC5BvD,KAAKma,OAAOC,cAAc,gCAG5Bpa,KAAKuZ,wBAAwBzC,iBAAiB9W,KAAKuD,eAAeiB,UAAS,SACzEgV,GACErV,EAAKsV,uBAAuB,EAC5BtV,EAAKqV,cAAgBA,EAA8B,eACnDrV,EAAKuV,iBAAiBC,OACtBxV,EAAKyV,0BAA0BD,OAC/BxV,EAAK2V,sBAAsBH,OACvBxV,EAAK6F,2BACP7F,EAAK+E,kBAAkBkB,wBAAwB5F,UAAS,SAAE8J,GAAS,OAAAnK,EAAKkW,SAAW/L,IACnFnK,EAAKmW,2BAA2BnW,EAAKkW,WAIvClW,EAAKuH,mBAAmBpD,gBAAgBnE,EAAKZ,eAAeiB,UAAS,SACnE6O,GACElP,EAAK4V,WAAaxX,KAAKC,MAAM6Q,GAAU/E,KAAKzH,QAAQ,IAErD,SACA3E,GACCiC,EAAKlC,aAAoBC,EAAMI,QAAQ,KAAK,IAC5C6B,EAAK8V,WAAY,KAItB,SACA/X,GACCiC,EAAKlC,aAAoBC,EAAMI,QAAQ,KAAK,IAC5C6B,EAAKsV,uBAAwB,EAC7BtV,EAAK6V,iBA+BXha,KAAKua,wBAAwBZ,OAEgC,OAA1D3Z,KAAKkJ,kBAAkBe,gCACxBjK,KAAKkJ,kBAAkBe,+BAA+BzF,UAAS,SAAE8J,GAAS,OAAAnK,EAAK6F,yBAA2BsE,KAM9G6J,GAAAtY,UAAAma,YAAA,WACEha,KAAKwa,cAAgB,EACrBxa,KAAKya,gBAAkB,EACvBza,KAAK0a,oBAAsB,EAC3B1a,KAAK2a,UAAY,GAGnBxC,GAAAtY,UAAA+a,oBAAA,SAAoBnW,GAEd8H,EAAoB9H,EAAS+H,mBAEjC,OADuD,EAA3BD,EAAkBnH,OACbmH,EAAkB,GAAGG,kBAAoB,KAK5EyL,GAAAtY,UAAA0a,wBAAA,SAAwBrN,GAAxB,IAAA/I,EAAAnE,KACEkN,EAAMC,iBAC4B,IAA9BnN,KAAKwZ,cAAcpU,QAA6D,mBAA5CpF,KAAKoL,eAAeoD,qBAAwF,OAA5CxO,KAAKoL,eAAeoD,qBAC1HxO,KAAK6a,0BAA0B7D,mBAAmBhX,KAAKuD,eAAeiB,UAAS,SAC7EsW,GACMA,EAAiB,MAAKA,EAAiB,KAAEC,4BAAqF,EAAvDD,EAAiB,KAAEC,2BAA2B3V,QAAiD,EAAnC0V,EAAiB,KAAEE,gBACxJ7W,EAAK8W,mBAAoB,EACzB9W,EAAKsL,oBAAqB,GAGxBqL,EAAiB,MAAKA,EAAiB,KAAEC,4BAAqF,EAAvDD,EAAiB,KAAEC,2BAA2B3V,QAAc0V,EAAiB,KAAEE,gBAAkBrY,YAC1KwB,EAAK8W,mBAAoB,EACzB9W,EAAKsL,oBAAqB,GAGxBqL,EAAiB,MAAKA,EAAiB,KAAEC,4BAA8BD,EAAiB,KAAEC,2BAA2B3V,SAAWzC,WAAgD,EAAnCmY,EAAiB,KAAEE,gBAClK7W,EAAK8W,mBAAoB,EACzB9W,EAAKsL,oBAAqB,KAKA,IAA9BzP,KAAKwZ,cAAcpU,QAA4D,QAA5CpF,KAAKoL,eAAeoD,wBACH,EAAlDxO,KAAKqE,oBAAoBC,gBAAgBc,QAA8D,EAAhDpF,KAAKqE,oBAAoBoU,cAAcrT,SAGnC,IAApDpF,KAAKqE,oBAAoBC,gBAAgBc,QAAgE,EAAhDpF,KAAKqE,oBAAoBoU,cAAcrT,QACzGpF,KAAKib,mBAAoB,EACzBjb,KAAKyP,oBAAqB,IAJ1BzP,KAAKib,mBAAoB,EACzBjb,KAAKyP,oBAAqB,IASE,EAA5BzP,KAAKwZ,cAAcpU,QACrBpF,KAAKwZ,cAAclT,QAAO,SAACqF,GACrBA,EAAalH,UACfkH,EAAalH,SAAS6B,QAAO,SAACuH,GACxBA,EAAQqN,iBAAmBvY,WAAakL,EAAQsN,kBAAoBxY,WACtEwB,EAAK8W,mBAAoB,EACzB9W,EAAKsL,oBAAqB,IAE1BtL,EAAK8W,mBAAoB,EACzB9W,EAAKsL,oBAAqB,QAQtC0I,GAAAtY,UAAA+Z,0BAAA,SAA0B1M,GAA1B,IAAA/I,EAAAnE,KACEkN,EAAMC,iBAENnN,KAAKwZ,cAAclT,QAAO,SAACqF,GACzBxH,EAAKiX,sBACDzP,EAAaC,MACfD,EAAaC,KAAKtF,QAAO,SAACuF,GACxB1H,EAAKkX,eAAiBlX,EAAKkX,eAAiBxP,EAAI+L,oBAIhDjM,EAAaI,YACfJ,EAAaI,WAAWzF,QAAO,SAAC6H,GAC9BhK,EAAKmX,oBAAsBnX,EAAKmX,oBAAsBnN,EAAU4J,aAIhEpM,EAAalH,UACfkH,EAAalH,SAAS6B,QAAO,SAACuH,GACS,YAAjCA,EAAQxL,OAAOwV,gBACjB1T,EAAKoX,mBAAqBpX,EAAKoX,mBAAqB1N,EAAQiK,UAKlE3T,EAAKqX,qBAAwBrX,EAAKkX,eAAiBlX,EAAKmX,oBAAuBnX,EAAKoX,mBAChFpX,EAAKqX,sBAAwB,GAC/BrX,EAAKsX,YAAc,OACnBtX,EAAKuX,mBAAoB,IACM,EAAtBvX,EAAKkX,iBAAiD,EAA1BlX,EAAKoX,oBAAqD,EAA3BpX,EAAKmX,sBAA6BnX,EAAKoX,mBAAqBpX,EAAKqX,qBACrIrX,EAAKsX,YAAc,iBAGnBtX,EAAKsX,YAAc,WAFnBtX,EAAKuX,mBAAoB,GAOH,OAApBvX,EAAK4V,WACP5V,EAAKsE,eAAe0D,KAAK,CAAEwP,WAAYhQ,EAAsC,wBAAGiQ,eAAgBzX,EAAKkX,eAAgBI,YAAatX,EAAKsX,YAAaI,WAAY1X,EAAK4V,WAA6B,iBAAG+B,cAAe3X,EAAK4V,WAAmB,OAAGgC,aAAcpQ,EAA2B,aAAG+P,kBAAmBvX,EAAKuX,oBAGnTvX,EAAKsE,eAAe0D,KAAK,CAAEwP,WAAYhQ,EAAsC,wBAAGiQ,eAAgBzX,EAAKkX,eAAgBI,YAAatX,EAAKsX,YAAaI,WAAY,GAAIC,cAAe,GAAIC,aAAcpQ,EAA2B,aAAG+P,kBAAmBvX,EAAKuX,oBAGpO,SAArBvX,EAAKsX,aACPtX,EAAK+E,kBAAkBV,cAAcrE,EAAKsE,mBAKhD0P,GAAAtY,UAAAub,oBAAA,WACEpb,KAAKqb,eAAiB,EACtBrb,KAAKub,mBAAqB,EAC1Bvb,KAAKsb,oBAAsB,EAC3Btb,KAAKwb,qBAAuB,EAC5Bxb,KAAKyP,oBAAqB,GAI5B0I,GAAAtY,UAAAya,2BAAA,SAA2B0B,GAA3B,IAAA7X,EAAAnE,KACMA,KAAKgK,0BACPhK,KAAKkJ,kBAAkBgB,cAAc8R,GACrChc,KAAKqa,SAAW2B,IAEhBhc,KAAKkJ,kBAAkBgB,cAAc8R,EAAkBL,YACvD3b,KAAKqa,SAAW2B,EAAkBL,YAGpC3b,KAAKqb,eAAiB,EACtBrb,KAAKsb,oBAAsB,EAC3Btb,KAAKub,mBAAqB,EAC1Bvb,KAAKwb,qBAAuB,EAE5Bxb,KAAKic,YAAcjc,KAAKwZ,cAAcpN,OAAM,SAAC8P,GAAK,OAAAA,EAAE7D,0BAA4BlU,EAAKkW,WACrFra,KAAKic,YAAY3V,QAAO,SAAC2V,GACnBA,EAAYrQ,MACdqQ,EAAYrQ,KAAKtF,QAAO,SAACuF,GACvB1H,EAAKkX,eAAiBlX,EAAKkX,eAAiBxP,EAAI+L,oBAGhDqE,EAAYlQ,aACdkQ,EAAYlQ,WAAWzF,QAAO,SAAC6H,GAC7BhK,EAAKmX,oBAAsBnX,EAAKmX,oBAAsBnN,EAAU4J,aAE9DkE,EAAYxX,WACdN,EAAK0J,QAAUoO,EAAYxX,SAAS,GACpCwX,EAAYxX,SAAS6B,QAAO,SAACuH,GACU,YAAjCA,EAAQxL,OAAOwV,gBACjB1T,EAAKoX,mBAAqBpX,EAAKoX,mBAAqB1N,EAAQiK,cAMtE9X,KAAKwb,qBAAwBxb,KAAKqb,eAAiBrb,KAAKsb,oBAAuBtb,KAAKub,mBAEhFvb,KAAKwb,sBAAwB,EAC/Bxb,KAAKyb,YAAc,OACY,EAAtBzb,KAAKqb,iBAAiD,EAA1Brb,KAAKub,oBAAqD,EAA3Bvb,KAAKsb,sBAA6Btb,KAAKub,mBAAqBvb,KAAKwb,qBACrIxb,KAAKyb,YAAc,iBAEnBzb,KAAKyb,YAAc,WAGG,OAApBzb,KAAK+Z,YACP/Z,KAAK6b,WAAa7b,KAAK+Z,WAA6B,iBACpD/Z,KAAK+b,aAAe/b,KAAK+Z,WAA6B,iBACtD/Z,KAAK8b,cAAgB9b,KAAK+Z,WAAmB,SAE7C/Z,KAAK6b,WAAa,GAClB7b,KAAK8b,cAAgB,GACrB9b,KAAK+b,aAAeC,EAAkBD,cAExC/b,KAAKyL,WAAa,mBAGpB0M,GAAAtY,UAAAsc,6BAAA,SAA6BjP,EAAYkP,GACpCA,EAAQV,oBACXxO,EAAMC,iBACNnN,KAAKqE,oBAAoBjD,aAAe,KACxCpB,KAAKqE,oBAAoBnD,sBAAwBkb,EAAQT,WACzD3b,KAAKqE,oBAAoBkH,UAAYvL,KAAKuL,UAC1CvL,KAAKqE,oBAAoB9C,SAAW,gBAItC4W,GAAAtY,UAAAoN,uBAAA,SAAuBC,GACrBA,EAAMC,iBACNnN,KAAKgK,0BAA2B,EAChChK,KAAKyL,WAAa,OAClBzL,KAAKqE,oBAAoB9C,SAAW,qBAItC4W,GAAAtY,UAAA6Z,iBAAA,SAAiBxM,GAAjB,IAAA/I,EAAAnE,KACEkN,EAAMC,iB,IACFsK,EAAY,EACdC,EAAgB,EAChBC,EAAkB,EAClB0E,EAAoB,EAEtBrc,KAAKwZ,cAAclT,QAAO,SAACqF,GACrBA,EAAaC,MACfD,EAAaC,KAAKtF,QAAO,SAACuF,GAExB,IAEQyQ,EACAC,EAHHpY,EAAKoH,UASRkM,GAAwB5L,EAAI+L,mBARxB/L,EAAIsE,eACFmM,EAAIzQ,EAAI2Q,aAAe7Z,UACvB4Z,EAAI1Q,EAAI2Q,YAAc,EAC1BrY,EAAKsY,YAAcH,EAAInY,EAAKsY,YAAc5Q,EAAI0C,WAAagO,EAAIpY,EAAKsY,YAAc,EAAItY,EAAKsY,YAAc5Q,EAAI2Q,YAE/G3Q,EAA6B,wBAAIF,EAAsC,yBAIvExH,EAAKyH,KAAKO,KAAKN,KAKjB1H,EAAKoH,YACPpH,EAAKwW,UAAYlD,GAGf9L,EAAalH,UACfkH,EAAalH,SAAS6B,QAAO,SAACuH,GAE5B,IACM6O,EADDvY,EAAKoH,UAkB6B,YAAjCsC,EAAQxL,OAAOwV,gBACjBH,GAAgC7J,EAAQiK,OACxC3T,EAAKM,SAAS0H,KAAK0B,KAnBjB6O,EAAgB7O,EAAQrB,mBAES,YAAjCqB,EAAQxL,OAAOwV,gBACjBH,GAAgC7J,EAAQiK,QACX,IAAzB4E,EAActX,QAAuC,EAAvBsX,EAActX,QAAqD,cAAvCsX,EAAc,GAAGhQ,qBAC7E2P,GAAwCxO,EAAQiK,QAEvB,EAAvB4E,EAActX,QAChBjB,EAAKwY,YAAYxQ,KAAK0B,IAGG,IAAzB6O,EAActX,QAChBjB,EAAKM,SAAS0H,KAAK0B,IASrBA,EAAQ3M,sBAAwByK,EAAa0M,wBAC7ClU,EAAKyY,YAAYzQ,KAAK0B,KAI5B1J,EAAKqW,cAAgB9C,EAEhBvT,EAAKoH,YACRpH,EAAKuW,oBAAsB2B,GAGzB1Q,EAAaI,YACfJ,EAAaI,WAAWzF,QAAO,SAACuW,GAC9BlF,GAAoCkF,EAAU9E,WAC9C5T,EAAK4H,WAAWI,KAAK0Q,KAGzB1Y,EAAKsW,gBAAkB9C,KAK3BQ,GAAAtY,UAAAia,sBAAA,SAAsB5M,GAAtB,IAAA/I,EAAAnE,KAEE,GADAkN,EAAMC,iBACDnN,KAAKuL,UAkEH,C,IACDuR,EAAoB,EACtBC,GAAkB,EA0CpB,OAzCA/c,KAAKwZ,cAAclT,QAAO,SAACqF,G,IACrBqR,EACFvF,EAAY,EACZC,EAAgB,EAChBC,EAAkB,EAChBhM,EAAaC,OACfzH,EAAK8Y,mBAAoB,EACzBtR,EAAaC,KAAKtF,QAAO,SAACuF,GACxB4L,GAAwB5L,EAAI+L,kBACE,IAA1B/L,EAAI+L,oBACNmF,GAAkB,MAMpBpR,EAAalH,UACfkH,EAAalH,SAAS6B,QAAO,SAACuH,GACS,YAAjCA,EAAQxL,OAAOwV,gBACjBH,GAAgC7J,EAAQiK,UAK1CnM,EAAaI,YACfJ,EAAaI,WAAWzF,QAAO,SAAC6H,GAC9BwJ,GAAoCxJ,EAAU4J,cAGlDiF,EAAwBvF,EAAYE,EAAmBD,GAC5B,EACC,IAAtBoF,EACFA,EAAoBE,EAEpBF,GAAyCE,GAGb,EAAvBA,GAAsD,GAAzBA,GAA8BD,KAClE5Y,EAAKoU,6BAA8B,MAGX,EAArBuE,E,IA7GHI,GAAoB,EAExBld,KAAKwZ,cAAclT,QAAO,SAAEqF,EAAcwR,G,IACpCH,EACFvF,EAAY,EACZC,EAAgB,EAChBC,EAAkB,EAClB/L,EAAO,GAELD,EAAaC,OAEfD,EAAaC,KAAKtF,QAAO,SAACuF,GACxB4L,GAAwB5L,EAAI+L,kBAE5BzT,EAAK2H,mBAAoB,EACzBH,EAAaI,WAAWzF,QAAO,SAAC0F,GAC1BA,EAAIC,WAAaJ,EAAIK,OACvB/H,EAAK2H,mBAAoB,EACzBD,EAAgB,WAAIG,EAGpBJ,EAAKO,KAAKN,MAKT1H,EAAK2H,mBACRF,EAAKO,KAAKN,GAGRA,EAAIsE,aACN+M,GAAoB,GAEpB/Y,EAAKiZ,0BAA2B,EAChCjZ,EAAKqV,cAAc2D,GAAY,KAAI,KAGvChZ,EAAKqV,cAAc2D,GAAOvR,KAAOA,GAE/BD,EAAalH,UACfkH,EAAalH,SAAS6B,QAAO,SAACuH,GACS,YAAjCA,EAAQxL,OAAOwV,gBACjBH,GAAgC7J,EAAQiK,UAK1CnM,EAAaI,YACfJ,EAAaI,WAAWzF,QAAO,SAAC6H,GAC9BwJ,GAAoCxJ,EAAU4J,aAIvB,GAD3BiF,EAAwBvF,EAAYE,EAAmBD,IACvBwF,IAC9B/Y,EAAKsV,uBAAwB,EAC7BtV,EAAK8Y,mBAAoB,EACzB9Y,EAAKiT,WAAazL,EAAa0M,yBAE7B1M,EAAaC,MAAmC,EAA3BD,EAAaC,KAAKxG,QAAc4X,GAAwB,GAAKE,IACpF/Y,EAAKsV,uBAAwB,OAG3ByD,GAAqBld,KAAKod,2BAA+BF,IAAsBld,KAAKod,4BACxFpd,KAAKyZ,uBAAwB,IAkDnCtB,GAAAtY,UAAAwd,0BAAA,SAA0B1R,GACxB,OAAO3L,KAAK6a,0BAA0BrD,2BAA2B7L,IAGnEwM,GAAAtY,UAAAyd,wBAAA,SAAwBpQ,GACtBA,EAAMC,iBACFxH,EAAM3F,KAAKgZ,iBAAmB,yBAA2B,0BAC7DrT,GAAO3F,KAAKuL,UAAY,oBAAsB,qBAC9C5F,GAAO3F,KAAKqZ,qBAAuB,wBAA0B,yBAC7D1T,GAAO3F,KAAKiZ,eAAiB,yBAA2B,0BACxDtT,GAAO3F,KAAKmZ,eAAiB,yBAA2B,0BACxDxT,GAAO,aAAa3F,KAAKwJ,SACzBxJ,KAAKma,OAAOC,cAAc,8BAA8Bpa,KAAKoL,eAAc,kBAAkBpL,KAAKuD,cAAgBoC,IAGpHwS,GAAAtY,UAAA6N,aAAA,SAAa7B,GAAb,IAAA1H,EAAAnE,KACKA,KAAK2N,mBAAmB9B,EAAIK,QAC/BlM,KAAK2H,MAAQkE,EACb7L,KAAKyL,WAAa,eAClBzL,KAAK0L,mBAAmBtE,2BAA2BpH,KAAK6N,QAAQD,WAAWpJ,UAAS,SAClFmH,GACExH,EAAKwH,aAAeA,EAEpBxH,EAAKwH,aAAalH,SAAWN,EAAKwH,aAAalH,SAAS2H,OAAM,SAC3DC,GAAmB,OAAAA,EAA2B,UAAEC,SAASnI,EAAKE,oBAAoBM,oBACrFR,EAAK0J,QAAU1J,EAAKwH,aAAalH,SAAS,IAG3C,SACAvC,GAAe,OAAAiC,EAAKlC,aAAeC,EAAMI,QAAQ,KAAK,QAK3D6V,GAAAtY,UAAAqO,sBAAA,SAAsBL,EAAmBM,EAAwBvC,GAAjE,IAAAzH,EAAAnE,KACEA,KAAKyL,WAAa,wBAElBzL,KAAK6N,QAAUA,EACf7N,KAAK0L,mBAAmBtE,2BAA2BpH,KAAK6N,QAAQD,WAAWpJ,UAAS,SAClFmH,GACExH,EAAKwH,aAAeA,EAEpBxH,EAAKwH,aAAalH,SAAWN,EAAKwH,aAAalH,SAAS2H,OAAM,SAC3DC,GAAmB,OAAAA,EAA2B,UAAEC,SAASnI,EAAK0J,QAAQD,aACzEzJ,EAAK0J,QAAU1J,EAAKwH,aAAalH,SAAS,GAC1CN,EAAK4H,WAAaoC,EAClBhK,EAAKkK,gBAAkBzC,EAAKQ,OAAM,SAACkC,GAAM,OAAAA,EAAKpC,OAAS/H,EAAK4H,WAAqB,WAAG,GAAGwC,YAGxF,SACArM,GAAe,OAAAiC,EAAKlC,aAAeC,KAIxCiW,GAAAtY,UAAA0d,wBAAA,SAAwBrQ,GACtBA,EAAMC,iBACNnN,KAAKqE,oBAAoB9C,SAAW,aAGtC4W,GAAAtY,UAAA2d,sBAAA,SAAsBtQ,GACpBA,EAAMC,iBACNnN,KAAKma,OAAOC,cAAc,2BAA2Bpa,KAAKoL,eAAc,kBAAkBpL,KAAKuD,gBAGjG4U,GAAAtY,UAAA4d,mBAAA,SAAmB9R,GACjB3L,KAAKqE,oBAAoBjD,aAAe,KACxCpB,KAAKqE,oBAAoBnD,sBAAwByK,EAAa0M,wBAC9DrY,KAAKqE,oBAAoBkH,UAAYvL,KAAKuL,UAC1CvL,KAAKqE,oBAAoB9C,SAAW,eAGtC4W,GAAAtY,UAAA6d,yBAAA,SAAyB/R,GACvB3L,KAAKqE,oBAAoBb,cAAgBmI,EAAanI,cACtDxD,KAAKqE,oBAAoBnD,sBAAwByK,EAAazK,sBAC9DlB,KAAKqE,oBAAoBM,iBAAmBgH,EAAahH,iBACzD3E,KAAKqE,oBAAoB9C,SAAW,gBAGtC4W,GAAAtY,UAAAyY,iBAAA,SAAiBpX,EAA+ByD,EAA0BnB,GACxExD,KAAK0d,yBAAyB,CAAExc,sBAAqBA,EAAEyD,iBAAgBA,EAAEnB,cAAaA,KAGxF2U,GAAAtY,UAAA8d,4BAAA,SAA4BC,GACtBA,GACE5d,KAAKuL,YACPvL,KAAKyP,oBAAqB,GAE5BzP,KAAK6d,6BAA8B,IAE/B7d,KAAKuL,YACPvL,KAAKyP,oBAAqB,GAE5BzP,KAAK6d,6BAA8B,IAIvC1F,GAAAtY,UAAAie,uBAAA,SAAuBC,GACrB/d,KAAKge,uBAAyBD,GAGhC5F,GAAAtY,UAAAoe,mBAAA,SAAmBpS,GAEjB,OAAIA,EAAIsE,aACCtE,EAAI2Q,aAAe7Z,UAAYkJ,EAAI2Q,WAAa3Q,EAAI0C,WAEpD,QAIX4J,GAAAtY,UAAAqe,iBAAA,SAAiBrS,GACf7L,KAAKme,qBAAsB,EAC3Bne,KAAK2H,MAAQkE,EACb7L,KAAKyL,WAAa,0BAGpB0M,GAAAtY,UAAAue,cAAA,WACEpe,KAAKyL,WAAa,QAGpB0M,GAAAtY,UAAAwe,UAAA,SAAUxS,GAAV,IAAA1H,EAAAnE,KACEA,KAAKme,qBAAsB,EAC3Bne,KAAK0L,mBAAmB9D,0BAA0BiE,GAAKrH,UAAS,SAC7D8Z,GACCrK,OAAOC,SAASqK,UACjB,SACArc,GACCiC,EAAKlC,aAAeC,EACpBiC,EAAKga,qBAAsB,KAKjChG,GAAAtY,UAAA2e,sBAAA,SAAsBC,GACpB,YAA4B,IAAdA,GAGhBtG,GAAAtY,UAAA8O,YAAA,SAAYd,GACP7N,KAAK6O,wBAAwBhB,KAChC7N,KAAKyL,WAAa,cAClBzL,KAAK6N,QAAUA,EACf7N,KAAK+N,mBAAoB,IAI3BoK,GAAAtY,UAAA8N,mBAAA,SAAmBoB,G,QACjB,GAAI/O,KAAKqP,oBAAsBrP,KAAKmP,kCAAmC,CACrE,GAA+C,EAA3CnP,KAAKic,YAAY,GAAe,WAAE7W,O,IACpC,IAAwB,IAAAkK,EAAAL,EAAAjP,KAAKic,YAAY,GAAe,YAAC1M,EAAAD,EAAAjK,QAAAkK,EAAAhK,KAAAgK,EAAAD,EAAAjK,OACvD,GADkBkK,EAAAjK,MACJ2G,WAAa8C,EACzB,OAAO,E,oGAIb,OAAO,EAEP,OAAO,GAIXoJ,GAAAtY,UAAAwP,iBAAA,WAAA,IAAAlL,EAAAnE,KAUE,OATAA,KAAKic,YAAY3V,QAAO,SAAC2V,GACnBA,EAAYxX,UACdwX,EAAYxX,SAAS6B,QAAO,SAACuH,GACgB,uBAAvCA,EAAQf,OAAO0B,qBAAgDrK,EAAKsK,6BAA6BZ,KACnG1J,EAAKua,OAAQ,SAKjB1e,KAAK0e,OAOXvG,GAAAtY,UAAAgP,wBAAA,SAAwBhB,GAKtB,OAJI7N,KAAKmP,mCAAqCnP,KAAKyO,6BAA6BZ,IAC3D,uBAAnBA,EAAQf,QAA0E,YAAvCe,EAAQxL,OAAOmM,sBAC1DxO,KAAKoP,wBAAyB,KAE5BpP,KAAKoP,wBAOX+I,GAAAtY,UAAAuO,8BAAA,WAAA,IAAAjK,EAAAnE,KAUE,OATAA,KAAKic,YAAY3V,QAAO,SAAC2V,GACnBA,EAAYxX,UACdwX,EAAYxX,SAAS6B,QAAO,SAACuH,GACgB,uBAAvCA,EAAQf,OAAO0B,qBAAuF,YAAvCX,EAAQxL,OAAOmM,qBAAqCrK,EAAKsK,6BAA6BZ,KACvJ1J,EAAKuK,4BAA6B,SAKtC1O,KAAK0O,4B,qBApxBZlN,EAAAA,UAASZ,KAAA,CAAC,CACTa,SAAU,0BACVC,SAAA,mpmD,26GANOid,EAAAA,Q,MAPA1X,G,MADA8P,I,MADAF,I,MAFA/V,G,MAKAoI,K,4CAgBNvH,EAAAA,MAAKf,KAAA,CAAC,wBAgyBTuX,IAttBE,SAAAA,GAAoBgC,EACVzO,EACAmP,EACAtB,EACAlV,EACA6E,GALV,IAAA/E,EAAAnE,KAAoBA,KAAAma,OAAAA,EACVna,KAAA0L,mBAAAA,EACA1L,KAAA6a,0BAAAA,EACA7a,KAAAuZ,wBAAAA,EACAvZ,KAAAqE,oBAAAA,EACArE,KAAAkJ,kBAAAA,EA1EVlJ,KAAAwZ,cAAuB,GACvBxZ,KAAAyE,SAAuB,GACvBzE,KAAA2c,YAA0B,GAC1B3c,KAAA4c,YAA0B,GAC1B5c,KAAA+L,WAA2B,GAC3B/L,KAAA4L,KAAe,GAWf5L,KAAA+N,mBAA6B,EAG7B/N,KAAAyP,oBAA8B,EAC9BzP,KAAAib,mBAA6B,EAC7Bjb,KAAA6d,6BAAuC,EAEvC7d,KAAAyZ,uBAAiC,EACjCzZ,KAAAod,0BAAoC,EAGpCpd,KAAAyL,WAAa,OACbzL,KAAAme,qBAA+B,EAE/Bne,KAAAyc,YAAsB,EAEtBzc,KAAAid,mBAA6B,EAC7Bjd,KAAAuY,6BAAuC,EAGvCvY,KAAAka,YAAmB0E,EAAAA,IAAY,aAM/B5e,KAAAic,YAAqB,GAErBjc,KAAA6e,sBAAgC,EAChC7e,KAAA8e,sBAA+B,GAC/B9e,KAAAyI,eAAuC,GACvCzI,KAAA+Z,WAAkB,KAQlB/Z,KAAAqb,eAAyB,EACzBrb,KAAAsb,oBAA8B,EAC9Btb,KAAAub,mBAA6B,EAC7Bvb,KAAAwb,qBAA+B,EAG/Bxb,KAAA0e,OAAiB,EACjB1e,KAAAoP,wBAAkC,EAClCpP,KAAA+e,0BAAoC,EACpC/e,KAAA0O,4BAAsC,EACtC1O,KAAA0P,2BAA6B,CAAC,2BAA4B,mBA+sB1D1P,KAAAmP,gCAA+B,WAC7B,OAAOhL,EAAKuL,2BAA2BC,KAAI,SAACC,GAC1C,OAA0C,IAA1CzL,EAAK0L,kBAAkBC,QAAQF,MAInC5P,KAAAyO,6BAA4B,SAAIZ,G,IAC1BkC,EAAa,IAAIC,KAErB,OADAD,EAAWE,QAAQF,EAAWG,UAAY,GACnCH,GAAc,IAAIC,KAAKnC,EAAQsC,eCpzB1C,IAAA6O,GAUE,SAAY7D,EAAyBrD,EAAgBtO,GATrDxJ,KAAAif,SAAW,MACXjf,KAAAkf,YAAc,oBACdlf,KAAA+M,QAAU,YACV/M,KAAAmf,SAAW,UAOXnf,KAAKmb,gBAAkBA,EACvBnb,KAAK8X,OAAcA,EAAOsH,QAAQ,GAClCpf,KAAKqf,UAAW7V,GCblB8V,GAME,SAAYnE,EAAyBrD,EAAgBtO,GALrDxJ,KAAAif,SAAW,MAMXjf,KAAKmb,gBAAkBA,EACvBnb,KAAK8X,OAAcA,EAAOsH,QAAQ,GAClCpf,KAAKqf,UAAW7V,GCKZ+V,GAAiB,wBAEvBC,IA8CEA,GAAA3f,UAAAkB,SAAA,WAAA,IAAAoD,EAAAnE,KACEA,KAAKyL,WAAa,OAClBzL,KAAKwJ,SAAWxJ,KAAKqE,oBAAoBmU,SACzCxY,KAAKyf,mBAAqBzf,KAAKqE,oBAAoBjD,aACnDpB,KAAKoL,eAAiBpL,KAAKqE,oBAAoBgH,gBAAgBmD,oBAC/DxO,KAAKqZ,qBAAuBrZ,KAAKqE,oBAAoBiV,WACrDtZ,KAAKkJ,kBAAkBK,YAAYvJ,KAAKqE,oBAAoBmU,WACtDxY,KAAKmZ,gBAAkBnZ,KAAKiZ,eAChCjZ,KAAK0f,SAAW,MACN1f,KAAKmZ,iBAAmBnZ,KAAKiZ,eACvCjZ,KAAK0f,SAAW,UACN1f,KAAKmZ,gBAAkBnZ,KAAKiZ,iBACtCjZ,KAAK0f,SAAW,OAGlB1f,KAAK0L,mBAAmBtD,eAAe5D,UAAS,SAC9C4I,GACMC,EAAS9K,KAAKC,MAAM4K,GAAUhB,OAAM,SAACkB,GAAW,OAAAA,EAAQC,MAAQgS,KACpEpb,EAAKE,oBAAoBmJ,aAAaH,EAAO,IAAKA,EAAO,GAAGI,QAC7D,SACDzL,GACEmC,EAAKE,oBAAoBmJ,YAAa,IAGtCxN,KAAKyf,oBACPzf,KAAK2f,2BAEP3f,KAAK4f,mBAGLJ,GAAA3f,UAAA8f,yBAAA,WAAA,IAAAxb,EAAAnE,KAC6B,QAAxBA,KAAKoL,eACNpL,KAAK6a,0BAA0B5D,mBAAmBjX,KAAKqE,oBAAoBlD,YAAYqD,UAAS,SAChGqb,GACKA,EAAyB,KAAEpb,SAC5BN,EAAK2b,QAAUD,EAAyB,KAAEE,uBAE1C5b,EAAK6b,sBAAwB,SAEhC,SACA9d,GAAe,OAAAiC,EAAK6b,sBAAwB9d,IAG7ClC,KAAK6a,0BAA0B7D,mBAAmBhX,KAAKuD,eAAeiB,UAAS,SAC/Eqb,GACKA,EAAyB,KAAEpb,SAC5BN,EAAK2b,QAAUD,EAAyB,KAAEE,uBAE1C5b,EAAK6b,sBAAwB,SAEhC,SACA9d,GAAe,OAAAiC,EAAK6b,sBAAwB9d,KAMnDsd,GAAA3f,UAAAiP,sBAAA,SAAsBC,G,QACpB,GAAI/O,KAAK2L,cAAgB3L,KAAK2L,aAAaI,YAAoD,EAAtC/L,KAAK2L,aAAaI,WAAW3G,O,IACpF,IAAwB,IAAAkK,EAAAL,EAAAjP,KAAK2L,aAAaI,YAAUwD,EAAAD,EAAAjK,QAAAkK,EAAAhK,KAAAgK,EAAAD,EAAAjK,OAAE,CAAjD,IAAM8I,EAASoB,EAAAjK,MAClB,GAAI6I,EAAUlC,WAAa8C,EACzB,OAAOZ,G,oGAIb,OAAO,MAGTqR,GAAA3f,UAAA6N,aAAA,SAAa7B,GACX7L,KAAKigB,WAAapU,EAClB7L,KAAKyL,WAAa,iBAGpB+T,GAAA3f,UAAA+f,gBAAA,WAAA,IAAAzb,EAAAnE,KACM4L,EAAO,GACX5L,KAAK0L,mBAAmBvE,uBAAuBnH,KAAK8H,iBAAiBtD,UAAS,SAC5EmH,GACExH,EAAKwH,aAAeA,EACpBxH,EAAK+b,iBAAiBvU,EAAalH,UAA0C,EAA/BkH,EAAalH,SAASW,OACpEjB,EAAKgc,oBAAoBxU,EAAaI,YAA8C,EAAjCJ,EAAaI,WAAW3G,OAEvEuG,EAAaC,OACfD,EAAaC,KAAKtF,QAAO,SAACuF,GACtB1H,EAAKic,oBAAuBjc,EAAKic,oBAAuBvU,EAAI0C,WAC/B,IAA1B1C,EAAI+L,oBACLzT,EAAKkc,iBAAkB,GAEzBlc,EAAK2H,mBAAoB,EACzBH,EAAaI,WAAWzF,QAAO,SAAC0F,GAC3BA,EAAIC,WAAaJ,EAAIK,OACtB/H,EAAK2H,mBAAoB,EACzBD,EAAgB,WAAIG,EACpBJ,EAAKO,KAAKN,MAIV1H,EAAK2H,mBACPF,EAAKO,KAAKN,KAGhBF,EAAaC,KAAOA,GAGtBzH,EAAKmc,kBAAoBnc,EAAK0W,0BAA0BrD,2BAA2B7L,IACpF,SACAzJ,GAAe,OAAAiC,EAAKlC,aAAeC,EAAMI,QAAQ,KAAK,OAI3Dkd,GAAA3f,UAAAqe,iBAAA,SAAiBrS,GACf7L,KAAKme,qBAAsB,EAC3Bne,KAAKigB,WAAapU,EAClB7L,KAAKyL,WAAa,0BAGpB+T,GAAA3f,UAAAwe,UAAA,SAAUxS,GAAV,IAAA1H,EAAAnE,KACEA,KAAKme,qBAAsB,EAC3Bne,KAAK0L,mBAAmB9D,0BAA0BiE,GAAKrH,UAAS,SAC7D8Z,GACG,OAAIna,EAAKwH,aAAaC,MAAwC,EAAhCzH,EAAKwH,aAAaC,KAAKxG,QACrDjB,EAAKic,oBAAsB,EAC3Bjc,EAAKyb,uBACLzb,EAAKsH,WAAa,cAGlBtH,EAAKoc,2BACR,SACAre,GACGiC,EAAKlC,aAAeC,EACpBiC,EAAKga,qBAAsB,KAKpCqB,GAAA3f,UAAA0gB,wBAAA,WAAA,IAAApc,EAAAnE,KACGA,KAAKqE,oBAAoBuU,aAAc,EACvC5Y,KAAKqE,oBAAoB9C,SAAW,oBACpCvB,KAAK0L,mBAAmBtD,eAAe5D,UAAS,SAC9C4I,GACMC,EAAS9K,KAAKC,MAAM4K,GAAUhB,OAAM,SAACkB,GAAW,OAAAA,EAAQC,MAAQgS,KACpEpb,EAAKE,oBAAoBmJ,aAAaH,EAAO,IAAKA,EAAO,GAAGI,QAC7D,SACDzL,GACEmC,EAAKE,oBAAoBmJ,YAAa,I,IAItCgT,EAAU,kBAAkBxgB,KAAKqE,oBAAoBgH,gBACvDmV,GAAUxgB,KAAKyf,mBAAqB,QAAQzf,KAAKyf,mBAAuB,GACxEe,GAAUxgB,KAAKqE,oBAAoBmJ,WAAa,yBAA2B,0BAC3EgT,GAAUxgB,KAAKqE,oBAAoBmH,UAAY,oBAAsB,qBACrEgV,GAAUxgB,KAAKqE,oBAAoBiV,WAAa,wBAA0B,yBAC1EkH,GAAU,aAAaxgB,KAAKqE,oBAAoBmU,SAChDgI,GAAUxgB,KAAKiZ,eAAiB,yBAA2B,0BAC3DuH,GAAUxgB,KAAKmZ,eAAiB,yBAA2B,0BAEzDxT,EAAM,oBAAoB3F,KAAKuD,cAAa,4CAA4Cid,EAC5FxgB,KAAKma,OAAOC,cAAczU,IAE5B6Z,GAAA3f,UAAA4gB,gBAAA,WACEzgB,KAAKyL,WAAa,QAEpB+T,GAAA3f,UAAAyd,wBAAA,SAAwBpQ,EAAYwT,GAClCxT,EAAMC,iBACFqT,EAASxgB,KAAKyf,mBAAqB,QAAQzf,KAAKyf,mBAAuB,GACzEe,GAAUxgB,KAAKqE,oBAAoBmJ,WAAa,yBAA2B,0BAC3EgT,GAAUxgB,KAAKqE,oBAAoBmH,UAAY,oBAAsB,qBACrEgV,GAAUxgB,KAAKqE,oBAAoBiV,WAAa,wBAA0B,yBAC1EkH,GAAU,aAAaxgB,KAAKqE,oBAAoBmU,SAChDgI,GAAUxgB,KAAKiZ,eAAiB,yBAA2B,0BAC3DuH,GAAUxgB,KAAKmZ,eAAiB,yBAA2B,0BAEtC,2BAApBnZ,KAAKyL,YAA+D,kBAApBzL,KAAKyL,YAIpD9F,EAAM,6BAA6B3F,KAAKuD,cAAa,mBAAmBvD,KAAKqE,oBAAoBgH,gBAAe,oBAAoBrL,KAAK8H,gBAAkB0Y,EAC/JxgB,KAAKma,OAAOC,cAAczU,IAJxB3F,KAAKyL,WAAa,QAMtB+T,GAAA3f,UAAA8Y,YAAA,WAAA,IAAAxU,EAAAnE,KACEA,KAAK2gB,2BAA4B,E,IACzBC,EAAc,IAAI5B,GAAuBhf,KAAKuD,cAAevD,KAAKsgB,kBAAmBtgB,KAAKwJ,UAChGqX,EAAiB,IAAIvB,GAAqBtf,KAAKuD,cAAevD,KAAKsgB,kBAAmBtgB,KAAKwJ,UAExE,QAAlBxJ,KAAK0f,SACN1f,KAAK0L,mBAAmB7D,oBAAoB+Y,EAAa5gB,KAAK8H,iBAAiBtD,UAAS,SACtF6O,GACElP,EAAK+P,SAAS4M,GAAG,oCACjB3c,EAAK4c,WAAa1N,EAClBlP,EAAKsH,WAAa,cAClBtH,EAAK6c,oBAAmB,GACzB,SACA9e,GACCiC,EAAKlC,aAAeC,EACpBiC,EAAKwc,2BAA4B,EACjCxc,EAAKgW,OAAOC,cAAc,sBAGJ,YAAlBpa,KAAK0f,UAEb1f,KAAK0L,mBAAmB3D,2BAA2B8Y,EAAgB7gB,KAAK8H,iBAAiBtD,UAAS,SAChG6O,GACElP,EAAK6c,oBAAmB,EACxB/M,OAAOC,SAASC,KAAO,oCACxB,SACAjS,GACCiC,EAAKlC,aAAeC,EACpBiC,EAAKwc,2BAA4B,EACjCxc,EAAKgW,OAAOC,cAAc,uBAOlCoF,GAAA3f,UAAAohB,iBAAA,SAAiBX,EAA2BD,GAClB,EAApBC,GAAgD,IAAtBA,GAA2BD,GACvDrgB,KAAKqE,oBAAoBnD,sBAAwBlB,KAAK8H,gBACtD9H,KAAKqE,oBAAoB9C,SAAW,qBAEpCvB,KAAKugB,2BAGTf,GAAA3f,UAAA2e,sBAAA,SAAsBC,GACpB,YAA4B,IAAdA,G,qBA9QjBjd,EAAAA,UAASZ,KAAA,CAAC,CACTa,SAAU,oBACVC,SAAA,qnnB,24DARMid,EAAAA,Q,MAPC5H,I,MAQDmK,EAAAA,U,MATCja,G,MAEAnG,G,MAQAoI,K,0CAWNvH,EAAAA,Q,qBACAA,EAAAA,Q,iBACAA,EAAAA,Q,gBACAA,EAAAA,Q,sBACAA,EAAAA,Q,sBACAA,EAAAA,SAoQH6d,IA3OE,SAAAA,GACUrF,EACAU,EACA3G,EACAxI,EACArH,EACA6E,GALAlJ,KAAAma,OAAAA,EACAna,KAAA6a,0BAAAA,EACA7a,KAAAkU,SAAAA,EACAlU,KAAA0L,mBAAAA,EACA1L,KAAAqE,oBAAAA,EACArE,KAAAkJ,kBAAAA,EAzBVlJ,KAAAyL,WAAa,OAIbzL,KAAA8f,QAAkB,GAClB9f,KAAA0f,SAAmB,GAGnB1f,KAAAghB,oBAA8B,EAE9BhhB,KAAAqgB,iBAA2B,EAC3BrgB,KAAAogB,oBAA8B,EAC9BpgB,KAAA2gB,2BAAqC,EACrC3gB,KAAAme,qBAA+B,EAC/Bne,KAAAkgB,gBAA0B,EAC1BlgB,KAAAmgB,mBAA6B,EAC7BngB,KAAA8L,mBAAoB,EClDtB,IAAAqV,IAgBEA,GAAAthB,UAAAkB,SAAA,a,qBAZDS,EAAAA,UAASZ,KAAA,CAAC,CACTa,SAAU,qBACVC,SAAA,6c,kLAKCC,EAAAA,MAAKf,KAAA,CAAC,mBAQTugB,IANE,SAAAA,MCZF,IAAAC,GAME,SAAY/I,EAAiCgJ,EAA4BC,GACvEthB,KAAKuhB,0BAA4B,CAC/BrC,YAAa,GACbsC,KAAM,gBAERxhB,KAAKqY,wBAA0BA,EAC/BrY,KAAKqhB,kBAAmBA,EACxBrhB,KAAKshB,oBAAqBA,GCZ9BG,GA6BE,SAAYtG,EAA0BuG,EAAiClY,EAAkBmY,EAAyBC,GAChH5hB,KAAK8X,OAAS4J,EAAmB5J,OACjC9X,KAAK6hB,YAAcH,EAAmBI,YACtC9hB,KAAKmb,gBAAkBA,EACvBnb,KAAK+hB,iBAAmBJ,EACxB3hB,KAAKif,SAAUyC,EAAmBzC,SAClCjf,KAAKgiB,wBAA0BN,EAAmBO,cAClDjiB,KAAKkiB,kBAAoB,QACzBliB,KAAKmiB,aAAeT,EAAmBU,cACvCpiB,KAAKqiB,WAAaX,EAAmBW,WACrCriB,KAAKsiB,gBAAkB,CACrBpD,YAAa,GACbsC,KAAM,aAERxhB,KAAKuiB,eAAgB,CACnBrD,YAAa,8BACbsC,KAAM,WAERxhB,KAAKwiB,eAAiBd,EAAmBc,eACzCxiB,KAAKqf,UAAW7V,EACboY,IACD5hB,KAAKyiB,uBAAyBb,ICpDpCc,IAsCEA,GAAA7iB,UAAAkB,SAAA,WACEf,KAAKyL,WAAa,WAClBzL,KAAKuD,cAAgBvD,KAAKqE,oBAAoBC,gBAC9CtE,KAAKoB,aAAepB,KAAKqE,oBAAoBjD,aAC7CpB,KAAKqZ,qBAAuBrZ,KAAKqE,oBAAoBiV,WACrDtZ,KAAK2iB,uBAEL3iB,KAAK4iB,4BAA8B5iB,KAAKyR,YAAYC,MAAM,CACxDmR,oBAAqB,IAAIjR,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CAC1DD,EAAAA,WAAWE,SACXF,EAAAA,WAAWK,UAAU,GACrBL,EAAAA,WAAWM,UAAU,KACrBN,EAAAA,WAAWO,QAAQ,iCAI1BsQ,GAAA7iB,UAAA8iB,qBAAA,WAAA,IAAAxe,EAAAnE,KACGA,KAAK6a,0BAA0B5D,mBAAmBjX,KAAKoB,cAAcoD,UAAS,SAC5Eqb,GACE1b,EAAKlC,aAAekC,EAAKmN,iBAAgB,GACzCnN,EAAK2e,iBAAmBjD,EAAyB,KAAEpb,SAAS2H,OAAM,SAACyB,GACjE,OAAOA,GAAWA,EAAQoU,eAAiB9d,EAAK/C,eAC/C,GACH+C,EAAK4e,OAASlD,EAAyB,KAAEE,uB,IACnCiD,EAAcnD,EAAyB,KAAE7E,cAC7CiI,EAAoBpD,EAAyB,KAAE9E,2BAC/CmI,EAAqBF,GAAcA,IAAgB7e,EAAKZ,cAAgB,KAA4BY,EAAKZ,cAC3GY,EAAKgf,aAAeH,GAA4B,KAChD7e,EAAK+e,mBAAqBD,GAAwCC,GACnE,SACAhhB,GACCiC,EAAKlC,aAAekC,EAAKmN,iBAAgB,MAI/CoR,GAAA7iB,UAAAujB,eAAA,SAAetW,GACb,OAAO9M,KAAK6a,0BAA0B7C,qBAAqBlL,EAAO,MAErE4V,GAAA7iB,UAAAwjB,gBAAA,WACCrjB,KAAK8S,UAAU,EAAC,GAAO,GAAO,GAAO,I,IAC/BwQ,EAAqBtjB,KAAK4iB,4BAA4B7P,SAAS8P,oBAC/DU,EAAYD,EAAmBrQ,OAC/BjT,KAAK4iB,4BAA4B1P,OAASlT,KAAK4iB,4BAA4BzP,OAC7EnT,KAAKwjB,qBAAuBxjB,KAAK4iB,4BAA4B7P,SAAS8P,oBAAoBvd,MAC1FtF,KAAKyL,WAAa,gCAEa,IAA5B6X,EAAmBhe,OACpBtF,KAAK8S,UAAU,EAAC,GAAM,GAAO,GAAO,IAEP,IAA5BwQ,EAAmBhe,OAAege,EAAmB7P,SACtDzT,KAAK8S,UAAU,EAAC,GAAO,GAAM,GAAO,IAEnCyQ,GAAaA,EAAU7P,WAAa6P,EAAU7P,UAAUC,aAAe,GACxE3T,KAAK8S,UAAU,EAAC,GAAO,GAAO,GAAM,IAEnCyQ,GAAaA,EAAU3P,WAAgD,IAAnC2P,EAAU3P,UAAUD,cACzD3T,KAAK8S,UAAU,EAAC,GAAO,GAAO,GAAO,MAI3C4P,GAAA7iB,UAAAiT,UAAA,SAAU2Q,GACNzjB,KAAK0jB,2BAA6BD,EAAI,GACtCzjB,KAAK2jB,4BAA8BF,EAAI,GACvCzjB,KAAK4jB,+BAAiCH,EAAI,GAC1CzjB,KAAK6jB,+BAAiCJ,EAAI,IAE9Cf,GAAA7iB,UAAAikB,gBAAA,WAAA,IAAA3f,EAAAnE,KACEA,KAAKuS,yBAA0B,E,IAavBwR,EAZF3Q,EAASpT,KAAK4iB,4BAA4Bhf,IAAI,uBAAuB0B,MAEvEtF,KAAKqZ,qBAyBHrZ,KAAK6a,0BAA0BtD,oBAAoBvX,KAAK8iB,iBAAiBb,cAAe,aAAazd,UAAS,SAC9Gwf,GACE7f,EAAKlC,aAAekC,EAAKmN,iBAAgB,G,IACnCsP,EAAc,IAAIa,GACvBtd,EAAKgf,aAAchf,EAAK2e,iBAAkB3e,EAAK4e,OAAQ5e,EAAK+e,oBAC7D/e,EAAKuH,mBAAmBrE,eAAeuZ,GAAapc,UAAS,SAC3Dyf,GACE9f,EAAKlC,aAAekC,EAAKmN,iBAAgB,G,IACnC4S,EAAY3hB,KAAKC,MAAMyhB,GAC3BE,EAAU,IAAI/C,GACb8C,EAAgB,KAAE7L,wBAAyB6L,EAAgB,KAAEtW,UAAWwF,GACvE8Q,EAAU5F,SACZna,EAAKuH,mBAAmBnE,2BAA2B4c,GAAS3f,UAAS,SACnE4f,GACEjgB,EAAKlC,aAAekC,EAAKmN,iBAAgB,GACvB/O,KAAKC,MAAM4hB,GACf9F,SACZna,EAAKkgB,0BAER,SACAniB,GACCiC,EAAK0W,0BAA0BtD,oBAAoBpT,EAAK2e,iBAAiBb,cAAe,YAAYzd,YACpGL,EAAKlC,aAAekC,EAAKmN,iBAAgB,GACzCnN,EAAKoO,yBAA0B,KAItC,SACArQ,GACCiC,EAAK0W,0BAA0BtD,oBAAoBpT,EAAK2e,iBAAiBb,cAAe,YAAYzd,YACpGL,EAAKlC,aAAekC,EAAKmN,iBAAgB,GACzCnN,EAAKoO,yBAA0B,KAGpC,SACArQ,GACCiC,EAAKlC,aAAekC,EAAKmN,iBAAgB,GACzCnN,EAAKoO,yBAA0B,KA7DjCqP,EAAmB,CACrBlV,kBAAkB,eAClB6U,0BAA2B,CACzBrC,YAAa,GACbsC,KAAM,gBAERF,oBAAqBlO,EACrBkR,QAAStkB,KAAKwJ,UAEVua,EAAoB,IAAItC,GAC7BzhB,KAAKmjB,aAAcnjB,KAAK8iB,iBAAkB9iB,KAAKwJ,SAAUxJ,KAAKkjB,mBAAoBtB,GACnF5hB,KAAK6a,0BAA0BvD,oBAAoByM,GAAmBvf,UAAS,SAC7E+f,GACEpgB,EAAKlC,aAAekC,EAAKmN,iBAAgB,GAC1B/O,KAAKC,MAAM+hB,GACbjG,SACbna,EAAKkgB,0BAEN,SACAniB,GACCiC,EAAKlC,aAAekC,EAAKmN,iBAAgB,GACzCnN,EAAKoO,yBAA0B,MA6CvCmQ,GAAA7iB,UAAA2kB,+BAAA,SAA+BphB,GAC1BA,GAAiB,WAATA,EACgE,KAApEpD,KAAK4iB,4BAA4Bhf,IAAI,uBAAuB0B,MAC7DtF,KAAKyL,WAAa,4BAElBzL,KAAKqkB,yBAGTrkB,KAAKyL,WAAa,YAItBiX,GAAA7iB,UAAAwkB,uBAAA,WACErkB,KAAKqE,oBAAoB9C,SAAW,oBACpCvB,KAAKqE,oBAAoBuU,aAAc,EACvC5Y,KAAKqE,oBAAoBmJ,YAAa,GAExCkV,GAAA7iB,UAAAyR,gBAAA,SAAgBxO,GACd,MAAO,CACLC,MAAO,sCACPC,KAAM,kBACNC,UAAWH,I,qBA3LhBtB,EAAAA,UAASZ,KAAA,CAAC,CACTa,SAAU,gCACVC,SAAA,++K,qjBAVOqT,EAAAA,a,MAEA9N,G,MADAnG,G,MAEDiW,M,mCAWLpV,EAAAA,SAwLH+gB,IAtKE,SAAAA,GAAoBjR,EACZ/F,EACArH,EACAwW,GAHY7a,KAAAyR,YAAAA,EACZzR,KAAA0L,mBAAAA,EACA1L,KAAAqE,oBAAAA,EACArE,KAAA6a,0BAAAA,EAhBR7a,KAAA0jB,4BAAsC,EACtC1jB,KAAA2jB,6BAAuC,EACvC3jB,KAAA4jB,gCAA0C,EAC1C5jB,KAAA6jB,gCAA0C,EAC1C7jB,KAAAiC,aAAejC,KAAKsR,iBAAgB,GAEpCtR,KAAA+iB,OAAiB,KAEjB/iB,KAAAuS,yBAAkC,EAClCvS,KAAAmjB,aAAuB,KACvBnjB,KAAAkjB,mBAA6B,KAC7BljB,KAAAqZ,sBAAgC,EC9BlC,IAAAoL,GAQE,SAAYpM,EAAiCgJ,EAA4BjO,EAAesR,EAA4BC,EAA0BC,GAC5I5kB,KAAKuhB,0BAA4B,CACjCrC,YAAa,GACbsC,KAAM,eAENxhB,KAAKqY,wBAA0BA,EAC/BrY,KAAKqhB,kBAAmBA,EACxBrhB,KAAKshB,oBAAqBlO,EAC1BpT,KAAK6kB,iBAAkBH,EACvB1kB,KAAK8kB,wBAAyBF,EAC9B5kB,KAAK+kB,sBAAuBJ,GCnBhCK,IAiDEA,GAAAnlB,UAAAkB,SAAA,WAAA,IAAAoD,EAAAnE,KACEA,KAAK8S,UAAU,EAAC,GAAM,GAAM,GAAM,GAAM,GAAM,GAAQ,OACtD9S,KAAKyL,WAAa,WAClBzL,KAAKuD,cAAgBvD,KAAKqE,oBAAoBC,gBAC9CtE,KAAKoB,aAAepB,KAAKqE,oBAAoBjD,aAC7CpB,KAAKqZ,qBAAuBrZ,KAAKqE,oBAAoBiV,WACrDtZ,KAAK2iB,uBAEL3iB,KAAK0L,mBAAmBrD,YAAY7D,UAAS,SAC3CygB,GACE9gB,EAAK+gB,0BAA2B,EAChC/gB,EAAKlC,aAAekC,EAAKmN,iBAAgB,GACzCnN,EAAKghB,WAAa5iB,KAAKC,MAAMyiB,IAC9B,SACDjjB,GACEiS,OAAOmR,SAAS,EAAG,GACnBjhB,EAAK+gB,0BAA2B,EAChC/gB,EAAKlC,aAAekC,EAAKmN,iBAAgB,KAI7CtR,KAAKqlB,2BAA6BrlB,KAAKyR,YAAYC,MAAM,CACvD0B,OAAQ,IAAIxB,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CAC7CD,EAAAA,WAAWE,SACXF,EAAAA,WAAWK,UAAU,GACrBL,EAAAA,WAAWM,UAAU,KACrBN,EAAAA,WAAWO,QAAQ,8BAErBkT,kBAAmB,IAAI1T,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CACxDD,EAAAA,WAAWE,SACXF,EAAAA,WAAWO,QAAQ,mCAErBmT,kBAAmB,IAAI3T,EAAAA,YAAY,IACnC4T,QAAS,IAAI5T,EAAAA,YAAY,OAG7BoT,GAAAnlB,UAAAujB,eAAA,SAAetW,GACb,OAAO9M,KAAK6a,0BAA0B7C,qBAAqBlL,EAAO,MAEpEkY,GAAAnlB,UAAAikB,gBAAA,WAAA,IAAA3f,EAAAnE,KACEA,KAAKuS,yBAA0B,E,IAavBwR,EAZFhR,EAAW/S,KAAKqlB,2BAA2BtS,SAC7C/S,KAAKqZ,qBA2BTrZ,KAAK6a,0BAA0BtD,oBAAoBvX,KAAK8iB,iBAAiBb,cAAe,aAAazd,UAAS,SAC5Gwf,GACE7f,EAAKlC,aAAekC,EAAKmN,iBAAgB,GACvB/O,KAAKC,MAAMwhB,GAC5BpD,EAAc,IAAIa,GACjBtd,EAAKgf,aAAchf,EAAK2e,iBAAkB3e,EAAK4e,OAAQ5e,EAAK+e,oBAC9D/e,EAAKuH,mBAAmBrE,eAAeuZ,GAAapc,UAAS,SAC3Dyf,GACE9f,EAAKlC,aAAekC,EAAKmN,iBAAgB,G,IACnC4S,EAAY3hB,KAAKC,MAAMyhB,GAC7BE,EAAU,IAAIM,GACbP,EAAgB,KAAE7L,wBAAyB6L,EAAgB,KAAEtW,UAAWmF,EAASK,OAAO9N,MAAOnB,EAAKshB,eAAgB1S,EAASwS,kBAAkBjgB,MAAOyN,EAASyS,QAAQlgB,OACnK4e,EAAU5F,SACbna,EAAKuH,mBAAmBlE,0BAA0B2c,GAAS3f,UAAS,SAClE4f,GACEjgB,EAAKlC,aAAekC,EAAKmN,iBAAgB,GACvB/O,KAAKC,MAAM4hB,GACf9F,SACZna,EAAKkgB,0BAER,SACAniB,GACCiC,EAAK0W,0BAA0BtD,oBAAoBpT,EAAK2e,iBAAiBb,cAAe,YAAYzd,YACpGL,EAAKlC,aAAekC,EAAKmN,iBAAgB,GACzCnN,EAAKoO,yBAA0B,KAItC,SACArQ,GACCiC,EAAK0W,0BAA0BtD,oBAAoBpT,EAAK2e,iBAAiBb,cAAe,YAAYzd,YACpGL,EAAKlC,aAAekC,EAAKmN,iBAAgB,GACzCnN,EAAKoO,yBAA0B,KAGpC,SACArQ,GACCiC,EAAKlC,aAAekC,EAAKmN,iBAAgB,GACzCnN,EAAKoO,yBAA0B,KAhE7BqP,EAAmB,CACrBlV,kBAAkB,cAClB6U,0BAA2B,CACzBrC,YAAa,GACbsC,KAAM,eAERF,oBAAqBvO,EAASK,OAAO9N,MACrCuf,iBAAkB7kB,KAAKylB,eACvBnB,QAAStkB,KAAKwJ,UAEVua,EAAoB,IAAItC,GAC7BzhB,KAAKmjB,aAAcnjB,KAAK8iB,iBAAkB9iB,KAAKwJ,SAAUxJ,KAAKkjB,mBAAoBtB,GACnF5hB,KAAK6a,0BAA0BvD,oBAAoByM,GAAmBvf,UAAS,SAC7E+f,GACEpgB,EAAKlC,aAAekC,EAAKmN,iBAAgB,GAC1B/O,KAAKC,MAAM+hB,GACbjG,SACZna,EAAKkgB,0BAEP,SACAniB,GACCiC,EAAKlC,aAAekC,EAAKmN,iBAAgB,GACzCnN,EAAKoO,yBAA0B,MA+CxCyS,GAAAnlB,UAAAwjB,gBAAA,WACGrjB,KAAK8S,UAAU,EAAC,GAAM,GAAM,GAAM,GAAM,GAAM,GAAQ,O,IAM9CC,EALEwQ,EAAYvjB,KAAKqlB,2BAA2BtS,SAASK,OAAOH,OAC5DyS,EAAc1lB,KAAKqlB,2BAA2BtS,SAASK,OAEvDuS,EAAiB3lB,KAAKqlB,2BAA2BtS,SAASuS,kBAChEtlB,KAAKqlB,2BAA2BnS,OAASlT,KAAKqlB,2BAA2BlS,OACrEJ,EAAW/S,KAAKqlB,2BAA2BtS,SACjD/S,KAAKwlB,QAAUzS,EAASyS,QAAQlgB,MAChCtF,KAAKslB,kBAAoBK,EAAcrgB,MACvCtF,KAAKulB,kBAAoBxS,EAASwS,kBAAkBjgB,MACpDtF,KAAKoT,OAASL,EAASK,OAAO9N,MAC9BtF,KAAKyL,WAAa,+BAEO,IAArBia,EAAYpgB,OACdtF,KAAK8S,UAAU,EAAC,GAAK,GAAM,GAAM,GAAM,GAAM,GAAQ,UAE/B,IAArB4S,EAAYpgB,OAAetF,KAAKqlB,2BAA2BtS,SAASK,OAAOK,SAC5EzT,KAAK8S,UAAU,EAAC,GAAM,GAAK,GAAM,GAAM,GAAM,GAAQ,UAEpDyQ,GAAaA,EAAU7P,WAAa6P,EAAU7P,UAAUC,aAAe,GACxE3T,KAAK8S,UAAU,EAAC,GAAM,GAAM,GAAK,GAAM,GAAM,GAAQ,UAEpDyQ,GAAaA,EAAU3P,WAAgD,IAAnC2P,EAAU3P,UAAUD,cACzD3T,KAAK8S,UAAU,EAAC,GAAM,GAAM,GAAM,GAAK,GAAM,GAAQ,UAE7B,IAAvB6S,EAAcrgB,OACftF,KAAK8S,UAAU,EAAC,GAAM,GAAM,GAAM,GAAM,GAAK,GAAQ,qBAE7B,IAAvB6S,EAAcrgB,OAAeqgB,EAAclS,SAC5CzT,KAAK8S,UAAU,EAAC,GAAM,GAAM,GAAM,GAAM,GAAM,GAAM,uBAI1DkS,GAAAnlB,UAAAiT,UAAA,SAAU2Q,EAAKnP,GACF,WAARA,GAA4B,QAARA,IACrBtU,KAAK6U,cAAgB4O,EAAI,GACzBzjB,KAAK4lB,eAAiBnC,EAAI,GAC1BzjB,KAAK6lB,kBAAoBpC,EAAI,GAC7BzjB,KAAK8lB,kBAAoBrC,EAAI,IAEpB,sBAARnP,GAAuC,QAARA,IAChCtU,KAAK+lB,yBAA2BtC,EAAI,GACpCzjB,KAAKgmB,0BAA4BvC,EAAI,KAI3CuB,GAAAnlB,UAAAomB,8BAAA,SAA8B7iB,GACvBA,GAAiB,WAATA,EACNpD,KAAKkmB,oBACNlmB,KAAKyL,WAAa,2BAElBzL,KAAKqkB,0BAGPrkB,KAAKqlB,2BAA2BtS,SAASuS,kBAAkBa,SAAS,IACpEnmB,KAAKyL,WAAa,aAGtBuZ,GAAAnlB,UAAAqmB,kBAAA,W,IAIW5R,EAHH8R,EAAapmB,KAAKqlB,2BAA2B/f,MAC/C+gB,GAAc,EAElB,IAAS/R,KAAS8R,EAChB,GAAIA,EAAWE,eAAehS,IAA+B,KAArB8R,EAAW9R,GAAc,CAC/D+R,GAAc,EACd,MAGJ,OAAOA,GAETrB,GAAAnlB,UAAAwkB,uBAAA,WACErkB,KAAKqE,oBAAoB9C,SAAW,oBACpCvB,KAAKqE,oBAAoBuU,aAAc,EACvC5Y,KAAKqE,oBAAoBmJ,YAAa,GAEvCwX,GAAAnlB,UAAA8iB,qBAAA,WAAA,IAAAxe,EAAAnE,KACCA,KAAK6a,0BAA0B5D,mBAAmBjX,KAAKoB,cAAcoD,UAAS,SAC5Eqb,GAEA1b,EAAK2e,iBAAmBjD,EAAyB,KAAEpb,SAAS2H,OAAM,SAACyB,GACjE,OAAOA,GAAWA,EAAQoU,eAAiB9d,EAAK/C,eAC/C,GACF+C,EAAK4e,OAASlD,EAAyB,KAAEE,uB,IAClCiD,EAAcnD,EAAyB,KAAE7E,cAC9CiI,EAAoBpD,EAAyB,KAAE9E,2BAC/CmI,EAAqBF,GAAcA,IAAgB7e,EAAKZ,cAAgB,KAA4BY,EAAKZ,cAC1GY,EAAKgf,aAAeH,GAA4B,KAChD7e,EAAK+e,mBAAqBD,GAAwCC,GACrE,SACEhhB,GACCiC,EAAKlC,aAAekC,EAAKmN,iBAAgB,MAK/C0T,GAAAnlB,UAAAyR,gBAAA,SAAgBxO,GACd,MAAO,CACLC,MAAO,wBACPC,KAAM,0BACNC,UAAWH,IAIfkiB,GAAAnlB,UAAA0mB,aAAA,SAAa3lB,GACXZ,KAAKylB,eAAiB7kB,EAAK4lB,OAAOlhB,MAClCtF,KAAKymB,iBAAmB7lB,EAAK4lB,OAAO5gB,QAAQhF,EAAK4lB,OAAOE,eAAeC,M,qBAhQ1EnlB,EAAAA,UAASZ,KAAA,CAAC,CACTa,SAAU,+BACVC,SAAA,utM,mkBAZOqT,EAAAA,a,MAKA9N,G,MAJAnG,G,MACAiW,M,mCAcNpV,EAAAA,SA6PHqjB,IAlOE,SAAAA,GAAoBvT,EACZ/F,EACArH,EACAwW,GAHY7a,KAAAyR,YAAAA,EACZzR,KAAA0L,mBAAAA,EACA1L,KAAAqE,oBAAAA,EACArE,KAAA6a,0BAAAA,EA3BR7a,KAAA4lB,gBAA0B,EAC1B5lB,KAAA6U,eAAyB,EACzB7U,KAAA6lB,mBAA6B,EAC7B7lB,KAAA8lB,mBAA6B,EAC7B9lB,KAAAgmB,2BAAqC,EACrChmB,KAAA+lB,0BAAoC,EACpC/lB,KAAAiC,aAAejC,KAAKsR,iBAAgB,GAIpCtR,KAAA+iB,OAAiB,KAKjB/iB,KAAAuS,yBAAmC,EACnCvS,KAAAklB,0BAAoC,EACpCllB,KAAAmjB,aAAuB,KACvBnjB,KAAAkjB,mBAA6B,KAG7BljB,KAAAqZ,sBAAgC,ECzClC,IAAAuN,IA2DEA,GAAA/mB,UAAAkB,SAAA,WAAA,IAAAoD,EAAAnE,KAEEA,KAAKuD,cAAgBvD,KAAKqE,oBAAoBC,gBAC9CtE,KAAKoL,eAAiBpL,KAAKqE,oBAAoBgH,gBAAgBmD,oBAC/DxO,KAAKsL,UAAYtL,KAAKqE,oBAAoBlD,WAC1CnB,KAAKgZ,iBAAmBhZ,KAAKqE,oBAAoBmJ,WACjDxN,KAAKuL,UAAYvL,KAAKqE,oBAAoBmH,UAC1CxL,KAAK6mB,eAAiB7mB,KAAKqE,oBAAoB6U,eAC/ClZ,KAAK8mB,eAAiB9mB,KAAKqE,oBAAoB+U,eAC/CpZ,KAAK+mB,cAAgB/mB,KAAKqE,oBAAoBiV,WAC9CtZ,KAAKkJ,kBAAkBY,eAAetF,UAAS,SAAG8J,GAAS,OAAAnK,EAAK6iB,mBAAqB1Y,IACrFtO,KAAK2f,4BAIPiH,GAAA/mB,UAAA8f,yBAAA,WAAA,IAAAxb,EAAAnE,KAC+B,QAAxBA,KAAKoL,eACNpL,KAAK6a,0BAA0B5D,mBAAmBjX,KAAKsL,WAAW9G,UAAS,SAC3Eqb,GAEGA,EAAyB,MAAKA,EAAyB,KAAEpb,SACxDN,EAAK8iB,6BAA6BpH,EAAyB,MACnDA,EAA6B,SACrC1b,EAAK8iB,6BAA6BpH,IAElC1b,EAAK6b,sBAAwB,QAC7B7b,EAAK2Z,uBAAuBoJ,KAAK,OAEpC,SACAhlB,GACCiC,EAAK6b,sBAAwB9d,EAC7BiC,EAAK2Z,uBAAuBoJ,KAAK,OAInClnB,KAAK6a,0BAA0B7D,mBAAmBhX,KAAKuD,eAAeiB,UAAS,SAC/Eqb,GAEKA,EAAyB,MAAKA,EAAyB,KAAEpb,SAC1DN,EAAK8iB,6BAA6BpH,EAAyB,MACnDA,EAA6B,SACrC1b,EAAK8iB,6BAA6BpH,IAElC1b,EAAK6b,sBAAwB,QAC7B7b,EAAK2Z,uBAAuBoJ,KAAK,OAEpC,SACAhlB,GACCiC,EAAK6b,sBAAwB9d,EAC7BiC,EAAK2Z,uBAAuBoJ,KAAK,QAOzCN,GAAA/mB,UAAAonB,6BAAA,SAA6BpH,GAE3B7f,KAAKmnB,qBAAuBtH,EAAmBpb,SAC5CzE,KAAKmnB,uBACFnnB,KAAKonB,2BAA6BvH,EAAmBpb,SAASW,QAEpEpF,KAAKqnB,UAAYxH,EAAmBE,uBAChCF,EAAkC,gBAAMld,YAC1C3C,KAAKsnB,iBAAkB,GAGzBtnB,KAAK8d,uBAAuBoJ,KAAUlnB,KAAKmnB,qBAA2B,QACtEnnB,KAAKunB,8BAA8BvnB,KAAKmnB,uBAG1CP,GAAA/mB,UAAA2nB,yBAAA,SAAyBC,GACvB,MAAO,kBAAkBA,GAG3Bb,GAAA/mB,UAAAujB,eAAA,SAAetW,GACb,OAAO9M,KAAK6a,0BAA0B7C,qBAAqBlL,EAAO,MAGpE8Z,GAAA/mB,UAAAyd,wBAAA,SAAwBpQ,EAAY+U,GAClC/U,EAAMC,iBACNnN,KAAK0nB,SAAWzF,EACZtc,EAAM3F,KAAKgZ,iBAAmB,yBAA2B,0BAC7DrT,GAAO3F,KAAKwL,UAAY,oBAAsB,qBAC9C7F,GAAO3F,KAAK+mB,cAAgB,wBAA0B,yBACtDphB,GAAM,aAAa3F,KAAKqE,oBAAoBmU,SAC5C7S,GAAO3F,KAAK8mB,eAAiB,yBAA2B,0BACxDnhB,GAAO3F,KAAK6mB,eAAiB,yBAA2B,0BAExD7mB,KAAKma,OAAOC,cAAc,8BAA8Bpa,KAAKoL,eAAc,kBAAkBpL,KAAKuD,cAAa,QAAQvD,KAAK0nB,SAAW/hB,IAGzIihB,GAAA/mB,UAAA8nB,oBAAA,SAAoBpmB,EAAkB0gB,GACpCjiB,KAAK0nB,SAAWzF,EAChBjiB,KAAKqE,oBAAoBjD,aAAepB,KAAK0nB,SAC7C1nB,KAAKqE,oBAAoB9C,SAAWA,GAGtCqlB,GAAA/mB,UAAA0nB,8BAAA,SAA8BK,GAC7B5nB,KAAK6d,6BAA8B,EACnC7d,KAAK6nB,kBACL7nB,KAAK2d,4BAA4BuJ,KAAKU,IAGvChB,GAAA/mB,UAAAioB,aAAA,WACE9nB,KAAK6d,6BAA8B,EACnC7d,KAAK+nB,mCAAqC,EAC1C/nB,KAAKgoB,gCAAkC,EACvChoB,KAAKioB,+BAAgC,GAGvCrB,GAAA/mB,UAAAohB,iBAAA,SAAiBgB,GACfjiB,KAAKqE,oBAAoBjD,aAAe6gB,EACxCjiB,KAAKqE,oBAAoBzC,4BAA8B5B,KAAKqnB,UAC5DrnB,KAAKqE,oBAAoBkH,UAAYvL,KAAKwL,UAC1CxL,KAAKqE,oBAAoB4U,eAAiBjZ,KAAKkZ,eAC/ClZ,KAAKqE,oBAAoB8U,eAAiBnZ,KAAKoZ,eAC/CpZ,KAAKqE,oBAAoBiV,WAAatZ,KAAK+mB,cAExC/mB,KAAKwL,WACNxL,KAAKqE,oBAAoBnD,sBAAwBlB,KAAKkoB,WACtDloB,KAAKqE,oBAAoB9C,SAAW,gBAEpCvB,KAAKqE,oBAAoBnD,sBAAwB,KACjDlB,KAAKqE,oBAAoB9C,SAAW,sBAKxCqlB,GAAA/mB,UAAAgoB,gBAAA,WACK7nB,KAAK6d,6BAAgC7d,KAAKsnB,gBACzCtnB,KAAKgoB,gCAAiC,GAC9BhoB,KAAK6d,6BAAiC7d,KAAKsnB,iBAAoBtnB,KAAKgnB,mBAGrEhnB,KAAK6d,8BAAgC7d,KAAKsnB,iBAAmBtnB,KAAKgnB,qBACvEhnB,KAAKwL,WAIPxL,KAAK+nB,kCAAoC/nB,KAAKmoB,oBAC9CnoB,KAAKioB,+BAAgC,IAJrCjoB,KAAK+nB,mCAAoC,EACzC/nB,KAAKioB,+BAAgC,KALvCjoB,KAAK+nB,mCAAoC,EACzC/nB,KAAKioB,+BAAgC,IAYzCrB,GAAA/mB,UAAAuoB,gCAAA,SAAgClb,GAC9BA,EAAMC,iBACNnN,KAAK0nB,SAAW,KAChB1nB,KAAK6d,6BAA8B,EACnC7d,KAAK+nB,mCAAoC,EACzC/nB,KAAKioB,+BAAgC,EACrCjoB,KAAKgoB,gCAAiC,EAEtChoB,KAAK2d,4BAA4BuJ,KAAK,KAGxCN,GAAA/mB,UAAAwoB,cAAA,SAAcnb,EAAWob,EAAUpjB,GACjCgI,EAAMC,iBAENnN,KAAKuoB,6BAA+BD,G,qBAnNvC9mB,EAAAA,UAASZ,KAAA,CAAC,CACTa,SAAU,iCACVC,SAAA,sma,ivDANMid,EAAAA,Q,MAHC5H,I,MACAjW,G,MAGAmG,G,MACAiC,K,6CASNvH,EAAAA,MAAKf,KAAA,CAAC,wB,kBACNe,EAAAA,MAAKf,KAAA,CAAC,gB,iBACNe,EAAAA,MAAKf,KAAA,CAAC,e,wBACNe,EAAAA,MAAKf,KAAA,CAAC,sB,2BACNe,EAAAA,MAAKf,KAAA,CAAC,yB,sBACNe,EAAAA,MAAKf,KAAA,CAAC,oB,sBACNe,EAAAA,MAAKf,KAAA,CAAC,oB,kBACNe,EAAAA,MAAKf,KAAA,CAAC,gB,sBACNe,EAAAA,MAAKf,KAAA,CAAC,oB,aACNe,EAAAA,MAAKf,KAAA,CAAC,W,mCAEN4nB,EAAAA,S,8BACAA,EAAAA,UAmMH5B,IA1KE,SAAAA,GAAoBzM,EACVU,EACAxW,EACAqH,EACAxC,GAJUlJ,KAAAma,OAAAA,EACVna,KAAA6a,0BAAAA,EACA7a,KAAAqE,oBAAAA,EACArE,KAAA0L,mBAAAA,EACA1L,KAAAkJ,kBAAAA,EA9BAlJ,KAAA2d,4BAAoD,IAAI8K,EAAAA,aACxDzoB,KAAA8d,uBAA+C,IAAI2K,EAAAA,aAE7DzoB,KAAAyL,WAAa,OAEbzL,KAAAggB,sBAAgC,KAEhChgB,KAAA0nB,SAAmB,KACnB1nB,KAAA0oB,eAAyB,EACzB1oB,KAAAsL,UAAoB,KAEpBtL,KAAA6d,6BAAuC,EACvC7d,KAAA+nB,mCAA6C,EAC7C/nB,KAAAgoB,gCAA0C,EAC1ChoB,KAAAioB,+BAAyC,EACzCjoB,KAAAsnB,iBAA2B,EAC3BtnB,KAAAqnB,UAAoB,KAIpBrnB,KAAAuL,WAAqB,EAGrBvL,KAAAonB,2BAAqC,ECjDvC,IAAAuB,IAmBIA,GAAA9oB,UAAAkB,SAAA,aAGA4nB,GAAA9oB,UAAAujB,eAAA,SAAetW,GACb,OAAO9M,KAAK6a,0BAA0B7C,qBAAqBlL,EAAO,MAEpE6b,GAAA9oB,UAAA+oB,0BAAA,SAA0B1nB,EAA+ByD,EAA0BnB,GACjFxD,KAAK0d,yBAAyBwJ,KAAK,CAAChmB,sBAAqBA,EAAEyD,iBAAgBA,EAAEnB,cAAaA,K,qBArB/FhC,EAAAA,UAASZ,KAAA,CAAC,CACTa,SAAU,+BACVC,SAAA,2zD,iJAJMid,EAAAA,Q,MAFC5H,M,sCAWNpV,EAAAA,MAAKf,KAAA,CAAC,iB,gCACN4nB,EAAAA,UAeHG,IAbE,SAAAA,GACUxO,EACAU,GADA7a,KAAAma,OAAAA,EACAna,KAAA6a,0BAAAA,EAJA7a,KAAA0d,yBAA8C,IAAI+K,EAAAA,aCZ9D,IAAAI,GAOE,SAAYxQ,EAAiCgJ,EAA4BjO,EAAkB0V,EAAuBC,GAChH/oB,KAAKuhB,0BAA4B,CAC/BrC,YAAa,GACbsC,KAAM,aAERxhB,KAAKqY,wBAA0BA,EAC/BrY,KAAKqhB,kBAAmBA,EACxBrhB,KAAKoT,OAASA,GAAkB,KAChCpT,KAAK8oB,YAAcA,GAA4B,KAC/C9oB,KAAKgpB,UAAYD,GAAsB,MCjB3CE,IAkHEA,GAAAppB,UAAAkB,SAAA,WAAA,IAAAoD,EAAAnE,KACEA,KAAKyL,WAAa,WACqC,OAAnDzL,KAAKqE,oBAAoBnD,wBAC3BlB,KAAKyL,WAAa,+BAGpBzL,KAAKuD,cAAgBvD,KAAKqE,oBAAoBC,gBAC9CtE,KAAKoB,aAAepB,KAAKqE,oBAAoBjD,aAC7CpB,KAAKoX,WAAapX,KAAKqE,oBAAoBnD,sBAC3ClB,KAAKoL,eAAiBpL,KAAKqE,oBAAoBgH,gBAC/CrL,KAAKqZ,qBAAuBrZ,KAAKqE,oBAAoBiV,WACrDtZ,KAAKuL,UAAYvL,KAAKqE,oBAAoBkH,UAC1CvL,KAAKkpB,qBAAuBlpB,KAAKyR,YAAYC,MAAM,CACjDyX,YAAa,IAAIvX,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CAClDD,EAAAA,WAAWE,SACXF,EAAAA,WAAWK,UAAU,GACrBL,EAAAA,WAAWM,UAAU,KACrBN,EAAAA,WAAWO,QAAQ,8BAErB2W,SAAU,IAAInX,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CAC/CD,EAAAA,WAAWE,SACXF,EAAAA,WAAWO,QAAQ,4BAGvBpS,KAAKkJ,kBAAkBL,gBAAgBrE,UAAS,SAAG8J,GACnD,OAAAnK,EAAKsE,eAAiB6F,EAAKlC,OAAM,SAACkC,GAAQ,MAAqB,SAArBA,EAAKmN,gBAC/Czb,KAAKkJ,kBAAkBO,cAAcjF,UAAS,SAAG8J,GAAS,OAAAnK,EAAKqF,SAAW8E,IAC1EtO,KAAK2iB,wBAEPsG,GAAAppB,UAAAwd,0BAAA,SAA0B1R,GACxB,OAAO3L,KAAK6a,0BAA0BrD,2BAA2B7L,IAGnEsd,GAAAppB,UAAAsH,uBAAA,WAAA,IAAAhD,EAAAnE,KAEMA,KAAKuL,UAYPvL,KAAKuZ,wBAAwBzC,iBAAiB9W,KAAKuD,eAAeiB,UAAS,SACzEgV,GACErV,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GACrEsB,EAAKqV,cAAgBA,EAA8B,eAAEpN,OAAM,SAACT,GACxDA,EAAaC,KAAKtF,QAAO,SAACuF,GACK,IAA1BA,EAAI+L,oBACLzT,EAAKkc,iBAAkB,K,IAGvB+I,EAASjlB,EAAKkZ,0BAAyB,GAC3CgM,EAAkB,EAATD,GAAyB,GAAVA,GAAejlB,EAAKkc,iBAAoB1U,EAAa0M,0BAA4BlU,EAAKiT,WAC9G,OAAOjT,EAAKiT,WAAciS,EAAkB,EAATD,GAAyB,GAAVA,GAAejlB,EAAKkc,mBAEzE,SACAne,GACCiC,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,KA1BvE7C,KAAK0L,mBAAmBvE,uBAAuBnH,KAAKoX,YAAY5S,UAAS,SACvEmH,GACExH,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GACnEsB,EAAKwH,aAAgBA,EACrBxH,EAAKkf,mBACN,SACAnhB,GACCiC,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,MA0B3EomB,GAAAppB,UAAAypB,qBAAA,SAAqB3d,GACnB3L,KAAKklB,0BAA2B,EAChCllB,KAAK2L,aAAeA,GAGtBsd,GAAAppB,UAAAwkB,uBAAA,WACErkB,KAAKqE,oBAAoB9C,SAAW,oBACpCvB,KAAKqE,oBAAoBkH,UAAYvL,KAAKuL,UAC1CvL,KAAKqE,oBAAoBuU,aAAc,EACvC5Y,KAAKqE,oBAAoBmJ,YAAa,GAGxCyb,GAAAppB,UAAA0pB,gBAAA,SAAgBrc,GACdA,EAAMC,iBACNnN,KAAKqE,oBAAoB9C,SAAW,cACpCvB,KAAKqE,oBAAoBkH,UAAYvL,KAAKuL,UAC1CvL,KAAKqE,oBAAoBuU,aAAc,EACvC5Y,KAAKqE,oBAAoBmJ,YAAa,GAGxCyb,GAAAppB,UAAA2pB,sBAAA,SAAsBtc,GACpBA,EAAMC,iBACNnN,KAAK8S,UAAU,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAQ,OACrE9S,KAAKuL,UAMPvL,KAAKyL,WAAa,YALlBzL,KAAKqE,oBAAoB9C,SAAW,cACpCvB,KAAKqE,oBAAoBkH,UAAYvL,KAAKuL,UAC1CvL,KAAKqE,oBAAoBuU,aAAc,EACvC5Y,KAAKqE,oBAAoBmJ,YAAa,IAK1Cyb,GAAAppB,UAAA4pB,wBAAA,W,IACQC,EAAsB1pB,KAAKkpB,qBAAqBnW,SAASoW,YAC7DQ,EAAmB3pB,KAAKkpB,qBAAqBnW,SAASoW,YAAYlW,OAClE2W,EAAgB5pB,KAAKkpB,qBAAqBnW,SAASgW,SACnDc,EAAkB7pB,KAAK8pB,eAAiB9pB,KAAK+pB,mBAC7CC,EAAoD,UAA5BhqB,KAAK+pB,mBAE/B/pB,KAAK8S,UAAU,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAQ,QAClE9S,KAAKiqB,0BAA4BjqB,KAAKkqB,yBAA4BL,KAAqBG,GAAyBJ,EAAczW,OAAS6W,GAAyBJ,EAAczW,OAASuW,EAAoBvW,QAChNnT,KAAKuS,yBAA0B,EAC/BvS,KAAKmqB,wBAAsD,UAA5BnqB,KAAK+pB,mBAAiCL,EAAoBpkB,MAAQtF,KAAK+pB,mBACtG/pB,KAAK+oB,SAAWa,EAActkB,MAC9BtF,KAAKoqB,qBAEDpqB,KAAK8pB,eACP9pB,KAAK8S,UAAU,EAAC,GAAM,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAQ,UAEtE9S,KAAK+pB,oBACP/pB,KAAK8S,UAAU,EAAC,GAAO,GAAM,GAAO,GAAO,GAAO,GAAO,GAAO,GAAQ,eAEvE9S,KAAK+pB,oBAAsBC,IACI,IAA7BN,EAAoBpkB,OACrBtF,KAAK8S,UAAU,EAAC,GAAO,GAAO,GAAM,GAAO,GAAO,GAAO,GAAO,GAAQ,SAE1C,IAA7B4W,EAAoBpkB,OAAeokB,EAAoBjW,SACxDzT,KAAK8S,UAAU,EAAC,GAAO,GAAO,GAAO,GAAM,GAAO,GAAO,GAAO,GAAQ,SAEvE6W,GAAoBA,EAAiBjW,WAAaiW,EAAiBjW,UAAUC,aAAe,GAC7F3T,KAAK8S,UAAU,EAAC,GAAO,GAAO,GAAO,GAAO,GAAM,GAAO,GAAO,GAAQ,SAEvE6W,GAAoBA,EAAiB/V,WAAuD,IAA1C+V,EAAiB/V,UAAUD,cAC9E3T,KAAK8S,UAAU,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,GAAM,GAAO,GAAQ,UAGjD,KAAxB8W,EAActkB,OACftF,KAAK8S,UAAU,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAM,GAAQ,YAE/C,KAAxB8W,EAActkB,OAAiBskB,EAAcnW,SAC9CzT,KAAK8S,UAAU,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,GAAO,cAI9EmW,GAAAppB,UAAAiT,UAAA,SAAUuB,EAAMC,GACH,WAARA,GAA4B,QAARA,IACrBtU,KAAKqqB,sBAAwBhW,EAAK,IAEzB,gBAARC,GAAiC,QAARA,IAC1BtU,KAAKsqB,2BAA6BjW,EAAK,IAE9B,UAARC,GAA2B,QAARA,IACpBtU,KAAKuqB,sBAAwBlW,EAAK,GAClCrU,KAAKwqB,wBAA0BnW,EAAK,GACpCrU,KAAKyqB,0BAA4BpW,EAAK,GACtCrU,KAAK0qB,0BAA4BrW,EAAK,IAE7B,aAARC,GAA8B,QAARA,IACvBtU,KAAK2qB,gBAAkBtW,EAAK,GAC5BrU,KAAK4qB,kBAAoBvW,EAAK,KAGlC4U,GAAAppB,UAAAuqB,iBAAA,WAAA,IAcUrG,EAdV5f,EAAAnE,KACMA,KAAKqZ,qBA8BTrZ,KAAK6a,0BAA0BtD,oBAAoBvX,KAAK0hB,mBAAmBO,cAAe,aAAazd,UAAS,SAC9Gwf,GACE7f,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GACnDN,KAAKC,MAAMwhB,GACb1F,UACNsC,EAAc,IAAIa,GACvBtd,EAAKgf,aAAchf,EAAKud,mBAAoBvd,EAAK4e,OAAQ5e,EAAK+e,oBAC/D/e,EAAK0W,0BAA0B1D,sBAAsByJ,EAAazc,EAAKwH,aAAa0M,yBAAyB7T,UAAS,SACpHyf,GACE9f,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,G,IAC/DqhB,EAAY3hB,KAAKC,MAAMyhB,GACrBE,EAAU,IAAI0E,GACnB3E,EAAgB,KAAE7L,wBAAyB6L,EAAgB,KAAEtW,UAAWzJ,EAAK2lB,cAAe3lB,EAAKgmB,wBAAyBhmB,EAAK4kB,UAC5H7E,EAAU5F,SACZna,EAAKuH,mBAAmBjE,yBAAyB0c,GAAS3f,UAAS,SAEnE4f,GACEjgB,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GACnDN,KAAKC,MAAM4hB,GACb9F,SACbna,EAAKkgB,0BAEP,SACAniB,GACCiC,EAAK0W,0BAA0BtD,oBAAoBpT,EAAKud,mBAAmBO,cAAe,YAAYzd,YACtGL,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GACnEoR,OAAOmR,SAAS,EAAG,GACnBjhB,EAAKoO,yBAA0B,KAIpC,SACArQ,GACCiC,EAAK0W,0BAA0BtD,oBAAoBpT,EAAKud,mBAAmBO,cAAe,YAAYzd,YACtGL,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GACnEoR,OAAOmR,SAAS,EAAG,GACnBjhB,EAAKoO,yBAA0B,MAItC,SACArQ,GACCiC,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GACnEoR,OAAOmR,SAAS,EAAG,GACnBjhB,EAAKoO,yBAA0B,KAzE7BqP,EAAmB,CACrBxO,OAAQpT,KAAK8pB,cACbpd,kBAAkB,YAClBoc,YAAa9oB,KAAKmqB,wBAClB5I,0BAA2B,CACzBrC,YAAa,GACbsC,KAAM,aAERnJ,wBAAyBrY,KAAK2L,aAAa0M,wBAC3CgH,UAAWrf,KAAKwJ,SAChBwf,UAAWhpB,KAAK+oB,UAEZhF,EAAoB,IAAItC,GAC7BzhB,KAAKmjB,aAAcnjB,KAAK0hB,mBAAoB1hB,KAAKwJ,SAAUxJ,KAAKkjB,mBAAoBtB,GACrF5hB,KAAK6a,0BAA0BxD,uBAAuB0M,EAAoB/jB,KAAK2L,aAAa0M,yBAAyB7T,UAAS,SAC5H+f,GACEpgB,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GACpDN,KAAKC,MAAM+hB,GACbjG,SACZna,EAAKkgB,0BAEP,SACAniB,GACCiC,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GACnEoR,OAAOmR,SAAS,EAAG,GACnBjhB,EAAKoO,yBAA0B,MAsDvC0W,GAAAppB,UAAAwjB,gBAAA,WACE,IAQMwH,EACEC,EATL9qB,KAAK2L,eACN3L,KAAK+qB,sBAAuB,EAC5B/qB,KAAKkpB,qBAAqBtlB,IAAI,eAAeonB,QAC7ChrB,KAAKkpB,qBAAqBtlB,IAAI,eAAeuiB,SAAS,IACtDnmB,KAAKkpB,qBAAqBtlB,IAAI,YAAYonB,QAC1ChrB,KAAKkpB,qBAAqBtlB,IAAI,YAAYuiB,SAAS,IACnDnmB,KAAK8pB,cAAgB,GACrB9pB,KAAK+pB,mBAAqB,GACtBc,EAAyB7qB,KAAKqd,0BAA0Brd,KAAK2L,cAC3Dmf,EAAwB9qB,KAAK0hB,mBAAmB5J,OAAS+S,EAC/D7qB,KAAKiqB,wBAAkD,EAAxBa,EAC/B9qB,KAAKkqB,wBAA0BY,EAAwB,EACvD9qB,KAAKirB,oBAAsBjrB,KAAKiqB,wBAA0B,CACtDlnB,MAAO,wBACPqQ,OAAQ,8DACPpT,KAAKkqB,wBAA0B,CAChCnnB,MAAO,0BACPqQ,OAAQ,oBACP,CACDrQ,MAAM,8BACNqQ,OAAO,IAEXpT,KAAKkrB,iBAAmBlrB,KAAKiqB,wBAA0B,4BAA8BjqB,KAAKkqB,wBAA0B,8BAAgC,oBACpJlqB,KAAKmrB,gBAAmBnrB,KAAKiqB,wBAA0Ba,EAAwB9qB,KAAKkqB,yBAAmD,EAAzBY,EAA6B,EAC3I9qB,KAAKorB,4BAAuD,GAAzBN,EAA6B,GAA8B,EAAzBA,EACrE9qB,KAAKqrB,oBAAsBR,GAA0B7qB,KAAK0hB,mBAAmB5J,OAAS9X,KAAK0hB,mBAAmB5J,OAAS+S,EACpH7qB,KAAKuL,YACNvL,KAAKyL,WAAa,iCAIvBwd,GAAAppB,UAAA8iB,qBAAA,WAAA,IAAAxe,EAAAnE,KACCA,KAAK6a,0BAA0B5D,mBAAmBjX,KAAKoB,cAAcoD,UAAS,SAC5Eqb,GACE1b,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,GACnEsB,EAAKud,mBAAqB7B,EAAyB,KAAEpb,SAAS2H,OAAM,SAACyB,GACnE,OAAOA,GAAWA,EAAQoU,eAAiB9d,EAAK/C,eAC/C,GACH+C,EAAK4e,OAASlD,EAAyB,KAAEE,uB,IACnCiD,EAAcnD,EAAyB,KAAE7E,cAC/CiI,EAAoBpD,EAAyB,KAAE9E,2BAC/CmI,EAAqBF,GAAcA,IAAgB7e,EAAKZ,cAAgB,KAA4BY,EAAKZ,cAC1GY,EAAKgf,aAAeH,GAA4B,KAChD7e,EAAK+e,mBAAqBD,GAAwCC,EAClE/e,EAAKgD,0BACL,SACAjF,GACCiC,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,MAIzEomB,GAAAppB,UAAAyrB,kBAAA,SAAkBC,EAAKnoB,GACrBpD,KAAK+qB,sBAAuB,EACf,gBAAT3nB,GAAkC,UAARmoB,IAC5BvrB,KAAKuqB,uBAAwB,EAC7BvqB,KAAKwqB,yBAA0B,EAC/BxqB,KAAKyqB,2BAA4B,EACjCzqB,KAAK0qB,2BAA4B,EACjC1qB,KAAK+qB,sBAAuB,IAGhC9B,GAAAppB,UAAA2rB,qBAAA,SAAqBpP,GACnBpc,KAAKklB,0BAA2B,EAChCllB,KAAK0nB,SAAUtL,GAGjB6M,GAAAppB,UAAAsc,6BAAA,WAEEnc,KAAKqE,oBAAoBnD,sBAAwBlB,KAAK0nB,SACtD1nB,KAAKqE,oBAAoBkH,UAAYvL,KAAKuL,UAC1CvL,KAAKqE,oBAAoB9C,SAAW,e,qBA3ZvCC,EAAAA,UAASZ,KAAA,CAAC,CACTa,SAAU,wBACVC,SAAA,w9c,41DAZOI,G,MAFD+U,I,MAHC9B,EAAAA,a,MAEA9N,G,MADAnG,G,MAGDiW,I,MAOC7N,K,oCAUNvH,EAAAA,Q,gBACAA,EAAAA,SAsZHsnB,IApUE,SAAAA,GACQjlB,EACAuV,EACA9H,EACA/F,EACArH,EACAwW,EACA3R,GANAlJ,KAAAgE,oBAAAA,EACAhE,KAAAuZ,wBAAAA,EACAvZ,KAAAyR,YAAAA,EACAzR,KAAA0L,mBAAAA,EACA1L,KAAAqE,oBAAAA,EACArE,KAAA6a,0BAAAA,EACA7a,KAAAkJ,kBAAAA,EAjFRlJ,KAAA0hB,mBAAkC,CAChC5J,OAAQ,GAEV9X,KAAA+iB,OAAiB,KACjB/iB,KAAAiC,aAAejC,KAAKgE,oBAAoBnB,uBAAsB,GAE9D7C,KAAAwZ,cAAiC,GAGjCxZ,KAAA+qB,sBAAiC,EAIjC/qB,KAAAuS,yBAAmC,EACnCvS,KAAAklB,0BAAoC,EACpCllB,KAAAmqB,wBAAkC,KAClCnqB,KAAAoL,eAAyB,KACzBpL,KAAAqgB,iBAA2B,EAE3BrgB,KAAAqqB,uBAAiC,EACjCrqB,KAAAsqB,4BAAsC,EACtCtqB,KAAAuqB,uBAAiC,EACjCvqB,KAAAwqB,yBAAmC,EACnCxqB,KAAAyqB,2BAAqC,EACrCzqB,KAAA0qB,2BAAqC,EACrC1qB,KAAA2qB,iBAA2B,EAC3B3qB,KAAA4qB,mBAA6B,EAC7B5qB,KAAAmjB,aAAuB,KACvBnjB,KAAAkjB,mBAA6B,KAC7BljB,KAAA8pB,cAAwB,KACxB9pB,KAAA+pB,mBAA6B,KAC7B/pB,KAAA+oB,SAAmB,KAEnB/oB,KAAAoX,WAAqB,KACrBpX,KAAAqZ,sBAAgC,EAChCrZ,KAAAyI,eAAuC,GAEvCzI,KAAAyrB,WAA0D,CACxDC,YAAa,CACXC,UAAW,iGACXC,SAAU,6BACVC,aAAc,uBACdC,eAAgB,SAElBC,UAAW,CACTC,YAAa,4CACbJ,SAAU,6BACVK,MAAO,UAGXjsB,KAAAksB,gBAAkB,CAChBR,YAAa,CACXS,YAAa,qCACbC,SAAU,uCACVC,OAAQ,+BACRJ,MAAO,SAETF,UAAW,CACTO,SAAU,8FACVC,SAAU,wGACVN,MAAO,UAIXjsB,KAAAwsB,OAAS,CACPpZ,OAAQ,CACNqZ,UAAW,oBACXC,WAAY,cACZC,cAAe,iBACfV,MAAO,UClGb,IAAAW,GASE,SAAYzR,EAAyBtP,EAAWkM,EAAoB8U,EAAuBrjB,GACzFxJ,KAAKmb,gBAAkBA,EACvBnb,KAAK6L,IAAMA,EACX7L,KAAK+X,WAAaA,EAClB/X,KAAK6sB,cAAgBA,EACrB7sB,KAAKqf,UAAY7V,GChBrBsjB,GAIE,SAAY/U,EAAoB8U,GAC9B7sB,KAAK+X,WAAaA,EAClB/X,KAAK6sB,cAAgBA,GCNzBE,GAII,SAAY1L,EAA4B2L,GACtChtB,KAAKqhB,kBAAmBA,EACxBrhB,KAAKgtB,cAAgBA,GCN3BC,GAGI,SAAYC,GACVltB,KAAKktB,mBAAoBA,GCezB3N,GAAiB,wBAEvB4N,IAkFEA,GAAAttB,UAAAkB,SAAA,WAAA,IAAAoD,EAAAnE,KACEA,KAAKotB,WAAU,4BACY,KAAxBptB,KAAKqtB,gBAAyBrtB,KAAKqtB,iBAAmB1qB,YACvD3C,KAAKyL,WAAa,IAEjBzL,KAAKmO,UAGLnO,KAAK6L,MACR7L,KAAK8X,OAAU9X,KAAK6L,IAAIyhB,OAASttB,KAAK6L,IAAI+L,mBAEtC5X,KAAK6N,UACP7N,KAAKutB,iBAAmBvtB,KAAK6N,QACF,YAAxB7N,KAAK6N,QAAQxL,SACdrC,KAAKwtB,kBAAmB,IAG5BxtB,KAAKytB,OAASztB,KAAKqE,oBAAoBgH,gBACvCrL,KAAKyf,mBAAqBzf,KAAKqE,oBAAoBjD,aACnDpB,KAAK0tB,cAAgB1tB,KAAKyR,YAAYC,MAAM,CAC1Cic,cAAe,IAAI/b,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CACpDD,EAAAA,WAAWE,SACXF,EAAAA,WAAWO,QAAQ,2DAErB0F,OAAQ,IAAIlG,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CAC7CD,EAAAA,WAAWE,SACXF,EAAAA,WAAWO,QAAQ,6BAErBwb,aAAc,IAAIhc,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CAACD,EAAAA,WAAWE,YACjE8b,eAAgB,IAAIjc,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CAACD,EAAAA,WAAWE,YACnEqB,OAAQ,IAAIxB,EAAAA,cAEO5R,KAAK0tB,cAAc3a,SACT,eAAEoT,SAAS,4BAA6B,CAAC2H,UAAU,IACvD,KAAxB9tB,KAAKqtB,iBACRrtB,KAAKyL,WAAa,QAGS,gBAAxBzL,KAAKqtB,gBACNrtB,KAAKuV,cAAclF,mBAAmB7L,UAAS,SAC7CupB,GACE5pB,EAAK4pB,cAAgBA,EAAc3hB,OAAM,SAAEkC,GAAS,OAAuB,IAAvBA,EAAK0f,gBACzD7pB,EAAK4pB,cAAgB5pB,EAAK4pB,cAAc3hB,OAAM,SAAEkC,GAAS,MAAc,4BAAdA,EAAKkT,OAC9Drd,EAAK6J,GAAGC,gBACR9J,EAAK8pB,oBAAsBF,EAAc3hB,OAAM,SAAEkC,GAAS,OAAuB,IAAvBA,EAAK0f,gBAC/D7pB,EAAK8pB,oBAAoBC,KAAI,SAAE5R,EAAGC,GAAM,OAAAD,EAAE6R,WAAWC,cAAc7R,KACnEpY,EAAK6J,GAAGC,kBAIe,6BAAxBjO,KAAKqtB,gBAAiDrtB,KAAKquB,uBAC5DruB,KAAKyL,WAAa,4BAQtBzL,KAAKqE,oBAAoBC,iBAG3B6oB,GAAAttB,UAAA6N,aAAA,WACE1N,KAAKsuB,mBAAmB,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,GAAQ,O,IAC9DC,EAAevuB,KAAK0tB,cAAc3a,SACtCyb,EAAyBxuB,KAAK6L,IAAI+L,kBAAoB2W,EAAezW,OAAOxS,MAC5EtF,KAAK0tB,cAAc3a,SAAuB,aAAE0b,UAAU,MACtDzuB,KAAK0tB,cAAc3a,SAAyB,eAAE0b,UAAU,MACxDzuB,KAAK0tB,cAAc3a,SAAiB,OAAE0b,UAAU,MAC9CzuB,KAAK0tB,cAAcxa,OAASlT,KAAK0tB,cAAcva,OAASqb,EAC1DxuB,KAAKyL,WAAa,gBAG0B,IAAzC8iB,EAA8B,cAAEjpB,OACjCtF,KAAKsuB,mBAAmB,EAAC,GAAM,GAAO,GAAO,GAAO,GAAO,GAAQ,iBAEzB,IAAzCC,EAA8B,cAAEjpB,OAAeipB,EAA8B,cAAE9a,SAChFzT,KAAKsuB,mBAAmB,EAAC,GAAO,GAAM,GAAO,GAAO,GAAO,GAAQ,iBAEhC,IAAlCC,EAAuB,OAAEjpB,OAC1BtF,KAAKsuB,mBAAmB,EAAC,GAAO,GAAO,GAAM,GAAO,GAAO,GAAQ,UAEhC,IAAlCC,EAAuB,OAAEjpB,OAAeipB,EAAuB,OAAE9a,SAClEzT,KAAKsuB,mBAAmB,EAAC,GAAO,GAAM,GAAO,GAAM,GAAO,GAAQ,UAEjEC,EAAezW,OAAO3E,QAAUqb,GACjCxuB,KAAKsuB,mBAAmB,EAAC,GAAO,GAAO,GAAO,GAAO,GAAM,GAAQ,YAKzEnB,GAAAttB,UAAA6uB,iBAAA,WAAA,IAAAvqB,EAAAnE,KACEA,KAAK2gB,2BAA4B,E,IAC3BgO,EAAe3uB,KAAK0tB,cAAc3a,SAAS+E,OAAOxS,MACvDspB,EAAkB5uB,KAAK6L,IAAI0C,WAAaogB,EACxC/N,EAAc,IAAIgM,GAClB5sB,KAAKuD,cAAevD,KAAK6L,IAAK+iB,EAAiB5uB,KAAK0tB,cAAc3a,SAAS4a,cAAcroB,MAAOtF,KAAKwJ,UACtGxJ,KAAK0L,mBAAmBhE,+BAA+BmnB,mBAAmB7uB,KAAK8H,iBAAiBgnB,OAAQ9uB,KAAK6L,IAAIkjB,GAAInO,GAAapc,UAAS,SACzI6O,GACM9Q,KAAKC,MAAM6Q,GAAUiL,UACnB0Q,EAAQ7qB,EAAKoH,UAAY,oBAAsB,qBACjDyjB,GAAS,aAAa7qB,EAAKqF,SAC3BwlB,GAAS7qB,EAAK8U,eAAiB,yBAA2B,0BAC1D+V,GAAS7qB,EAAKgV,eAAiB,yBAA2B,0BACxDhV,EAAKE,oBAAoBjD,cAC3B+C,EAAKgW,OAAO8U,mBAAmBC,iBAAgB,WAAS,OAAA,GACxD/qB,EAAKgW,OAAOgV,oBAAsB,SAClChrB,EAAKgW,OAAOC,cAAc,oBAAoBjW,EAAKZ,cAAa,oCAAoCY,EAAKspB,OAAM,oBAAoBtpB,EAAK2D,gBAAe,QAAQ3D,EAAKE,oBAAoBjD,aAAe4tB,IAEvM7qB,EAAKkgB,2BAIV,SACAniB,GACCiC,EAAKlC,aAAeC,EACpBiC,EAAKwc,2BAA4B,KAKvCwM,GAAAttB,UAAAyuB,mBAAA,SAAmB7K,EAAKnP,GACV,QAARA,GACFtU,KAAKovB,qBAAuB3L,EAAI,GAChCzjB,KAAKqvB,sBAAwB5L,EAAI,GACjCzjB,KAAKsvB,cAAgB7L,EAAI,GACzBzjB,KAAKuvB,eAAiB9L,EAAI,GAC1BzjB,KAAKwvB,4BAA8B/L,EAAI,GACvCzjB,KAAK6U,cAAgB4O,EAAI,IACT,kBAARnP,GAAmC,QAARA,GACnCtU,KAAKovB,qBAAuB3L,EAAI,GAChCzjB,KAAKqvB,sBAAwB5L,EAAI,IAChB,WAARnP,GAA4B,QAARA,GAC7BtU,KAAKsvB,cAAgB7L,EAAI,GACzBzjB,KAAKuvB,eAAiB9L,EAAI,GAC1BzjB,KAAKwvB,4BAA8B/L,EAAI,IACtB,WAARnP,GAA4B,QAARA,IAC7BtU,KAAK6U,cAAgB4O,EAAI,KAK7B0J,GAAAttB,UAAA4vB,iBAAA,WACEzvB,KAAKiC,cAAe,EACpBjC,KAAKyL,WAAa,GAClBzL,KAAK+N,mBAAoB,EACzB/N,KAAKsuB,mBAAmB,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,GAAQ,O,IAC9DC,EAAevuB,KAAK0tB,cAAc3a,SAEtC/S,KAAK0tB,cAAc3a,SAAuB,aAAE0b,UAAU,MACtDzuB,KAAK0tB,cAAc3a,SAAyB,eAAE0b,UAAU,MACxDzuB,KAAK0tB,cAAc3a,SAAiB,OAAE0b,UAAU,MAC9CzuB,KAAK0tB,cAAcxa,OAASlT,KAAK0tB,cAAcva,OACjDnT,KAAKqtB,eAAiB,GACtBrtB,KAAKyL,WAAa,6BAG0B,IAAzC8iB,EAA8B,cAAEjpB,OACjCtF,KAAKsuB,mBAAmB,EAAC,GAAM,GAAO,GAAO,GAAO,GAAQ,iBAElB,IAAzCC,EAA8B,cAAEjpB,OAAeipB,EAA8B,cAAE9a,SAChFzT,KAAKsuB,mBAAmB,EAAC,GAAO,GAAM,GAAO,GAAO,GAAQ,iBAEzB,IAAlCC,EAAuB,OAAEjpB,OAC1BtF,KAAKsuB,mBAAmB,EAAC,GAAO,GAAO,GAAM,GAAO,GAAQ,UAEzB,IAAlCC,EAAuB,OAAEjpB,OAAeipB,EAAuB,OAAE9a,SAClEzT,KAAKsuB,mBAAmB,EAAC,GAAO,GAAM,GAAO,GAAM,GAAQ,UAExB,IAAlCC,EAAuB,OAAEjpB,OAC1BtF,KAAKsuB,mBAAmB,EAAC,GAAO,GAAO,GAAO,GAAM,GAAO,GAAO,UAEjEC,EAAezW,OAAO3E,OACvBnT,KAAKsuB,mBAAmB,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,YAOlEnB,GAAAttB,UAAA6vB,8BAAA,WAEE,OADA1vB,KAAKiC,cAAe,EACjBjC,KAAK+N,mBACN/N,KAAKqE,oBAAoBsrB,iBAAkB,EAC3C3vB,KAAK4vB,iBAAiB1I,YACtBlnB,KAAKqE,oBAAoBwrB,wBAAyB,IAG/C7vB,KAAKquB,sBACRruB,KAAKqE,oBAAoBsrB,iBAAkB,EAC3C3vB,KAAK8vB,iBAAiB5I,KAAK,CAAC9T,OAAQpT,KAAK+vB,qBAAsB7jB,KAAMlM,KAAK4tB,oBAC1E5tB,KAAKqE,oBAAoBwrB,wBAAyB,KAGpD7vB,KAAKyL,WAAa,GAClBzL,KAAKgwB,cAAgB,MACrBhwB,KAAKqtB,eAAiB,eACtBrtB,KAAK+N,mBAAoB,EACzB/N,KAAKiC,aAAe,QACjBjC,KAAK8N,0BACN9N,KAAKqE,oBAAoB9C,SAAW,mBAIxC4rB,GAAAttB,UAAAowB,4BAAA,SAA4BpiB,GAI1B,IACI0gB,EACFC,EALFxuB,KAAKqE,oBAAoBsrB,iBAAkB,EAC3C3vB,KAAKiC,aAAe,GACpBjC,KAAKsuB,mBAAmB,EAAC,GAAO,GAAO,GAAO,GAAO,GAAQ,OACxDtuB,KAAK+N,kBAkB6B,KAFnCwgB,EAAevuB,KAAK0tB,cAAc3a,UAEV,OAAEzN,OAAeipB,EAAuB,OAAEjpB,MAAQ,EAC1EtF,KAAKsuB,mBAAmB,EAAC,GAAO,GAAO,GAAM,GAAO,GAAQ,WAE1DtuB,KAAKqtB,eAAiB,GACtBrtB,KAAKyL,WAAa,0BAClBzL,KAAK4vB,iBAAiB1I,KAAKqH,EAAuB,OAAEjpB,SAtBtDipB,EAAevuB,KAAK0tB,cAAc3a,SACpCyb,EAAyBxuB,KAAK6L,IAAI+L,mBAAqB2W,EAAezW,OAAOxS,MAC3EtF,KAAK0tB,cAAcxa,QACgB,IAAlCqb,EAAuB,OAAEjpB,OAAeipB,EAAuB,OAAEjpB,MAAQ,EAC1EtF,KAAKsuB,mBAAmB,EAAC,GAAO,GAAO,GAAM,GAAO,GAAQ,UAClB,IAAlCC,EAAuB,OAAEjpB,OAAeipB,EAAuB,OAAE9a,QACzEzT,KAAKsuB,mBAAmB,EAAC,GAAO,GAAO,GAAO,GAAM,GAAQ,UACpDC,EAAezW,OAAO3E,QAAUqb,EACxCxuB,KAAKsuB,mBAAmB,EAAC,GAAO,GAAO,GAAO,GAAO,GAAO,WAE1DtuB,KAAKqtB,eAAiB,GACtBrtB,KAAKyL,WAAa,8BAkB1B0hB,GAAAttB,UAAAqwB,8BAAA,WACElwB,KAAKyL,WAAa,GAClBzL,KAAKqtB,eAAiB,eACtBrtB,KAAK+N,mBAAoB,EACzB/N,KAAKiC,aAAe,IAGtBkrB,GAAAttB,UAAAswB,sBAAA,WAAA,IAIQvP,EAJRzc,EAAAnE,KACMA,KAAK2gB,4BACT3gB,KAAKowB,gBAAiB,EACtBpwB,KAAKqwB,aAAerwB,KAAK0tB,cAAc3a,SAAS+E,OAAOxS,MACjDsb,EAAc,IAAIkM,GAAyB9sB,KAAKqwB,aAAarwB,KAAK0tB,cAAc3a,SAAS4a,cAAcroB,OAC7GtF,KAAK0L,mBAAmB3C,oCAAoC8lB,mBAAmB7uB,KAAK8H,iBAAiBgnB,OAAQ9uB,KAAK6L,IAAIkjB,GAAInO,GAAapc,UAAS,SAC9I6O,GACM9Q,KAAKC,MAAM6Q,KACblP,EAAKmsB,oBAAqB,EAC1BnsB,EAAKkpB,eAAkB,GACvBlpB,EAAKsH,WAAa,iCAClBtH,EAAK+oB,mBAAoB3qB,KAAKC,MAAM6Q,GAAUkd,sBAEjD,SACAruB,GACCiC,EAAKlC,aAAeC,EACpBiC,EAAKwc,2BAA4B,EACjCxc,EAAK6J,GAAGC,oBAMdkf,GAAAttB,UAAA2wB,cAAA,WAAA,IAAArsB,EAAAnE,KACEA,KAAKiC,aAAe,GACpBjC,KAAK2gB,2BAA4B,EAC7B3gB,KAAK+N,oBACP/N,KAAKowB,gBAAiB,GAEpBpwB,KAAKktB,qBAAuBvqB,WAAyC,KAA5B3C,KAAKktB,qBAChDltB,KAAKktB,mBAAqBltB,KAAKmO,UAAUoiB,qB,IAErC3P,EAAc,IAAIqM,GAA8BjtB,KAAKktB,oBAE3DltB,KAAK0L,mBAAmB1C,yBAAyB4X,GAAapc,UAAS,SACnE6O,GACE9Q,KAAKC,MAAM6Q,KACTlP,EAAKkpB,eAAkB,GACvBlpB,EAAKsH,WAAa,yBAClBtH,EAAKqM,gBAAkBjO,KAAKC,MAAM6Q,GAAUlC,iBAC5ChN,EAAKssB,aAAeluB,KAAKC,MAAM6Q,GAAUqd,gBAE9C,SACAxuB,GACCiC,EAAKlC,aAAeC,EACpBiC,EAAKwc,2BAA4B,KAMvCwM,GAAAttB,UAAA8wB,4BAAA,SAA4B9iB,GAC1B7N,KAAKqE,oBAAoBsrB,iBAAkB,EACA,SAAxC3vB,KAAKqE,oBAAoBhD,aAC1BrB,KAAKquB,sBAAuB,GAE9BruB,KAAKiC,aAAe,GACpBjC,KAAK4tB,cAAqE,OAAtD5tB,KAAK0tB,cAAc3a,SAAuB,aAAEzN,MAAiBtF,KAAK0tB,cAAc3a,SAAyB,eAAU/S,KAAK0tB,cAAc3a,SAAuB,cAAlDzN,MAC3HtF,KAAK4tB,cAAsC,8BAAtB5tB,KAAK4tB,cAEpB5tB,KAAK+vB,qBAAqBzjB,SAAS,UAA4D,IAA/CtM,KAAK0tB,cAAc3a,SAAiB,OAAEzN,OAA8D,MAA/CtF,KAAK0tB,cAAc3a,SAAiB,OAAEzN,MAE1ItF,KAAK+vB,qBAAqBzjB,SAAS,UAA4D,KAAhDtM,KAAK0tB,cAAc3a,SAAiB,OAAEzN,OAC9FtF,KAAK4wB,gBAAiB,EACtB5wB,KAAK4tB,cAAiB,IAAM5tB,KAAK0tB,cAAc3a,SAAiB,OAAEzN,MAClEtF,KAAK+vB,qBAAuB/vB,KAAK0tB,cAAc3a,SAAiB,OAAEzN,MAC7DtF,KAAKquB,qBACRruB,KAAK8vB,iBAAiB5I,KAAK,CAAC9T,OAAQpT,KAAK+vB,qBAAsB7jB,KAAMlM,KAAK4tB,gBAE1E5tB,KAAKqtB,eAAiB,GACtBrtB,KAAKyL,WAAa,yBAIfzL,KAAKquB,sBACRruB,KAAKqE,oBAAoBwrB,wBAAyB,EAClD7vB,KAAK8vB,iBAAiB5I,KAAK,CAAC9T,OAAQpT,KAAK+vB,qBAAsB7jB,KAAMlM,KAAK4tB,iBAE1E5tB,KAAKqtB,eAAiB,GACtBrtB,KAAKyL,WAAa,wBAlBlBzL,KAAKsuB,mBAAmB,EAAC,GAAO,GAAO,GAAO,GAAM,GAAO,GAAO,UAFpEtuB,KAAK4wB,gBAAiB,GA0B1BzD,GAAAttB,UAAAgxB,oBAAA,WACE7wB,KAAKiC,aAAe,GACpBjC,KAAKqtB,eAAiB,cACtBrtB,KAAKyL,WAAa,GAClBzL,KAAK+N,mBAAoB,EACzB/N,KAAKiC,cAAe,EACpBjC,KAAK4wB,gBAAiB,EACtB5wB,KAAK6U,eAAgB,GAGvBsY,GAAAttB,UAAAixB,wBAAA,WAEC9wB,KAAKiC,aAAe,GACnBjC,KAAK4wB,gBAAiB,EACtB5wB,KAAK6U,eAAgB,EACrB7U,KAAKqtB,eAAiB,cACtBrtB,KAAKyL,WAAa,GAClBzL,KAAK+N,mBAAoB,GAG3Bof,GAAAttB,UAAAkxB,mBAAA,WAAA,IAAA5sB,EAAAnE,KACEA,KAAK2gB,2BAA4B,EACjC3gB,KAAKiC,aAAe,GAChBjC,KAAK+N,oBACP/N,KAAKowB,gBAAiB,G,IAGlBxP,EAAc,IAAImM,GAAyB/sB,KAAK6N,QAAQD,UAAU5N,KAAK4tB,cAC7E5tB,KAAK0L,mBAAmB5C,kBAAkB8X,GAAapc,UAAS,SAC9D6O,GACQ9Q,KAAKC,MAAM6Q,KACblP,EAAKkpB,eAAkB,GACvBlpB,EAAKsH,WAAa,yBAClBtH,EAAKqM,gBAAiBjO,KAAKC,MAAM6Q,GAAUlC,iBACxC5O,KAAKC,MAAM6Q,GAAUqd,gBACxBvsB,EAAKssB,aAAeluB,KAAKC,MAAM6Q,GAAUqd,iBAG9C,SACAxuB,GACCiC,EAAKlC,aAAeC,EACpBiC,EAAKwc,2BAA4B,EACjCxc,EAAK6J,GAAGC,mBAMdkf,GAAAttB,UAAAmxB,mBAAA,WAAA,IAAA7sB,EAAAnE,KACEA,KAAK2gB,2BAA4B,EACjC3gB,KAAKiC,aAAe,GAChBjC,KAAK+N,oBACP/N,KAAKowB,gBAAiB,G,IAGlBxP,EAAc,IAAImM,GAAyB/sB,KAAK6N,QAAQD,UAAU,iCACxE5N,KAAK0L,mBAAmB5C,kBAAkB8X,GAAapc,UAAS,SAC9D6O,GACQ9Q,KAAKC,MAAM6Q,KACblP,EAAKkpB,eAAkB,GACvBlpB,EAAKsH,WAAa,8BAClBtH,EAAKqM,gBAAiBjO,KAAKC,MAAM6Q,GAAUlC,iBACxC5O,KAAKC,MAAM6Q,GAAUqd,gBACtBvsB,EAAKssB,aAAeluB,KAAKC,MAAM6Q,GAAUqd,iBAGhD,SACAxuB,GACCiC,EAAKlC,aAAeC,EACpBiC,EAAKwc,2BAA4B,KAIvCwM,GAAAttB,UAAAyrB,kBAAA,SAAkBC,EAAKjmB,GACrB2rB,aAAaC,QAAQ,UAAW3F,G,IAC1BgD,EAAevuB,KAAK0tB,cAAc3a,SACxCwb,EAA+B,eAAEpI,SAAS,4BAA6B,CAAC2H,UAAU,IAClFS,EAAuB,OAAEvD,QACzBhrB,KAAKmxB,yBAA0B,EAC/BnxB,KAAKiC,cAAe,EACpBjC,KAAK6U,eAAgB,EACrB7U,KAAKoxB,gBAAiB,EACtBpxB,KAAK4wB,gBAAiB,EACtB5wB,KAAK+vB,qBAAuBxE,EACzBvrB,KAAK+vB,qBAAqBzjB,SAAS,WACpCtM,KAAKoxB,gBAAiB,EACtBpxB,KAAK4wB,gBAAiB,EACtB5wB,KAAK4tB,aAAerC,IAIxB4B,GAAAttB,UAAA0mB,aAAA,SAAa3lB,G,IACL2tB,EAAevuB,KAAK0tB,cAAc3a,SACxCwb,EAA6B,aAAEvD,QAC/BuD,EAAuB,OAAEvD,QACzBhrB,KAAKmxB,yBAA0B,EAC/BnxB,KAAKoxB,gBAAiB,EACtBpxB,KAAK4wB,gBAAiB,EACtB5wB,KAAK+vB,qBAAuBnvB,EAAK4lB,OAAO5gB,QAAQhF,EAAK4lB,OAAO5gB,QAAQ8gB,eAAeqI,GACnF/uB,KAAKqxB,aAAgB,GAAGrxB,KAAK+vB,qBAAqBttB,MAAM,MAAM,GAAG2C,OAE9DpF,KAAK+vB,qBAAqBzjB,SAAS,WACpCtM,KAAKoxB,gBAAiB,EACtBpxB,KAAK4wB,gBAAiB,EACtB5wB,KAAK4tB,aAAehtB,EAAK4lB,OAAO5gB,QAAQhF,EAAK4lB,OAAO5gB,QAAQ8gB,eAAeqI,KAM/E5B,GAAAttB,UAAAyxB,uBAAA,SAAuBpkB,GAAvB,IAAA/I,EAAAnE,KACEkN,EAAMC,iBAEFnN,KAAKqE,oBAAoBuU,cAAgBjW,WAAa3C,KAAKqE,oBAAoByU,iBAAmBnW,YACpG3C,KAAKqE,oBAAoByU,eAAiB,QAC1C9Y,KAAKqE,oBAAoBuU,aAAc,GAErC5Y,KAAKgK,2BAEPhK,KAAKqE,oBAAoBwrB,wBAAyB,EAClD7vB,KAAKyL,WAAa,OAClBzL,KAAKqE,oBAAoB9C,SAAW,oBACpCvB,KAAKkJ,kBAAkBa,6BAA4B,GACnD/J,KAAKkJ,kBAAkBmB,kBAAkB,uBAEtCrK,KAAKquB,uBACRruB,KAAKqE,oBAAoBsrB,iBAAkB,EAC3C3vB,KAAK8vB,iBAAiB5I,KAAK,CAAC9T,OAAQpT,KAAK+vB,qBAAsB7jB,KAAMlM,KAAK4tB,eAC1E5tB,KAAKqE,oBAAoBwrB,wBAAyB,GAEhD7vB,KAAKqE,oBAAoBwrB,wBAoD3B7vB,KAAKqE,oBAAoB9C,SACzBvB,KAAKqE,oBAAoBwrB,wBAAyB,IApD7C7vB,KAAK6N,SACN7N,KAAKkJ,kBAAkBsB,mBAAmB,CAACsC,OAAQ9M,KAAK6N,QAAQf,OAAOuL,wBAAyBrY,KAAK8H,gBAAiB8F,UAAU5N,KAAK6N,QAAQD,YAE3I5N,KAAKgK,yBACPhK,KAAKkJ,kBAAkBmB,kBAAkB,sBAEzCrK,KAAKkJ,kBAAkBmB,kBAAkB,sBAE3CrK,KAAKiC,aAAe,GACpBjC,KAAKqE,oBAAoB9C,SAAW,oBAEpCvB,KAAKqE,oBAAoBmH,UAAYxL,KAAKuL,UAC1CvL,KAAKqE,oBAAoB6U,eAAiBlZ,KAAKiZ,eAC/CjZ,KAAKqE,oBAAoB+U,eAAiBpZ,KAAKmZ,eAC/CnZ,KAAKqE,oBAAoB2F,0BAA2B,EACpDhK,KAAK0L,mBAAmBtD,eAAe5D,UAAS,SAC9C4I,GACMC,EAAS9K,KAAKC,MAAM4K,GAAUhB,OAAM,SAACkB,GAAW,OAAAA,EAAQC,MAAQgS,KACpEpb,EAAKE,oBAAoBmJ,aAAaH,EAAO,IAAKA,EAAO,GAAGI,QAC7D,SACDzL,GACEmC,EAAKE,oBAAoBmJ,YAAa,IAItCgT,EAAUxgB,KAAKyf,mBAAqB,QAAQzf,KAAKyf,mBAAuB,GAC5Ee,GAAWxgB,KAAKqE,oBAAoBmJ,WAAa,yBAA2B,0BAC5EgT,GAAWxgB,KAAKqE,oBAAoBmH,UAAY,oBAAsB,qBACtEgV,GAAWxgB,KAAKqZ,qBAAuB,wBAA0B,yBACjEmH,GAAW,aAAaxgB,KAAKwJ,SAC7BgX,GAAWxgB,KAAKqE,oBAAoB6U,eAAiB,yBAA2B,0BAChFsH,GAAWxgB,KAAKqE,oBAAoB+U,eAAiB,yBAA2B,0BAC7EpZ,KAAK8N,0BACN0S,GAAWxgB,KAAKqE,oBAAoByJ,yBAElC9N,KAAKqE,oBAAoBuU,cAC3B5Y,KAAKqE,oBAAoBuU,YAAcjW,WAGjCgD,EADH3F,KAAKqE,oBAAoByU,eAChB,oBAAoB9Y,KAAKuD,cAAa,0CAA0CvD,KAAKytB,OAASjN,EAK9F,oBAAoBxgB,KAAKuD,cAAa,uCAAuCvD,KAAKqE,oBAAoBuU,YAAW,mBAAmB5Y,KAAKytB,OAASjN,EAJ9JxgB,KAAKma,OAAO8U,mBAAmBC,iBAAgB,WAAS,OAAA,GACxDlvB,KAAKma,OAAOgV,oBAAsB,SAClCnvB,KAAKma,OAAOC,cAAczU,KAclCwnB,GAAAttB,UAAAwkB,uBAAA,WAAA,IAAAlgB,EAAAnE,KACEA,KAAKkJ,kBAAkBmB,kBAAkB,oBACzCrK,KAAKiC,aAAe,GACpBjC,KAAKqE,oBAAoB9C,SAAW,oBACpCvB,KAAKqE,oBAAoBmH,UAAYxL,KAAKuL,UAC1CvL,KAAKqE,oBAAoB6U,eAAiBlZ,KAAKiZ,eAC/CjZ,KAAKqE,oBAAoB+U,eAAiBpZ,KAAKmZ,eAC/CnZ,KAAKqE,oBAAoB2F,0BAA2B,EACpDhK,KAAK0L,mBAAmBtD,eAAe5D,UAAS,SAC9C4I,GACMC,EAAS9K,KAAKC,MAAM4K,GAAUhB,OAAM,SAACkB,GAAW,OAAAA,EAAQC,MAAQgS,KACpEpb,EAAKE,oBAAoBmJ,aAAaH,EAAO,IAAKA,EAAO,GAAGI,QAC7D,SACDzL,GACEmC,EAAKE,oBAAoBmJ,YAAa,I,IAItCgT,EAAUxgB,KAAKyf,mBAAqB,QAAQzf,KAAKyf,mBAAuB,GAC3Ee,GAAWxgB,KAAKqE,oBAAoBmJ,WAAa,yBAA2B,0BAC5EgT,GAAWxgB,KAAKqE,oBAAoBmH,UAAY,oBAAsB,qBACtEgV,GAAWxgB,KAAKqZ,qBAAuB,wBAA0B,yBACjEmH,GAAW,aAAaxgB,KAAKwJ,SAC7BgX,GAAWxgB,KAAKqE,oBAAoB6U,eAAiB,yBAA2B,0BAChFsH,GAAWxgB,KAAKqE,oBAAoB+U,eAAiB,yBAA2B,0BAC7EpZ,KAAK8N,0BACN0S,GAAWxgB,KAAKqE,oBAAoByJ,yBAGjCnI,EAAM,oBAAoB3F,KAAKuD,cAAa,uCAAuCvD,KAAKqE,oBAAoBuU,YAAW,mBAAmB5Y,KAAKytB,OAASjN,EAC9JxgB,KAAKma,OAAO8U,mBAAmBC,iBAAgB,WAAS,OAAA,GACxDlvB,KAAKma,OAAOgV,oBAAsB,SAClCnvB,KAAKma,OAAOC,cAAczU,IAG5BwnB,GAAAttB,UAAA0xB,uCAAA,WAAA,IAwCU5rB,EAxCVxB,EAAAnE,KACMA,KAAKqE,oBAAoBhD,WAC3BrB,KAAKqE,oBAAoB9C,SAAW,eAGlCvB,KAAKqE,oBAAoBuU,cAAgBjW,WAAa3C,KAAKqE,oBAAoByU,iBAAmBnW,YACpG3C,KAAKqE,oBAAoByU,eAAiB,SAE5C9Y,KAAKkJ,kBAAkBa,6BAA4B,GACnD/J,KAAKkJ,kBAAkBsB,mBAAmB,CAACsC,OAAQ,GAAGuL,wBAAyB,GAAIzK,UAAU,KAC7F5N,KAAKkJ,kBAAkBmB,kBAAkB,oBACzCrK,KAAKiC,aAAe,GACpBjC,KAAKqE,oBAAoB9C,SAAW,oBAEpCvB,KAAKqE,oBAAoBmH,UAAYxL,KAAKuL,UAC1CvL,KAAKqE,oBAAoB6U,eAAiBlZ,KAAKiZ,eAC/CjZ,KAAKqE,oBAAoB+U,eAAiBpZ,KAAKmZ,eAC/CnZ,KAAKqE,oBAAoB2F,0BAA2B,EACpDhK,KAAK0L,mBAAmBtD,eAAe5D,UAAS,SAC9C4I,GACMC,EAAS9K,KAAKC,MAAM4K,GAAUhB,OAAM,SAACkB,GAAW,OAAAA,EAAQC,MAAQgS,KACpEpb,EAAKE,oBAAoBmJ,aAAaH,EAAO,IAAKA,EAAO,GAAGI,QAC7D,SACDzL,GACEmC,EAAKE,oBAAoBmJ,YAAa,IAItCgT,EAAUxgB,KAAKyf,mBAAqB,QAAQzf,KAAKyf,mBAAuB,GAC3Ee,GAAWxgB,KAAKqE,oBAAoBmJ,WAAa,yBAA2B,0BAC5EgT,GAAWxgB,KAAKqE,oBAAoBmH,UAAY,oBAAsB,qBACtEgV,GAAWxgB,KAAKqZ,qBAAuB,wBAA0B,yBACjEmH,GAAW,aAAaxgB,KAAKwJ,SAC7BgX,GAAWxgB,KAAKqE,oBAAoB6U,eAAiB,yBAA2B,0BAChFsH,GAAWxgB,KAAKqE,oBAAoB+U,eAAiB,yBAA2B,0BAC7EpZ,KAAK8N,0BACN0S,GAAWxgB,KAAKqE,oBAAoByJ,yBAS/BnI,EANH3F,KAAKqE,oBAAoByU,eAMjB,oBAAoB9Y,KAAKuD,cAAa,mBAAmBvD,KAAKytB,OAASjN,EALtE,oBAAoBxgB,KAAKuD,cAAa,uCAAuCvD,KAAKqE,oBAAoBuU,YAAW,mBAAmB5Y,KAAKytB,OAASjN,EAM9JxgB,KAAKma,OAAO8U,mBAAmBC,iBAAgB,WAAS,OAAA,GACxDlvB,KAAKma,OAAOgV,oBAAsB,SAClCnvB,KAAKma,OAAOC,cAAczU,KAO9BwnB,GAAAttB,UAAA2xB,qBAAA,SAAqBvS,GACnB,OAAGA,EAASkP,WAAW7hB,SAAS,KACvB2S,EAEDA,EAASkP,WAAWsD,OAAO,Q,qBArrBtCjwB,EAAAA,UAASZ,KAAA,CAAC,CACTa,SAAU,sBACVC,SAAA,kqzB,gmDAtBOqT,EAAAA,a,MAED4J,EAAAA,Q,MAEC1X,G,MACAnG,G,MAEAsP,G,MAODZ,EAAAA,mB,MAECtG,K,8BAUNvH,EAAAA,Q,eACAA,EAAAA,Q,iBACAA,EAAAA,Q,qBACAA,EAAAA,Q,gBACAA,EAAAA,Q,sBACAA,EAAAA,Q,uBACAA,EAAAA,Q,iBACAA,EAAAA,Q,yBACAA,EAAAA,Q,sBACAA,EAAAA,Q,sBACAA,EAAAA,Q,4BACAA,EAAAA,Q,mBACAA,EAAAA,Q,kBACAA,EAAAA,Q,4BACAA,EAAAA,Q,+BACAA,EAAAA,Q,gCACAA,EAAAA,Q,iBACAA,EAAAA,Q,uBACA6mB,EAAAA,S,wBAEAA,EAAAA,S,wBACAA,EAAAA,UA6pBH2E,IA9mBE,SAAAA,GAAoB1b,EACV0I,EACAzO,EACArH,EACAkR,EACAvH,EACA9E,GANUlJ,KAAAyR,YAAAA,EACVzR,KAAAma,OAAAA,EACAna,KAAA0L,mBAAAA,EACA1L,KAAAqE,oBAAAA,EACArE,KAAAuV,cAAAA,EACAvV,KAAAgO,GAAAA,EACAhO,KAAAkJ,kBAAAA,EAxDAlJ,KAAAygB,gBAAsC,IAAIgI,EAAAA,aAE1CzoB,KAAA8vB,iBAAmB,IAAIrH,EAAAA,aACvBzoB,KAAA4vB,iBAAyC,IAAInH,EAAAA,aAEvDzoB,KAAAwsB,OAAS,CACPpZ,OAAQ,CACNqZ,UAAW,oBACXC,WAAY,cACZC,cAAe,iBACfV,MAAO,UAKXjsB,KAAA0xB,WAAY,EACZ1xB,KAAAyL,WAAa,OACbzL,KAAAiC,aAAe,KACfjC,KAAAytB,OAAiB,KACjBztB,KAAA2gB,2BAAqC,EAErC3gB,KAAAgwB,cAAgB,MAEhBhwB,KAAAowB,gBAA0B,EAC1BpwB,KAAAktB,mBAA6B,GAG7BltB,KAAAsqB,4BAAsC,EAKtCtqB,KAAAovB,sBAAgC,EAChCpvB,KAAAqvB,uBAAiC,EACjCrvB,KAAAsvB,eAAyB,EACzBtvB,KAAA6U,eAAyB,EACzB7U,KAAAuvB,gBAA0B,EAC1BvvB,KAAAwvB,6BAAuC,EACvCxvB,KAAA4wB,gBAAyB,EACzB5wB,KAAAwtB,kBAA4B,EAC5BxtB,KAAAswB,oBAA8B,EAG9BtwB,KAAAiuB,oBAA6B,GCxF/B,IAAA0D,IAMEA,GAAA9xB,UAAA+xB,UAAA,SAAUtsB,EAAY1E,G,IACdwR,EAAU,gDAChB,OAAK9M,EAAMusB,MAAMzf,GACR9M,EAAMhD,QAAQ8P,EAAQ,eAExB9M,G,qBAVVwsB,EAAAA,KAAIlxB,KAAA,CAAC,CACJ4gB,KAAM,iB,uCAWRmQ,IARE,SAAAA,MCLF,IAAAI,IAMIA,GAAAlyB,UAAA+xB,UAAA,SAAU9sB,EAAQlE,GACd,OAAOkE,GAAKA,EAAE,GAAG+S,cAAgB/S,EAAEktB,MAAM,IAAM,I,qBANtDF,EAAAA,KAAIlxB,KAAA,CAAC,CACF4gB,KAAM,iB,uCAOVuQ,IAJI,SAAAA,MCLJ,IAAAE,IAMEA,GAAApyB,UAAA+xB,UAAA,SAAU3Z,G,IAECsT,EADL2G,EAAO,GACX,IAAS3G,KAAOtT,EACVA,EAAMqO,eAAeiF,IACvB2G,EAAK/lB,KAAK,CAAEof,IAAKA,EAAKjmB,MAAO2S,EAAMsT,KAGvC,OAAO2G,G,qBAZVJ,EAAAA,KAAIlxB,KAAA,CAAC,CACJ4gB,KAAM,e,uCAaRyQ,IAVE,SAAAA,MCLF,IAAAE,IAMEA,GAAAtyB,UAAA+xB,UAAA,SAAUtsB,GACR,OAAOtF,KAAKoyB,UAAUC,wBAAwB/sB,I,qBAJjDwsB,EAAAA,KAAIlxB,KAAA,CAAC,CAAE4gB,KAAM,mB,0CAFL8Q,EAAAA,gBAQTH,IAJE,SAAAA,GAAoBC,GAAApyB,KAAAoyB,UAAAA,E,ICItBG,IAKSA,GAAA1yB,UAAA2yB,kBAAP,SAAyBC,EAAaC,G,IAOnCC,GADAA,EAFsC,OAApCD,EAAcb,MAAM,cACtBc,EAAaC,EAAAA,MAAWC,cAAcJ,EAAK,CAACK,OAAO,CAAC,YAAY,oBAAoB,UAAU,WAAW,kBAAkB,oBAAoB,cAAc,YAAY,iBAAiB,YAC7K9yB,KAAK+yB,yBAAyBJ,IAEK,OAAtCD,EAAcb,MAAM,gBAC9Bc,EAAaC,EAAAA,MAAWC,cAAcJ,EAAK,CAACK,OAAO,CAAC,kBAAkB,oBAAoB,gBAAgB,UAAU,cAAc,YAAY,oBAAoB,UAAU,WAAW,iBAAiB,YAC3L9yB,KAAKgzB,4BAA4BL,IAEW,OAAhDD,EAAcb,MAAM,0BAC5Bc,EAAaC,EAAAA,MAAWC,cAAcJ,EAAK,CAACK,OAAO,CAAC,kBAAkB,oBAAoB,oBAAoB,mBAAmB,oBAAoB,0BAA0B,qBAAqB,oBAAoB,UAAU,WAAW,cAAc,YAAY,iBAAiB,YAC3Q9yB,KAAKizB,qCAAqCN,KAGvDA,EAAaC,EAAAA,MAAWC,cAAcJ,EAAK,CAACK,OAAO,CAAC,kBAAkB,oBAAoB,oBAAoB,UAAU,iBAAiB,qBAAsB,0BAA2B,iBAAkB,SAAU,cAAe,eACxN9yB,KAAKkzB,0BAA0BP,IAXjC3yB,KAAKmzB,eAAeR,EAAUF,IAerCW,EAAmBC,EAAAA,MADd,CAAEC,OAAQ,CAAEhlB,KAAQqkB,GAAaY,WAAY,CAAC,SACX,CAAEC,SAAU,OAAQpwB,KAAM,UACxEpD,KAAKyzB,gBAAgBL,EAAaV,IAI9BH,GAAA1yB,UAAAszB,eAAR,SAAwBR,EAA0BF,GAI9C,I,IAHEiB,EAAkB,GAClBC,EAAW,GACXrL,EAAG,OACIpjB,EAAI,EAAGA,EAAIutB,EAAKrtB,OAAQF,IAG/B,I,IAFII,EAAQgjB,EAAIsL,OAAOnB,EAAKvtB,IACxBqmB,EAAMjD,EAAI4J,KAAKO,EAAKvtB,IACf2uB,EAAI,EAAGA,EAAIvuB,EAAMF,OAAQyuB,IAChB,OAAbvuB,EAAMuuB,KACPvuB,EAAMuuB,GAAK,IAEbH,EAAgBG,GACdtI,EAAIsI,GAAGzuB,QAAUE,EAAMuuB,GAAGzuB,OACtBmmB,EAAIsI,GAAGzuB,OAAO,EACdE,EAAMuuB,GAAGzuB,OAAO,EACdE,EAAMuuB,GAAGzuB,SAAWzC,YACtB+wB,EAAgBG,GAAMtI,EAAIsI,GAAGzuB,OAAO,GAE5CuuB,EAASxnB,KAAK,CAAC2nB,OAAUJ,EAAgBG,KAI3C,OADAlB,EAAU,SAAWgB,EACdhB,GAIHJ,GAAA1yB,UAAAkzB,yBAAR,SAAkCJ,GAWhC,OAVAA,EAAUoB,GAAGC,EAAI,YACjBrB,EAAUsB,GAAGD,EAAI,oBACjBrB,EAAUuB,GAAGF,EAAI,eACjBrB,EAAUwB,GAAGH,EAAI,gBACjBrB,EAAUyB,GAAGJ,EAAI,kBACjBrB,EAAU0B,GAAGL,EAAI,oBACjBrB,EAAU2B,GAAGN,EAAI,cACjBrB,EAAU4B,GAAGP,EAAI,YACjBrB,EAAU6B,GAAGR,EAAI,iBACjBrB,EAAU8B,GAAGT,EAAI,SACVrB,GAGDJ,GAAA1yB,UAAAmzB,4BAAR,SAAqCL,GAYnC,OAXAA,EAAUoB,GAAGC,EAAI,kBACjBrB,EAAUsB,GAAGD,EAAI,oBACjBrB,EAAUuB,GAAGF,EAAI,gBACjBrB,EAAUwB,GAAGH,EAAI,UACjBrB,EAAUyB,GAAGJ,EAAI,cACjBrB,EAAU0B,GAAGL,EAAI,YACjBrB,EAAU2B,GAAGN,EAAI,oBACjBrB,EAAU4B,GAAGP,EAAI,eACjBrB,EAAU6B,GAAGR,EAAI,gBACjBrB,EAAU8B,GAAGT,EAAI,iBACjBrB,EAAU+B,GAAGV,EAAI,SACVrB,GAGDJ,GAAA1yB,UAAAozB,qCAAR,SAA8CN,GAe5C,OAdAA,EAAUoB,GAAGC,EAAI,kBACjBrB,EAAUsB,GAAGD,EAAI,oBACjBrB,EAAUuB,GAAGF,EAAI,oBACjBrB,EAAUwB,GAAGH,EAAI,mBACjBrB,EAAUyB,GAAGJ,EAAI,oBACjBrB,EAAU0B,GAAGL,EAAI,oBACjBrB,EAAU2B,GAAGN,EAAI,eACjBrB,EAAU4B,GAAGP,EAAI,oBACjBrB,EAAU6B,GAAGR,EAAI,eACjBrB,EAAU8B,GAAGT,EAAI,gBACjBrB,EAAU+B,GAAGV,EAAI,cACjBrB,EAAUgC,GAAGX,EAAI,YACjBrB,EAAUiC,GAAGZ,EAAI,iBACjBrB,EAAUkC,GAAGb,EAAI,SACVrB,GAGDJ,GAAA1yB,UAAAqzB,0BAAR,SAAmCP,GAYjC,OAXAA,EAAUoB,GAAGC,EAAI,kBACjBrB,EAAUsB,GAAGD,EAAI,oBACjBrB,EAAUuB,GAAGF,EAAI,oBACjBrB,EAAUwB,GAAGH,EAAI,UACjBrB,EAAUyB,GAAGJ,EAAI,iBACjBrB,EAAU0B,GAAGL,EAAI,eACjBrB,EAAU2B,GAAGN,EAAI,gBACjBrB,EAAU4B,GAAGP,EAAI,iBACjBrB,EAAU6B,GAAGR,EAAI,SACjBrB,EAAU8B,GAAGT,EAAI,cACjBrB,EAAU+B,GAAGV,EAAI,eACVrB,GAGDJ,GAAA1yB,UAAA4zB,gBAAR,SAAwBqB,EAAaC,GAC3BzmB,EAAa,IAAI0mB,KAAK,CAACF,GAAS,CACpC1xB,KA7Ha,oFA+Hf6xB,EAAAA,OAAiB3mB,EAAMymB,EA9HH,U,qBAEvBp0B,EAAAA,a,uCA8HD4xB,IA3HE,SAAAA,MCZF,IAAA2C,IAiCEA,GAAAr1B,UAAAkB,SAAA,WACEf,KAAKm1B,kBAIPD,GAAAr1B,UAAAu1B,SAAA,WACE,OAAO,IAAIplB,MAAOqlB,cAAc5yB,MAAM,KAAK,IAG9CyyB,GAAAr1B,UAAAy1B,oBAAA,WACAt1B,KAAKu1B,cAAcv1B,KAAKw1B,YAAY5xB,IAAI,kBAAkB0B,QAG1D4vB,GAAAr1B,UAAA01B,cAAA,SAActtB,G,IACPwtB,EAAoBz1B,KAAK01B,aAAa11B,KAAKw1B,YAAY5xB,IAAI,aAAa0B,OAC5EqwB,EAAkB31B,KAAK01B,aAAa11B,KAAKw1B,YAAY5xB,IAAI,WAAW0B,OAChEswB,EAAoH,GAAzF,IAAS5lB,KAAKylB,GAAkB,IAAYzlB,KAAK2lB,KAAgB,MAC/F,IAAI3lB,KAAKylB,GAAqB,IAAIzlB,KAAK2lB,IAAwC,KAApBA,GAC5D31B,KAAKw1B,YAAY5xB,IAAI,aAAauiB,SAAS,IAC3CnmB,KAAK61B,qBAAsB,EAC3B71B,KAAK81B,2BAA4B,IAEjC91B,KAAK61B,uBADG5tB,GAA4B,0BAAdA,IAAyC2tB,GAE/D51B,KAAK81B,2BAA4B,IAQnCZ,GAAAr1B,UAAAs1B,eAAA,WACEn1B,KAAKw1B,YAAcx1B,KAAKyR,YAAYC,MAAM,CACxCqkB,eAAgB,IAAInkB,EAAAA,YAAY,IAChC1J,UAAW,IAAI0J,EAAAA,YAAY,IAC3BzJ,QAAS,IAAIyJ,EAAAA,YAAY,OAI/BsjB,GAAAr1B,UAAAm2B,eAAA,WAAA,IAAA7xB,EAAAnE,KACEA,KAAKi2B,0BAA2B,E,IAC1BC,EAAqB,CAAC,CAACC,UAAU,GAAGC,kBAAkB,GAAGC,QAAQ,GAAGC,SAAS,GAAGC,gBAAgB,GAAGC,kBAAkB,GAAG1U,YAAY,GAAG2U,UAAU,GAAGjU,eAAe,GAAG1K,OAAO,KACjL4e,EAAwB,CAAC,CAACH,gBAAgB,GAAGC,kBAAkB,GAAGG,cAAc,GAAGC,QAAQ,GAAG9U,YAAY,GAAG2U,UAAU,GAAGL,kBAAkB,GAAGC,QAAQ,GAAGC,SAAS,GAAG9T,eAAe,GAAG1K,OAAO,KAC/L+e,EAAsB,CAAC,CAACN,gBAAgB,GAAGC,kBAAkB,GAAG9pB,kBAAkB,GAAGmY,iBAAiB,GAAGiS,kBAAkB,GAAGC,kBAAkB,GAAGC,aAAa,GAAGZ,kBAAkB,GAAGC,QAAQ,GAAGC,SAAS,GAAGxU,YAAY,GAAG2U,UAAU,GAAGjU,eAAe,GAAG1K,OAAO,GAAGmf,WAAW,KAClRC,EAAuB,CAAC,CAACX,gBAAgB,GAAGC,kBAAkB,GAAGW,kBAAkB,GAAGC,QAAQ,GAAGC,eAAe,GAAGC,mBAAmB,GAAGC,wBAAwB,GAAGC,eAAe,GAAIpkB,OAAO,GAAI0V,YAAY,GAAIE,UAAU,KAC5NyO,EAAqBz3B,KAAKw1B,YAAY5xB,IAAI,kBAAkB0B,MAC5DmwB,EAAoBz1B,KAAK01B,aAAa11B,KAAKw1B,YAAY5xB,IAAI,aAAa0B,OACxEqwB,EAAkB31B,KAAK01B,aAAa11B,KAAKw1B,YAAY5xB,IAAI,WAAW0B,OAE1C,0BAAvBmyB,GAAyE,0BAAvBA,EACnDz3B,KAAK0L,mBAAmB1D,uBAAuByvB,EAAmBhC,EAAkBE,GAAiBnxB,UAAS,SAC5G6O,GACElP,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,G,IAC7DwK,EAAS9K,KAAKC,MAAM6Q,GACtBkR,EAAK,CAACjW,KAAMnK,EAAKuzB,gBAAgBrqB,IAMrC,GAL0B,IAAvBkX,EAAU,KAAEnf,QAAuC,0BAAvBqyB,EAC7BlT,EAAIjW,KAAMuoB,EACqB,IAAvBtS,EAAU,KAAEnf,QAAuC,0BAAvBqyB,IACpClT,EAAIjW,KAAM4oB,GAEe,EAAxB7pB,EAAa,KAAEjI,OAChB,IAAK,IAAIF,EAAE,EAAGA,EAAGqf,EAAU,KAAEnf,OAAQF,IAChCqf,EAAU,KAAErf,GAAsB,oBAAMvC,YACzC4hB,EAAU,KAAErf,GAAY,QAAIqf,EAAU,KAAErf,GAAsB,kBAAEyyB,OAAO,EAAE,IACzEpT,EAAU,KAAErf,GAAa,SAAIqf,EAAU,KAAErf,GAAsB,kBAAEyyB,OAAO,GAAG,KAE1EpT,EAAU,KAAErf,GAAW,SAAMvC,YAC9B4hB,EAAU,KAAErf,GAAW,OAAIf,EAAKyzB,oBAAoBrT,EAAU,KAAErf,GAAW,SAE1Eqf,EAAU,KAAErf,GAAY,UAAMvC,YAC/B4hB,EAAU,KAAErf,GAAY,QAAIf,EAAKyzB,oBAAoBrT,EAAU,KAAErf,GAAY,UAE5Eqf,EAAU,KAAErf,GAAmB,iBAAMvC,YACtC4hB,EAAU,KAAErf,GAAmB,eAAIf,EAAKyzB,oBAAoBrT,EAAU,KAAErf,GAAmB,iBAIjGf,EAAK8xB,0BAA2B,EAChC9xB,EAAK0zB,cAAcrF,kBAAkBjO,EAAU,KAAGpgB,EAAK2zB,YAAY3zB,EAAKqxB,YAAY5xB,IAAI,kBAAkB0B,MAAOmwB,EAAmBE,KACrI,SACAzzB,GACCiC,EAAK8xB,0BAA2B,EAChC9xB,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,KAGvE7C,KAAK6a,0BAA0B7S,uBAAuByvB,EAAmBhC,EAAkBE,GAAiBnxB,UAAS,SACnH6O,GACElP,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,G,IAC7DwK,EAAS9K,KAAKC,MAAM6Q,GACtBkR,EAAM,CAACjW,KAAMnK,EAAKuzB,gBAAgBrqB,IAMtC,GAL0B,IAAvBkX,EAAU,KAAEnf,QAAuC,cAAvBqyB,EAC7BlT,EAAIjW,KAAM4nB,EACqB,IAAvB3R,EAAU,KAAEnf,QAAuC,gBAAvBqyB,IACpClT,EAAIjW,KAAOooB,GAEc,EAAxBrpB,EAAa,KAAEjI,OAClB,IAAK,IAAIF,EAAE,EAAGA,EAAGqf,EAAU,KAAEnf,OAAQF,IAChCqf,EAAU,KAAErf,GAAW,SAAMvC,YAC9B4hB,EAAU,KAAErf,GAAW,OAAIf,EAAKyzB,oBAAoBrT,EAAU,KAAErf,GAAW,SAE1Eqf,EAAU,KAAErf,GAAsB,oBAAMvC,YAC3C4hB,EAAU,KAAErf,GAAY,QAAIqf,EAAU,KAAErf,GAAsB,kBAAEyyB,OAAO,EAAE,IACzEpT,EAAU,KAAErf,GAAa,SAAIqf,EAAU,KAAErf,GAAsB,kBAAEyyB,OAAO,GAAG,KAI7ExzB,EAAK8xB,0BAA2B,EAChC9xB,EAAK0zB,cAAcrF,kBAAkBjO,EAAU,KAAGpgB,EAAK2zB,YAAY3zB,EAAKqxB,YAAY5xB,IAAI,kBAAkB0B,MAAOmwB,EAAmBE,KACrI,SACAzzB,GACCiC,EAAK8xB,0BAA2B,EAChC9xB,EAAKlC,aAAekC,EAAKH,oBAAoBnB,uBAAsB,MAK3EqyB,GAAAr1B,UAAAi4B,YAAA,SAAY1sB,EAAwBlD,EAAmBC,G,IAC/C4vB,EAAM,QACVC,EAAOC,EAAAA,WAAW/vB,EAAW,SAAU6vB,GACvCG,EAAOD,EAAAA,WAAW9vB,EAAS,SAAU4vB,GACrCI,EAAM,IAAInoB,KAEVooB,EADcH,EAAAA,WAAWE,EAAK,SAAUJ,GACd,IAAI/3B,KAAKq4B,YAAYF,EAAIG,YAAct4B,KAAKq4B,YAAYF,EAAII,cAAgBv4B,KAAKq4B,YAAYF,EAAIK,cAG3H,OAFoBx4B,KAAKy4B,mBAAmBrtB,GAEnB,IAAI4sB,EAAK,OAAOE,EAAK,QAASE,GAE3DlD,GAAAr1B,UAAA61B,aAAA,SAAagD,G,IACPrrB,EAAS,GAKb,OAFEA,EAFEqrB,GACEC,EAAQD,EAAQj2B,MAAM,MACR,GAAE,IAAIk2B,EAAM,GAAE,IAAIA,EAAM,GAErCtrB,GAET6nB,GAAAr1B,UAAAw4B,YAAA,SAAYpgB,GACV,OAAQ,IAAMA,GAAO+Z,OAAO,IAE9BkD,GAAAr1B,UAAA44B,mBAAA,SAAmBrtB,G,IACbiC,EACJ,OAAOjC,GACL,IAAK,cACHiC,EAAS,cACT,MAEF,IAAK,YACHA,EAAS,YACT,MAEF,IAAK,wBACHA,EAAS,wBACT,MAEF,IAAK,wBACHA,EAAS,oBACT,MAEF,QACEA,EAASjC,EAId,OAAOiC,GAER6nB,GAAAr1B,UAAA63B,gBAAA,SAAgBnT,GAGd,OAAOA,EAAU,KAAEqU,IAAG,SAACtzB,GAIrB,OAHIA,EAAmB,cACrBA,EAAmB,YAAI2yB,EAAAA,WAAW3yB,EAAmB,YAJ7C,aACN,UAKGA,KAIX4vB,GAAAr1B,UAAA+3B,oBAAA,SAAoBiB,GAClB,OAAOA,EAAMC,OAAOC,WAAWF,GAAKzZ,QAAQ,GAAI,Q,qBAxMnD5d,EAAAA,UAASZ,KAAA,CAAC,CACTa,SAAU,gBACVC,SAAA,2hJ,uaAJM6wB,I,MAFCzwB,G,MAJAiT,EAAAA,a,MAGAgC,I,MAEA9P,KA6MTiuB,IA1LE,SAAAA,GACU2C,EACA7zB,EACAyN,EACAoJ,EACAnP,GAJA1L,KAAA63B,cAAAA,EACA73B,KAAAgE,oBAAAA,EACAhE,KAAAyR,YAAAA,EACAzR,KAAA6a,0BAAAA,EACA7a,KAAA0L,mBAAAA,EAXV1L,KAAAi2B,0BAAmC,EACnCj2B,KAAA81B,2BAAqC,EACrC91B,KAAA61B,qBAA+B,EAC/B71B,KAAAiC,aAAejC,KAAKgE,oBAAoBnB,uBAAsB,GAC9D7C,KAAAwZ,cAAiC,GCvBnC,IAAAwf,IAWEA,GAAAn5B,UAAAkB,SAAA,a,qBATDS,EAAAA,UAASZ,KAAA,CAAC,CACTa,SAAU,gBACVC,SAAA,kwC,mJAUFs3B,IALE,SAAAA,MCTF,IAAAC,IAkCEA,GAAAp5B,UAAAkB,SAAA,WACEf,KAAKiC,aAAejC,KAAKiC,aACQ,sBAA9BjC,KAAKk5B,OAAOC,cACbn5B,KAAKo5B,gBAAiB,EAErBp5B,KAAKo5B,gBAAiB,EAEzBp5B,KAAKoJ,WAAapJ,KAAKq5B,WACvBr5B,KAAKs5B,WAAa,IAAIC,EAAAA,mBAAmBv5B,KAAKoJ,YAC9CpJ,KAAKw5B,YAAcx5B,KAAKs5B,WAAWhrB,KAAKlJ,OACpCpF,KAAKoJ,aAAezG,YACxB3C,KAAKkV,QAAUlV,KAAKoJ,WAAWqwB,OAAM,SAAEC,EAAEC,GAAqB,OAACD,EAArBC,EAAAC,gBAAuC,GAAIF,GAAK,IACzF15B,KAAKkV,QAAUvM,OAAOupB,KAAKlyB,KAAKkV,UAEjClV,KAAKkV,QAAQgZ,KAAI,SAAE5R,EAAGC,GAAM,OAAAD,EAAE6R,WAAWC,cAAc7R,MAMzD0c,GAAAp5B,UAAAg6B,gBAAA,WAEE75B,KAAKs5B,WAAWpL,KAAOluB,KAAKkuB,KAM5BluB,KAAKs5B,WAAWQ,UAAY95B,KAAK85B,UACjC95B,KAAKs5B,WAAWpL,KAAOluB,KAAKkuB,KAC5BluB,KAAK+5B,MAAM9rB,iBAEbgrB,GAAAp5B,UAAAm6B,YAAA,SAAYC,GAEVA,GADAA,EAAcA,EAAYnL,QACAqK,cAC1Bn5B,KAAKs5B,WAAWltB,OAAS6tB,GAE3BhB,GAAAp5B,UAAA0mB,aAAA,SAAa3lB,GACXZ,KAAKs5B,WAAWltB,OAASxL,EAAK4lB,OAAOlhB,MACrCtF,KAAKw5B,YAAcx5B,KAAKs5B,WAAWhrB,KAAKlJ,OACxCpF,KAAKs5B,WAAWQ,UAAY95B,KAAK85B,WAEnCb,GAAAp5B,UAAAq6B,2BAAA,SAA2B1pB,EAAyB2pB,GAClDn6B,KAAKqE,oBAAoB+1B,iBAAmBD,EAC5Cn6B,KAAKqE,oBAAoBmM,gBAAkBA,EAC3CxQ,KAAKqE,oBAAoB9C,SAAW,kBAEtC03B,GAAAp5B,UAAAw6B,wBAAA,SAAwB7pB,EAAyB8pB,GAC/Ct6B,KAAKkJ,kBAAkBC,cAAcmxB,GACrCt6B,KAAKqE,oBAAoB9C,SAAS,mBAClCvB,KAAKqE,oBAAoBC,gBAAkBg2B,EAAWnf,gBACtDnb,KAAKqE,oBAAoBk2B,oBAAqB,EAC9Cv6B,KAAKqE,oBAAoBm2B,sBAAuB,GAElDvB,GAAAp5B,UAAA46B,eAAA,SAAel3B,EAAuB+2B,GACpCrmB,OAAOC,SAASC,KAAM,wBAAwB5Q,G,qBAhFjD/B,EAAAA,UAASZ,KAAA,CAAC,CACTa,SAAU,cACVC,SAAA,27G,29BAVMZ,G,MAD6B0O,EAAAA,mB,MAO5BtG,K,qCAQNvH,EAAAA,MAAKf,KAAA,CAAC,gB,cACNe,EAAAA,MAAKf,KAAA,CAAC,Y,oBACNe,EAAAA,MAAKf,KAAA,CAAC,kB,iBAUN85B,EAAAA,UAAS95B,KAAA,CAAC+5B,EAAAA,gB,YACVD,EAAAA,UAAS95B,KAAA,CAACg6B,EAAAA,YA+Db3B,IA9DE,SAAAA,GACU50B,EACA01B,EACA7wB,GAFAlJ,KAAAqE,oBAAAA,EACArE,KAAA+5B,MAAAA,EACA/5B,KAAAkJ,kBAAAA,EAZVlJ,KAAA66B,iBAAmB,CAAC,kBAAmB,mBAAoB,SAAU,iBAAkB,eAAgB,UCpBzG,IAAAC,GAKI,SAAY9N,EAAwBlV,GAClC9X,KAAKgtB,cAAeA,EACpBhtB,KAAK8X,OAASA,GCMpBijB,IAgDEA,GAAAl7B,UAAAkB,SAAA,WAAA,IAAAoD,EAAAnE,KAmCE,GAlCAA,KAAKsuB,mBAAmB,EAAC,GAAO,GAAO,GAAO,GAAQ,OACtDtuB,KAAKyf,mBAAqBzf,KAAKqE,oBAAoBjD,aACnDpB,KAAKw6B,qBAAuBx6B,KAAKqE,oBAAoBm2B,qBAIjDx6B,KAAKqE,oBAAoBk2B,oBAC3Bv6B,KAAKuB,SAAW,aAChBvB,KAAKkJ,kBAAkBI,gBAAgB9E,UAAS,SAAE8J,GAAS,OAAAnK,EAAK62B,WAAa1sB,IAC7EtO,KAAKkJ,kBAAkB6B,0BAA0BvG,UAAS,SAAE8J,GAAS,OAAAnK,EAAKZ,cAAgB+K,MAE1FtO,KAAKuB,SAAW,mBAChBvB,KAAKuV,cAAcxE,oBAAoB/Q,KAAKuD,eAAeiB,UAAS,SAClE4E,GACEjF,EAAKwR,mBAAqBvM,EAAwB,eASxDpJ,KAAKi7B,iBAAmBj7B,KAAKyR,YAAYC,MAAM,CAC7CoG,OAAQ,IAAIlG,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CAC7CD,EAAAA,WAAWE,SACXF,EAAAA,WAAWO,QAAQ,6BAErBwb,aAAc,IAAIhc,EAAAA,YAAY,GAAIC,EAAAA,WAAWC,QAAQ,CAACD,EAAAA,WAAWE,YACjEqB,OAAQ,IAAIxB,EAAAA,cAGd5R,KAAKk7B,8BAEDl7B,KAAK6P,kBAAkBF,KAAI,SAACzK,GAAK,OAAAA,EAAEoH,SAAS,8BAG9C,OAFAtM,KAAKm7B,iBAAkB,OACvBn7B,KAAKo7B,kBAAoBp7B,KAAKg7B,WAAWK,cAAc7Z,MAIrDxhB,KAAK6P,kBAAkBF,KAAI,SAACzK,GAAK,OAAAA,EAAEoH,SAAS,uBAC9CtM,KAAKm7B,iBAAkB,EACvBn7B,KAAKo7B,kBAAoBp7B,KAAKg7B,WAAWK,cAAc7Z,OAK3DuZ,GAAAl7B,UAAAq7B,4BAAA,WAAA,IAAA/2B,EAAAnE,KACKA,KAAKg7B,aAAer4B,WACvB3C,KAAKuV,cAAczE,uBAAuB9Q,KAAKg7B,WAAW7pB,kBAAkB3M,UAAS,SACnF82B,GACEn3B,EAAKo3B,sBAAwBD,EAAkBE,wBAC/Cr3B,EAAKs3B,2BAA6BH,EAAkBI,gCAS1DX,GAAAl7B,UAAA87B,eAAA,SAAeX,EAAyBhnB,GACtChU,KAAKkJ,kBAAkBC,cAAc6xB,GACrCh7B,KAAKkJ,kBAAkBQ,iBAAiB1J,KAAKuD,eAC7CvD,KAAKqE,oBAAoB9C,SAAW,mBACpCvB,KAAKqE,oBAAoBk2B,oBAAqB,EAC9Cv6B,KAAKg7B,WAAaA,EAClBh7B,KAAKkJ,kBAAkBmB,kBAAkB2J,IAG3C+mB,GAAAl7B,UAAA0gB,wBAAA,WAAA,IAAApc,EAAAnE,KACEA,KAAKqE,oBAAoBk2B,oBAAqB,EAE9Cv6B,KAAKqE,oBAAoB9C,SAAW,oBACpCvB,KAAK0L,mBAAmBtD,eAAe5D,UAAS,SAC9C4I,GACMC,EAAS9K,KAAKC,MAAM4K,GAAUhB,OAAM,SAACkB,GAAW,MA/HrC,0BA+HqCA,EAAQC,MAC5DpJ,EAAKE,oBAAoBmJ,aAAaH,EAAO,IAAKA,EAAO,GAAGI,QAC7D,SACDzL,GACEmC,EAAKE,oBAAoBmJ,YAAa,I,IAItCgT,EAAU,kBAAkBxgB,KAAKqE,oBAAoBgH,gBACzDmV,GAAWxgB,KAAKyf,mBAAqB,QAAQzf,KAAKyf,mBAAuB,GACzEe,GAAWxgB,KAAKqE,oBAAoBmJ,WAAa,yBAA2B,0BAC5EgT,GAAWxgB,KAAKqE,oBAAoBmH,UAAY,oBAAsB,qBACtEgV,GAAWxgB,KAAKqE,oBAAoBiV,WAAa,wBAA0B,yBAC3EkH,GAAW,aAAaxgB,KAAKqE,oBAAoBmU,SACjDgI,GAAWxgB,KAAKiZ,eAAiB,yBAA2B,0BAC5DuH,GAAWxgB,KAAKmZ,eAAiB,yBAA2B,0BACxDxT,EAAM,oBAAoB3F,KAAKuD,cAAa,uCAAuCvD,KAAKqE,oBAAoBuU,YAAW,IAAI4H,EAC/HxgB,KAAKma,OAAOC,cAAczU,IAG5Bo1B,GAAAl7B,UAAAkU,mBAAA,WAAA,IAAA5P,EAAAnE,KACEA,KAAKkJ,kBAAkBqB,yBAAyB/F,UAAS,SAAE8J,GAAS,OAAAnK,EAAK6P,eAAiB1F,IAC9D,qBAAxBtO,KAAKgU,eACPhU,KAAKugB,0BAELvgB,KAAKqE,oBAAoB9C,SAAW,eAIxCw5B,GAAAl7B,UAAA+7B,sBAAA,SAAsB1uB,GAEpBlN,KAAKiC,cAAe,EACpBjC,KAAKqE,oBAAoBk2B,oBAAqB,EAC9Cv6B,KAAKe,YAOPg6B,GAAAl7B,UAAAg8B,0BAAA,WAAA,IAAA13B,EAAAnE,KACEA,KAAKuB,SAAW,sBAChBvB,KAAK87B,gBAAkB97B,KAAKg7B,WAAW5nB,OACvCpT,KAAK+7B,cAAgB/7B,KAAKg7B,WAAWljB,OACrC9X,KAAKg8B,aAAeh8B,KAAKu7B,sBAAsBnvB,OAAM,SAACkC,GAAQ,MAAgB,aAAhBA,EAAKjM,SAAuB,GAAG45B,MAC7Fj8B,KAAKuV,cAAclF,mBAAmB7L,UAAS,SAC7CupB,GACE5pB,EAAK4pB,cAAgBA,KAG3BgN,GAAAl7B,UAAAq8B,qBAAA,WACEl8B,KAAKm8B,qBAAsB,EAC3Bn8B,KAAKqE,oBAAoBhD,WAAa,OACtCrB,KAAKqE,oBAAoBwrB,wBAAyB,EAClD7vB,KAAKuD,cAAgBvD,KAAKqE,oBAAoBC,gBAC9CtE,KAAKiC,cAAe,EACpBjC,KAAKuB,SAAW,eAGlBw5B,GAAAl7B,UAAAu8B,eAAA,WACEp8B,KAAKiC,cAAe,EACpBjC,KAAKqE,oBAAoBhD,WAAa,OACtCrB,KAAKm8B,qBAAsB,EAC3Bn8B,KAAKuD,cAAgBvD,KAAKqE,oBAAoBC,gBAC9CtE,KAAKqE,oBAAoBwrB,wBAAyB,EAClD7vB,KAAKuB,SAAW,4BAGlBw5B,GAAAl7B,UAAAw8B,wBAAA,W,IACQ9N,EAAiBvuB,KAAKi7B,iBAAiBloB,SACzC/S,KAAKi7B,iBAAiB/nB,QACc,IAAlCqb,EAAuB,OAAEjpB,MAC3BtF,KAAKsuB,mBAAmB,EAAC,GAAM,GAAO,GAAO,GAAQ,UAEZ,IAAlCC,EAAuB,OAAEjpB,OAAeipB,EAAuB,OAAE9a,QACxEzT,KAAKsuB,mBAAmB,EAAC,GAAO,GAAM,GAAO,GAAQ,UAEZ,IAAlCC,EAAuB,OAAEjpB,MAChCtF,KAAKsuB,mBAAmB,EAAC,GAAO,GAAO,GAAO,GAAO,WAErDtuB,KAAKg7B,WAAW5nB,OAASmb,EAAuB,OAAEjpB,MAClDtF,KAAKuB,SAAW,yBAMtBw5B,GAAAl7B,UAAAyuB,mBAAA,SAAmB7K,EAAKnP,GACR,QAAVA,GACFtU,KAAKsvB,cAAgB7L,EAAI,GACzBzjB,KAAKuvB,eAAiB9L,EAAI,GAC1BzjB,KAAKwvB,4BAA8B/L,EAAI,GACvCzjB,KAAK6U,cAAgB4O,EAAI,IACN,WAAVnP,GAAgC,QAAVA,GAC/BtU,KAAKsvB,cAAgB7L,EAAI,GACzBzjB,KAAKuvB,eAAiB9L,EAAI,GAC1BzjB,KAAKwvB,4BAA8B/L,EAAI,IACpB,WAAVnP,GAAgC,QAAVA,IAC/BtU,KAAK6U,cAAgB4O,EAAI,KAI7BsX,GAAAl7B,UAAAyrB,kBAAA,SAAkBC,EAAKjmB,GACrBtF,KAAK4wB,gBAAiB,EAEV,WADZ5wB,KAAK+vB,qBAAuBxE,KAE1BvrB,KAAK4wB,gBAAiB,EACtB5wB,KAAK4tB,aAAerC,IAIxBwP,GAAAl7B,UAAAy8B,oBAAA,SAAoBxM,GACd9vB,KAAKqE,oBAAoBwrB,yBAA2B7vB,KAAKqE,oBAAoBsrB,iBAC/E3vB,KAAKg7B,WAAW5nB,OAAS0c,EAAiB1c,OAC1CpT,KAAKu8B,WAAazM,EAAiB5jB,MAEnClM,KAAKm8B,qBAAsB,EAE7Bn8B,KAAKuB,SAAW,sBAChBvB,KAAKqE,oBAAoBC,gBAAkBtE,KAAKuD,eAGlDw3B,GAAAl7B,UAAA28B,gBAAA,SAAgB1kB,GACV9X,KAAKqE,oBAAoBwrB,yBAA2B7vB,KAAKqE,oBAAoBsrB,gBAClE,EAAT7X,IACF9X,KAAK+7B,cAAgBjkB,GAIvB9X,KAAKm8B,qBAAsB,EAE7Bn8B,KAAKuB,SAAW,sBAChBvB,KAAKqE,oBAAoBC,gBAAkBtE,KAAKuD,eAGlDw3B,GAAAl7B,UAAA48B,iCAAA,WAAA,IAAAt4B,EAAAnE,KACMA,KAAK87B,kBAAoB97B,KAAKg7B,WAAW5nB,SAC3CpT,KAAKu8B,WAAa,I,IAEdG,EAAkB,IAAI5B,GAAuB96B,KAAKu8B,WAAav8B,KAAK+7B,eAC1E/7B,KAAKuV,cAAcrE,oBAAoBwrB,EAAiB18B,KAAKg7B,WAAW7pB,kBAAkB3M,UAAS,SACjG6O,GACM9Q,KAAKC,MAAM6Q,KACblP,EAAKqM,gBAAkBjO,KAAKC,MAAM6Q,GAAUlC,iBAC5ChN,EAAKssB,aAAeluB,KAAKC,MAAM6Q,GAAUqd,cACzCvsB,EAAK5C,SAAW,iCAEnB,SACAW,GACCiC,EAAKlC,aAAeC,EAAMI,QAAQ,KAAK,OAM7Cy4B,GAAAl7B,UAAAq6B,2BAAA,SAA2B1pB,EAAyBpH,GAClDpJ,KAAKqE,oBAAoB+1B,iBAAmBhxB,EAC5CpJ,KAAKqE,oBAAoBmM,gBAAkBA,EAC3CxQ,KAAKqE,oBAAoB9C,SAAW,kB,qBA3RvCC,EAAAA,UAASZ,KAAA,CAAC,CACTa,SAAU,sBACVC,SAAA,83S,81CAbOqT,EAAAA,a,MADA3E,G,MASAtP,G,MANAmG,G,MACA0X,EAAAA,Q,MACAzV,K,4CAaNvH,EAAAA,MAAKf,KAAA,CAAC,uB,sBACNe,EAAAA,Q,sBACAA,EAAAA,Q,qBACAA,EAAAA,Q,iBACAA,EAAAA,SAoRHo5B,IArPE,SAAAA,GAAoBtpB,EACV8D,EACAlR,EACAqH,EACAyO,EACAjR,GALUlJ,KAAAyR,YAAAA,EACVzR,KAAAuV,cAAAA,EACAvV,KAAAqE,oBAAAA,EACArE,KAAA0L,mBAAAA,EACA1L,KAAAma,OAAAA,EACAna,KAAAkJ,kBAAAA,EAxCkBlJ,KAAA6P,kBAA8B,GAO1D7P,KAAA2V,mBAAoC,GACpC3V,KAAAwV,eAAiB,oBACjBxV,KAAA0V,aAAe,YACf1V,KAAAiC,aAAe,KAMfjC,KAAAo7B,kBAA4B,GAC5Bp7B,KAAAsvB,eAAyB,EACzBtvB,KAAA6U,eAAyB,EACzB7U,KAAAuvB,gBAA0B,EAC1BvvB,KAAAwvB,6BAAuC,EACvCxvB,KAAA4wB,gBAA0B,EAC1B5wB,KAAA+tB,cAAuB,GAKvB/tB,KAAAm8B,qBAA+B,EAI/Bn8B,KAAAy7B,4BAAsC,EACtCz7B,KAAAm7B,iBAA2B,E,qBCP5BwB,EAAAA,SAAQ/7B,KAAA,CAAC,CACRg8B,QAAS,CACPC,EAAAA,aACAC,EAAAA,iBACAC,EAAAA,YACAC,EAAAA,oBACAC,EAAAA,eACAC,EAAAA,mBACAC,EAAAA,cACAC,EAAAA,mBACAC,EAAAA,gBAIFC,aAAc,CACZx8B,EACAoD,EACAiH,EACAiG,EACA6D,EACAc,EACAI,EACAG,EACAoM,GACAsC,GACA4B,GACA+B,GACAM,GACAxS,GACA0B,GACAqH,GACA2N,GACAwE,GACAI,GACAE,GACAE,GACA+C,GACA/T,GACA6X,GACAC,GACA8B,IAEFwC,QAAS,CAACz8B,GACV08B,UAAW,CACT,CAAEC,QAASv6B,EAAew6B,SAAU/mB,IACpC4b,GACA9sB,OA1FJk4B,EA8FgCA,GAlDhC,SAAAA,M"}
|