@hmcts/ccpay-web-component 4.0.0-beta45 → 4.0.0-beta454

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (203) hide show
  1. package/bundles/hmcts-ccpay-web-component.umd.js +6595 -2356
  2. package/bundles/hmcts-ccpay-web-component.umd.js.map +1 -1
  3. package/bundles/hmcts-ccpay-web-component.umd.min.js +1 -1
  4. package/bundles/hmcts-ccpay-web-component.umd.min.js.map +1 -1
  5. package/esm2015/hmcts-ccpay-web-component.js +33 -25
  6. package/esm2015/lib/components/add-remission/add-remission.component.js +757 -140
  7. package/esm2015/lib/components/allocate-payments/allocate-payments.component.js +315 -312
  8. package/esm2015/lib/components/card-details/card-details.component.js +22 -57
  9. package/esm2015/lib/components/case-transactions/case-transactions.component.js +1069 -333
  10. package/esm2015/lib/components/error-banner/error-banner.component.js +5 -17
  11. package/esm2015/lib/components/fee-summary/fee-summary.component.js +245 -241
  12. package/esm2015/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.js +137 -158
  13. package/esm2015/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.js +184 -171
  14. package/esm2015/lib/components/page-not-found.component.js +3 -4
  15. package/esm2015/lib/components/payment-list/payment-list.component.js +22 -80
  16. package/esm2015/lib/components/payment-view/payment-view.component.js +269 -129
  17. package/esm2015/lib/components/pba-details/pba-details.component.js +5 -39
  18. package/esm2015/lib/components/process-refund/process-refund.component.js +314 -0
  19. package/esm2015/lib/components/processed-payments/processed-payments.component.js +72 -0
  20. package/esm2015/lib/components/refund-list/refund-list.component.js +140 -0
  21. package/esm2015/lib/components/refund-status/refund-status.component.js +487 -0
  22. package/esm2015/lib/components/refunds/refunds.component.js +23 -0
  23. package/esm2015/lib/components/reports/reports.component.js +117 -107
  24. package/esm2015/lib/components/status-history/status-history.component.js +28 -35
  25. package/esm2015/lib/components/table/table.component.js +187 -0
  26. package/esm2015/lib/components/unprocessed-payments/unprocessed-payments.component.js +178 -89
  27. package/esm2015/lib/interfaces/AddRemissionRequest.js +6 -7
  28. package/esm2015/lib/interfaces/AddRetroRemissionRequest.js +21 -0
  29. package/esm2015/lib/interfaces/AllocatePaymentRequest.js +11 -9
  30. package/esm2015/lib/interfaces/IAllocationPaymentsRequest.js +2 -3
  31. package/esm2015/lib/interfaces/IBSPayments.js +38 -35
  32. package/esm2015/lib/interfaces/ICardDetails.js +14 -13
  33. package/esm2015/lib/interfaces/IFee.js +44 -29
  34. package/esm2015/lib/interfaces/IOrderReferenceFee.js +25 -0
  35. package/esm2015/lib/interfaces/IPatchRefundAction.js +15 -0
  36. package/esm2015/lib/interfaces/IPayment.js +56 -55
  37. package/esm2015/lib/interfaces/IPaymentGroup.js +12 -11
  38. package/esm2015/lib/interfaces/IPaymentStatus.js +2 -3
  39. package/esm2015/lib/interfaces/IPaymentView.js +17 -0
  40. package/esm2015/lib/interfaces/IPayments.js +6 -5
  41. package/esm2015/lib/interfaces/IRefundAction.js +15 -0
  42. package/esm2015/lib/interfaces/IRefundList.js +29 -0
  43. package/esm2015/lib/interfaces/IRefundReasons.js +17 -0
  44. package/esm2015/lib/interfaces/IRefundRejectReason.js +15 -0
  45. package/esm2015/lib/interfaces/IRefundStatus.js +23 -0
  46. package/esm2015/lib/interfaces/IRemission.js +18 -17
  47. package/esm2015/lib/interfaces/IResubmitRefundRequest.js +21 -0
  48. package/esm2015/lib/interfaces/IStatusHistories.js +12 -11
  49. package/esm2015/lib/interfaces/IStatusHistory.js +14 -13
  50. package/esm2015/lib/interfaces/IssueRefundRequest.js +25 -0
  51. package/esm2015/lib/interfaces/PayhubAntennaRequest.js +28 -0
  52. package/esm2015/lib/interfaces/PaymentToPayhubRequest.js +7 -12
  53. package/esm2015/lib/interfaces/PostIssueRefundRetroRemission.js +17 -0
  54. package/esm2015/lib/interfaces/PostRefundRetroRemission.js +21 -0
  55. package/esm2015/lib/interfaces/RefundsRequest.js +21 -0
  56. package/esm2015/lib/interfaces/UnidentifiedPaymentsRequest.js +2 -3
  57. package/esm2015/lib/interfaces/UnsolicitedPaymentsRequest.js +2 -3
  58. package/esm2015/lib/payment-lib.component.js +112 -18
  59. package/esm2015/lib/payment-lib.module.js +33 -6
  60. package/esm2015/lib/payment-lib.service.js +18 -4
  61. package/esm2015/lib/pipes/capitalize.pipe.js +24 -0
  62. package/esm2015/lib/pipes/ccd-hyphens.pipe.js +3 -4
  63. package/esm2015/lib/pipes/key-value.pipe.js +3 -4
  64. package/esm2015/lib/pipes/sanitize-html.pipe.js +7 -5
  65. package/esm2015/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.js +52 -14
  66. package/esm2015/lib/services/card-details/card-details.service.js +19 -8
  67. package/esm2015/lib/services/case-transactions/case-transactions.service.js +19 -8
  68. package/esm2015/lib/services/orderslist.service.js +211 -0
  69. package/esm2015/lib/services/payment-list/payment-list.service.js +19 -8
  70. package/esm2015/lib/services/payment-view/payment-view.service.js +107 -12
  71. package/esm2015/lib/services/refunds/refunds.service.js +196 -0
  72. package/esm2015/lib/services/shared/error-handler.service.js +6 -4
  73. package/esm2015/lib/services/shared/httpclient/webcomponent.http.client.js +17 -8
  74. package/esm2015/lib/services/shared/logger/console-logger.service.js +7 -5
  75. package/esm2015/lib/services/shared/logger/logger.service.js +7 -5
  76. package/esm2015/lib/services/status-history/status-history.service.js +19 -8
  77. package/esm2015/lib/services/xl-file/xl-file.service.js +57 -50
  78. package/esm2015/public_api.js +1 -2
  79. package/esm5/hmcts-ccpay-web-component.js +33 -25
  80. package/esm5/lib/components/add-remission/add-remission.component.js +822 -47
  81. package/esm5/lib/components/allocate-payments/allocate-payments.component.js +328 -107
  82. package/esm5/lib/components/card-details/card-details.component.js +22 -9
  83. package/esm5/lib/components/case-transactions/case-transactions.component.js +1170 -85
  84. package/esm5/lib/components/error-banner/error-banner.component.js +3 -4
  85. package/esm5/lib/components/fee-summary/fee-summary.component.js +252 -57
  86. package/esm5/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.js +136 -45
  87. package/esm5/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.js +189 -60
  88. package/esm5/lib/components/page-not-found.component.js +3 -4
  89. package/esm5/lib/components/payment-list/payment-list.component.js +21 -8
  90. package/esm5/lib/components/payment-view/payment-view.component.js +318 -17
  91. package/esm5/lib/components/pba-details/pba-details.component.js +5 -6
  92. package/esm5/lib/components/process-refund/process-refund.component.js +336 -0
  93. package/esm5/lib/components/processed-payments/processed-payments.component.js +83 -0
  94. package/esm5/lib/components/refund-list/refund-list.component.js +143 -0
  95. package/esm5/lib/components/refund-status/refund-status.component.js +545 -0
  96. package/esm5/lib/components/refunds/refunds.component.js +29 -0
  97. package/esm5/lib/components/reports/reports.component.js +122 -25
  98. package/esm5/lib/components/status-history/status-history.component.js +27 -9
  99. package/esm5/lib/components/table/table.component.js +217 -0
  100. package/esm5/lib/components/unprocessed-payments/unprocessed-payments.component.js +188 -24
  101. package/esm5/lib/interfaces/AddRemissionRequest.js +5 -6
  102. package/esm5/lib/interfaces/AddRetroRemissionRequest.js +19 -0
  103. package/esm5/lib/interfaces/AllocatePaymentRequest.js +9 -8
  104. package/esm5/lib/interfaces/IAllocationPaymentsRequest.js +2 -3
  105. package/esm5/lib/interfaces/IBSPayments.js +38 -35
  106. package/esm5/lib/interfaces/ICardDetails.js +14 -13
  107. package/esm5/lib/interfaces/IFee.js +44 -29
  108. package/esm5/lib/interfaces/IOrderReferenceFee.js +25 -0
  109. package/esm5/lib/interfaces/IPatchRefundAction.js +15 -0
  110. package/esm5/lib/interfaces/IPayment.js +56 -55
  111. package/esm5/lib/interfaces/IPaymentGroup.js +12 -11
  112. package/esm5/lib/interfaces/IPaymentStatus.js +2 -3
  113. package/esm5/lib/interfaces/IPaymentView.js +17 -0
  114. package/esm5/lib/interfaces/IPayments.js +6 -5
  115. package/esm5/lib/interfaces/IRefundAction.js +15 -0
  116. package/esm5/lib/interfaces/IRefundList.js +29 -0
  117. package/esm5/lib/interfaces/IRefundReasons.js +17 -0
  118. package/esm5/lib/interfaces/IRefundRejectReason.js +15 -0
  119. package/esm5/lib/interfaces/IRefundStatus.js +23 -0
  120. package/esm5/lib/interfaces/IRemission.js +18 -17
  121. package/esm5/lib/interfaces/IResubmitRefundRequest.js +19 -0
  122. package/esm5/lib/interfaces/IStatusHistories.js +12 -11
  123. package/esm5/lib/interfaces/IStatusHistory.js +14 -13
  124. package/esm5/lib/interfaces/IssueRefundRequest.js +22 -0
  125. package/esm5/lib/interfaces/PayhubAntennaRequest.js +25 -0
  126. package/esm5/lib/interfaces/PaymentToPayhubRequest.js +6 -10
  127. package/esm5/lib/interfaces/PostIssueRefundRetroRemission.js +16 -0
  128. package/esm5/lib/interfaces/PostRefundRetroRemission.js +19 -0
  129. package/esm5/lib/interfaces/RefundsRequest.js +19 -0
  130. package/esm5/lib/interfaces/UnidentifiedPaymentsRequest.js +2 -3
  131. package/esm5/lib/interfaces/UnsolicitedPaymentsRequest.js +2 -3
  132. package/esm5/lib/payment-lib.component.js +84 -12
  133. package/esm5/lib/payment-lib.module.js +33 -6
  134. package/esm5/lib/payment-lib.service.js +25 -4
  135. package/esm5/lib/pipes/capitalize.pipe.js +32 -0
  136. package/esm5/lib/pipes/ccd-hyphens.pipe.js +3 -4
  137. package/esm5/lib/pipes/key-value.pipe.js +3 -4
  138. package/esm5/lib/pipes/sanitize-html.pipe.js +7 -5
  139. package/esm5/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.js +61 -14
  140. package/esm5/lib/services/card-details/card-details.service.js +19 -8
  141. package/esm5/lib/services/case-transactions/case-transactions.service.js +19 -8
  142. package/esm5/lib/services/orderslist.service.js +276 -0
  143. package/esm5/lib/services/payment-list/payment-list.service.js +19 -8
  144. package/esm5/lib/services/payment-view/payment-view.service.js +150 -13
  145. package/esm5/lib/services/refunds/refunds.service.js +236 -0
  146. package/esm5/lib/services/shared/error-handler.service.js +6 -4
  147. package/esm5/lib/services/shared/httpclient/webcomponent.http.client.js +17 -8
  148. package/esm5/lib/services/shared/logger/console-logger.service.js +7 -5
  149. package/esm5/lib/services/shared/logger/logger.service.js +7 -5
  150. package/esm5/lib/services/status-history/status-history.service.js +19 -8
  151. package/esm5/lib/services/xl-file/xl-file.service.js +63 -50
  152. package/esm5/public_api.js +1 -2
  153. package/fesm2015/hmcts-ccpay-web-component.js +4515 -2023
  154. package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
  155. package/fesm5/hmcts-ccpay-web-component.js +6828 -2424
  156. package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
  157. package/hmcts-ccpay-web-component.d.ts +31 -22
  158. package/hmcts-ccpay-web-component.metadata.json +1 -1
  159. package/lib/components/add-remission/add-remission.component.d.ts +77 -3
  160. package/lib/components/allocate-payments/allocate-payments.component.d.ts +26 -9
  161. package/lib/components/case-transactions/case-transactions.component.d.ts +84 -4
  162. package/lib/components/fee-summary/fee-summary.component.d.ts +13 -1
  163. package/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.d.ts +2 -0
  164. package/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.d.ts +7 -0
  165. package/lib/components/payment-view/payment-view.component.d.ts +34 -1
  166. package/lib/components/process-refund/process-refund.component.d.ts +46 -0
  167. package/lib/components/processed-payments/processed-payments.component.d.ts +14 -0
  168. package/lib/components/refund-list/refund-list.component.d.ts +23 -0
  169. package/lib/components/refund-status/refund-status.component.d.ts +66 -0
  170. package/lib/components/refunds/refunds.component.d.ts +5 -0
  171. package/lib/components/reports/reports.component.d.ts +5 -1
  172. package/lib/components/status-history/status-history.component.d.ts +1 -0
  173. package/lib/components/table/table.component.d.ts +35 -0
  174. package/lib/components/unprocessed-payments/unprocessed-payments.component.d.ts +25 -4
  175. package/lib/interfaces/AddRemissionRequest.d.ts +2 -2
  176. package/lib/interfaces/AddRetroRemissionRequest.d.ts +5 -0
  177. package/lib/interfaces/AllocatePaymentRequest.d.ts +16 -3
  178. package/lib/interfaces/IBSPayments.d.ts +1 -0
  179. package/lib/interfaces/IFee.d.ts +7 -0
  180. package/lib/interfaces/IOrderReferenceFee.d.ts +9 -0
  181. package/lib/interfaces/IPatchRefundAction.d.ts +4 -0
  182. package/lib/interfaces/IPaymentView.d.ts +5 -0
  183. package/lib/interfaces/IRefundAction.d.ts +4 -0
  184. package/lib/interfaces/IRefundList.d.ts +14 -0
  185. package/lib/interfaces/IRefundReasons.d.ts +5 -0
  186. package/lib/interfaces/IRefundRejectReason.d.ts +4 -0
  187. package/lib/interfaces/IRefundStatus.d.ts +8 -0
  188. package/lib/interfaces/IResubmitRefundRequest.d.ts +5 -0
  189. package/lib/interfaces/IssueRefundRequest.d.ts +6 -0
  190. package/lib/interfaces/PayhubAntennaRequest.d.ts +7 -0
  191. package/lib/interfaces/PaymentToPayhubRequest.d.ts +2 -3
  192. package/lib/interfaces/PostIssueRefundRetroRemission.d.ts +4 -0
  193. package/lib/interfaces/PostRefundRetroRemission.d.ts +5 -0
  194. package/lib/interfaces/RefundsRequest.d.ts +5 -0
  195. package/lib/payment-lib.component.d.ts +28 -3
  196. package/lib/payment-lib.service.d.ts +3 -0
  197. package/lib/pipes/capitalize.pipe.d.ts +5 -0
  198. package/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.d.ts +2 -0
  199. package/lib/services/orderslist.service.d.ts +40 -0
  200. package/lib/services/payment-view/payment-view.service.d.ts +17 -1
  201. package/lib/services/refunds/refunds.service.d.ts +30 -0
  202. package/lib/services/xl-file/xl-file.service.d.ts +6 -6
  203. package/package.json +1 -1
@@ -1 +1 @@
1
- {"version":3,"sources":["ng://@hmcts/ccpay-web-component/lib/payment-lib.service.ts","ng://@hmcts/ccpay-web-component/lib/payment-lib.component.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/error-handler.service.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/logger/logger.service.ts","ng://@hmcts/ccpay-web-component/lib/services/payment-list/payment-list.service.ts","ng://@hmcts/ccpay-web-component/lib/components/payment-list/payment-list.component.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/httpclient/webcomponent.http.client.ts","ng://@hmcts/ccpay-web-component/lib/services/payment-view/payment-view.service.ts","ng://@hmcts/ccpay-web-component/lib/components/payment-view/payment-view.component.ts","ng://@hmcts/ccpay-web-component/lib/services/card-details/card-details.service.ts","ng://@hmcts/ccpay-web-component/lib/components/card-details/card-details.component.ts","ng://@hmcts/ccpay-web-component/lib/components/page-not-found.component.ts","ng://@hmcts/ccpay-web-component/lib/services/status-history/status-history.service.ts","ng://@hmcts/ccpay-web-component/lib/components/status-history/status-history.component.ts","ng://@hmcts/ccpay-web-component/lib/components/pba-details/pba-details.component.ts","ng://@hmcts/ccpay-web-component/lib/services/shared/logger/console-logger.service.ts","ng://@hmcts/ccpay-web-component/lib/services/case-transactions/case-transactions.service.ts","ng://@hmcts/ccpay-web-component/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.ts","ng://@hmcts/ccpay-web-component/lib/components/case-transactions/case-transactions.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/PaymentToPayhubRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/fee-summary/fee-summary.component.ts","null","ng://@hmcts/ccpay-web-component/lib/components/error-banner/error-banner.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/UnidentifiedPaymentsRequest.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/AllocatePaymentRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.ts","ng://@hmcts/ccpay-web-component/lib/interfaces/UnsolicitedPaymentsRequest.ts","ng://@hmcts/ccpay-web-component/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.ts","ng://@hmcts/ccpay-web-component/lib/components/unprocessed-payments/unprocessed-payments.component.ts","ng://@hmcts/ccpay-web-component/lib/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","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","takePayment","TAKEPAYMENT","isBulkScanEnable","paymentGroups","calculateAmounts","totalRefundAmount","calculateRefundAmount","setDefaults","toLocaleLowerCase","totalPayments","totalRemissions","totalFees","getAllocationStatus","push","payment_group_reference","allPayments","remisison","isFeeAmountZero","grpOutstandingAmount","isFeeRecordsExist","getGroupOutstandingAmount","redirectToFeeSearchPage","navigateByUrl","redirectToReportsPage","loadFeeSummaryPage","goToPaymentViewComponent","selectedUnprocessedFeeEvent","unprocessedRecordId","isAddFeeBtnEnabled","isUnprocessedRecordSelected","PaymentToPayhubRequest","ccd_case_number","service","serviceName","toFixed","site_id","BS_ENABLE_FLAG","FeeSummaryComponent","location","viewStatus","bsPaymentDcnNumber","getUnassignedPaymentlist","getPaymentGroup","unassignedPayments","responsible_service_id","upPaymentErrorMessage","getRemissionByFeeCode","feeCode","_a","o","m","Symbol","iterator","i","call","next","value","done","tslib_1.__values","_b","fee_code","addRemission","currentFee","totalAfterRemission","net_amount","outStandingAmount","confirmRemoveFee","isRemoveBtnDisabled","removeFee","success","loadCaseTransactionPage","cancelRemission","page","ISBSenable","isConfirmationBtnDisabled","seriveName","requestBody","response","go","payhubHtml","isBackButtonEnable","goToAllocatePage","Location","ErrorBannerComponent","UnidentifiedPaymentsRequest","payment_reference","unidentified_reason","payment_allocation_status","description","name","AllocatePaymentRequest","unAllocatedPayment","siteID","exceptionRecord","banked_date","date_banked","exception_record","currency","document_control_number","dcn_reference","external_provider","giro_slip_no","bgc_reference","payer_name","payment_channel","payment_status","payment_method","requestor","MarkUnidentifiedPaymentComponent","formBuilder","getErrorMessage","getUnassignedPayment","markPaymentUnidentifiedForm","group","investicationDetail","FormControl","Validators","compose","required","minLength","maxLength","pattern","unassignedRecord","beCcdNumber","ccd_reference","beExceptionNumber","exception_record_reference","exceptionReference","ccdReference","trimUnderscore","saveAndContinue","resetForm","investicationField","controls","formerror","errors","dirty","valid","investigationComment","invalid","actualLength","val","isInvesticationDetailEmpty","investicationDetailHasError","investicationDetailMinHasError","investicationDetailMaxHasError","confirmPayments","isConfirmButtondisabled","reason","res1","res2","response2","reqBody","reference","res3","gotoCasetransationPage","cancelMarkUnidentifiedPayments","FormBuilder","UnsolicitedPaymentsRequest","responsible_office","responsible_person","email_id","receiving_office","receiving_email_address","sending_email_address","MarkUnsolicitedPaymentComponent","markPaymentUnsolicitedForm","responsibleOffice","responsiblePerson","emailId","reasonField","setValue","officeIdField","field","isReasonEmpty","reasonHasError","reasonMinHasError","reasonMaxHasError","isResponsibleOfficeEmpty","responsibleOfficeHasError","cancelMarkUnsolicitedPayments","checkingFormValue","formFields","valueExists","hasOwnProperty","UnprocessedPaymentsComponent","EventEmitter","setValuesForUnassignedRecord","unassignedRecordList","serviceId","isExceptionCase","isRecordExist","formatUnassignedRecordId","ID","recordId","loadUnsolicitedPage","unprocessedPaymentSelectEvent","selectedRecordReference","validateButtons","emit","unProcessedPaymentServiceId","isMarkAsUnidentifiedbtnEnabled","FEE_RECORDS_EXISTS","isAllocateToExistingFeebtnEnabled","IS_OS_AMT_AVAILABLE","isAllocatedToNewFeebtnEnabled","unprocessedPaymentUnSelectEvent","Output","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","values","j","width","v","buffer","fileName","Blob","FileSaver.saveAs","ReportsComponent","xlFileService","fromValidation","getToday","Date","toISOString","split","getSelectedFromDate","validateDates","selectedStartDate","tranformDate","reportsForm","selectedEndDate","selectedreport","downloadReport","dataLossRptDefault","loss_resp","payment_asset_dcn","env_ref","env_item","resp_service_id","resp_service_name","bgc_batch","unProcessedRptDefault","exception_ref","ccd_ref","processedUnallocated","allocation_reason","ccd_exception_ref","ccd_case_ref","updated_by","shortFallsRptDefault","surplus_shortfall","balance","payment_amount","ccd_case_reference","ccd_exception_reference","processed_date","selectedReportName","res","applyDateFormat","getFileName","substr","loc","stDt","formatDate","enDt","now","timestamp","getTwodigit","getHours","getMinutes","getSeconds","getCamelCaseString","strDate","parts","slice","map","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('PAYMENT_METHOD') PAYMENT_METHOD: string;\n @Input('VIEW') VIEW: string;\n @Input('PAYMENT_GROUP_REF') PAYMENT_GROUP_REF?: string;\n @Input('TAKEPAYMENT') TAKEPAYMENT: boolean;\n @Input('DCN_NUMBER') DCN_NUMBER: string;\n @Input('SELECTED_OPTION') SELECTED_OPTION: string;\n @Input('ISBSENABLE') ISBSENABLE: Boolean;\n paymentMethod: string;\n bspaymentdcn: string;\n unProcessedPaymentServiceId: string = null;\n paymentGroupReference: string;\n paymentReference: string;\n viewName: string;\n unProcessedPayment: IBSPayments = null;\n\n constructor(private router: Router,\n private paymentLibService: PaymentLibService) { }\n\n ngOnInit() {\n this.paymentLibService.setApiRootUrl(this.API_ROOT);\n this.paymentLibService.setBulkScanApiRootUrl(this.BULKSCAN_API_ROOT);\n if (this.PAYMENT_GROUP_REF) {\n this.paymentGroupReference = this.PAYMENT_GROUP_REF;\n }\n if (this.DCN_NUMBER) {\n this.bspaymentdcn = this.DCN_NUMBER;\n }\n\n if (this.VIEW === 'fee-summary') {\n this.viewName = 'fee-summary';\n } else if (this.VIEW !== 'reports') {\n this.viewName = 'case-transactions';\n } else {\n this.viewName = this.VIEW;\n }\n }\n}\n","import { Injectable } from '@angular/core';\nimport { _throw } from 'rxjs/observable/throw';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { HttpErrorResponse } from '@angular/common/http';\n\n@Injectable({\n providedIn: 'root'\n})\n\n\nexport class ErrorHandlerService {\n\n constructor() { }\n\n\n handleError(err: HttpErrorResponse): Observable<any> {\n let errorMessage: string;\n if (err.error instanceof Error) {\n // A client-side or network error occurred.\n errorMessage = `An error occurred: ${err.error.message}`;\n } else {\n // The backend returned an unsuccessful response code.\n if (err.status === 404) {\n if (!err.error) {\n errorMessage = 'Not found';\n } else {\n errorMessage = err.error;\n }\n } else if (err.error.messsage === undefined) {\n errorMessage = 'Server error';\n } else {\n errorMessage = `${err.error.message}`;\n }\n }\n return _throw(errorMessage);\n }\n\n getServerErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","import { Injectable } from '@angular/core';\n\nconst noop = (): any => undefined;\n\nexport abstract class Logger {\n\n info: any;\n warn: any;\n error: any;\n}\n\n@Injectable({\n providedIn: 'root'\n})\nexport class LoggerService implements Logger {\n\n info: any;\n warn: any;\n error: any;\n\n invokeConsoleMethod(type: string, args?: any): void {}\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\n\nimport { Observable } from 'rxjs/internal/Observable';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { IPayments } from '../../interfaces/IPayments';\nimport { catchError } from 'rxjs/operators';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PaymentListService {\n payments: IPayments;\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n\n getPaymentByCcdCaseNumber(ccdCaseNumber: string, paymentMethod: string): Observable<IPayments> {\n this.logger.info('Payment-list-service getPaymentByCcdCaseNumber for: ', ccdCaseNumber);\n\n return this.http.get<IPayments>(`${this.paymentLibService.API_ROOT}/cases/${ccdCaseNumber}/payments`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import {Component, OnInit} from '@angular/core';\n\nimport {PaymentListService} from '../../services/payment-list/payment-list.service';\nimport {IPayments} from '../../interfaces/IPayments';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport {IStatusHistory} from '../../interfaces/IStatusHistory';\n\n@Component({\n selector: 'ccpay-payment-list',\n template: `<div class=\"govuk-width-container\">\n\n <div *ngIf=\"errorMessage\">\n <div class=\"error-summary\" role=\"group\" aria-labelledby=\"failure-error-summary-heading\" tabindex=\"-1\">\n <h2 class=\"heading-medium error-summary-heading\" id=\"failure-error-summary-heading\">\n Payments list could not be retrieved\n </h2>\n <div class=\"govuk-error-summary__body\">\n {{ errorMessage }}\n </div>\n </div>\n </div>\n\n <div *ngIf=\"!errorMessage && payments\">\n\n <table class=\"table\">\n <tr>\n <th class=\"bold font-xsmall\">Payment group reference</th>\n <th class=\"bold font-xsmall\">Payment reference</th>\n <th class=\"bold font-xsmall\">Date created</th>\n <th class=\"bold font-xsmall\">Channel</th>\n <th class=\"bold font-xsmall\">Method</th>\n <th class=\"bold font-xsmall\">Amount</th>\n <th class=\"bold font-xsmall\">Status</th>\n </tr>\n <tr *ngFor=\"let payment of payments.payments\">\n <td class=\"font-xsmall\">\n <a href=\"javascript:void(0)\" (click)=\"loadPaymentViewComponent(payment.payment_group_reference, payment.payment_reference, payment.method)\">{{ payment.payment_group_reference }}</a>\n <td class=\"font-xsmall\">{{ payment.payment_reference }}</td>\n <td class=\"font-xsmall\">{{ payment.date_created | date:'dd MMM yyyy hh:mm:ss' }}</td>\n <td class=\"font-xsmall\">{{ payment.channel | titlecase }}</td>\n <td class=\"font-xsmall\">{{ payment.method | titlecase }}</td>\n <td class=\"font-xsmall\">£{{ payment.amount | number:'.2' }}</td>\n <td *ngIf=\"payment.method === 'card' && payment.channel === 'online'\">\n <details>\n <summary><span class=\"summary font-xsmall\">{{ payment.status }}</span></summary>\n <div class=\"panel panel-border-narrow\" *ngIf=\"payment.status === 'Failed'\">\n <div *ngFor=\"let statusHistory of payment.status_histories\">\n <p class=\"font-xsmall\" *ngIf=\"statusHistory.error_code === 'P0010'\">\n Payment rejected due to payment method selected or payment information entered, for example, failed fraud check, a 3D Secure authentication failure, or the user does not have enough money in account\n </p>\n <p class=\"font-xsmall\" *ngIf=\"statusHistory.error_code === 'P0020'\">\n Payment was not confirmed and completed within 90 minutes of being created\n </p>\n <p class=\"font-xsmall\" *ngIf=\"statusHistory.error_code === 'P0030'\">\n User clicked on the “Cancel payment” button during the payment journey\n </p>\n <p class=\"font-xsmall\" *ngIf=\"statusHistory.error_code === 'P0050'\">\n Multiple possible causes, for example a configuration problem with the payment provider, or incorrect login credentials\n </p>\n </div>\n </div>\n </details>\n </td>\n <td *ngIf=\"payment.method === 'card' && payment.channel === 'telephony'\" class=\"font-xsmall\">\n {{ payment.status}}\n </td>\n <td *ngIf=\"payment.method === 'payment by account'\">\n <details>\n <summary><span class=\"summary font-xsmall\">{{ payment.status }}</span></summary>\n <div class=\"panel panel-border-narrow\" *ngIf=\"payment.status === 'Pending'\">\n <p class=\"font-xsmall\">This means the transaction is being processed by Liberata.</p>\n </div>\n </details>\n </td>\n </tr>\n </table>\n\n </div>\n\n</div>\n`,\n styles: [``]\n})\nexport class PaymentListComponent implements OnInit {\n payments: IPayments;\n errorMessage: string;\n code: string;\n\n constructor(private paymentListService: PaymentListService,\n private paymentLibComponent: PaymentLibComponent) {\n }\n\n ngOnInit() {\n this.paymentListService.getPaymentByCcdCaseNumber(this.paymentLibComponent.CCD_CASE_NUMBER, this.paymentLibComponent.PAYMENT_METHOD)\n .subscribe(\n payments => this.payments = payments,\n (error: any) => this.errorMessage = <any>error\n );\n }\n\n loadPaymentViewComponent(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.paymentLibComponent.paymentMethod = paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Meta } from '@angular/platform-browser';\nimport { Observable } from 'rxjs';\n\n@Injectable()\nexport class WebComponentHttpClient {\n constructor(\n private http: HttpClient,\n private meta: Meta\n ) { }\n\n post(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.post(url, body, opts);\n }\n\n put(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.put(url, body, opts);\n }\n\n get(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.get(url, opts);\n }\n\n delete(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.delete(url, opts);\n }\n \n patch(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.patch(url, body, opts);\n }\n\n addHeaders(options: any): any {\n const csrfToken = this.meta.getTag('name=csrf-token');\n const headers = {};\n if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n headers['CSRF-Token'] = csrfToken.content;\n options.headers = new HttpHeaders(headers);\n options.responseType = 'text';\n return options;\n }\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Observable } from 'rxjs/internal/Observable';\n\nimport {IPayment} from '../../interfaces/IPayment';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { catchError } from 'rxjs/operators';\nimport { LoggerService } from '../shared/logger/logger.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { Meta } from '@angular/platform-browser';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { IAllocationPaymentsRequest } from '../../interfaces/IAllocationPaymentsRequest';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PaymentViewService {\n\n private meta: Meta;\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getPaymentDetails(paymentReference: string, paymentMethod: string): Observable<IPayment> {\n this.logger.info('Payment-view-service getPaymentDetails for: ', paymentReference);\n\n return this.http.get<IPayment>(paymentMethod === 'card' || paymentMethod === 'cash' || paymentMethod === 'cheque' || paymentMethod === 'postal order' ?\n `${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}` :\n `${this.paymentLibService.API_ROOT}/credit-account-payments/${paymentReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getPaymentGroupDetails(paymentGroupReference: string, 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 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 <input #myInput type='hidden' id='iFrameDrivenImageValue' value='PAYMENTREFERENCE'>\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 {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=\"takePayment\">\n <div class=\"govuk-grid-row\">\n <div class=\"govuk-grid-column-two-thirds\">\n <h1 class=\"govuk-heading-xl\">Case transactions</h1>\n </div>\n\n <div class=\"govuk-grid-column-one-third\" align=\"right\" >\n <a [ngClass]=\"{ 'disable': !isAddFeeBtnEnabled} \" (click)=\"redirectToFeeSearchPage($event)\" class=\"button\">Add a new fee</a>\n </div>\n </div> \n\n <div class=\"govuk-grid-row\">\n <div class=\"govuk-grid-column-two-thirds govuk-!-padding-bottom-6\">\n <h3 class=\"heading-medium\">CCD 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 </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) - totalPayments | currency :'GBP':'symbol':'1.2-2'}}</td>\n </tr>\n </tbody>\n </table>\n </div>\n </div>\n\n\n <!-- No fees start -->\n <div *ngIf=\"paymentGroups?.length === 0\">\n <div class=\"govuk-grid-row\">\n <div class=\"govuk-grid-column-full\">\n <span class=\"heading-small\">Existing 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\">Group amount outstanding</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__cell\" colspan=\"6\">No fees recorded</td>\n </tr>\n </tbody>\n </table>\n </div>\n </div>\n </div>\n\n <!-- No fees end -->\n\n <div *ngFor=\"let paymentGroup of paymentGroups\">\n\n <div class=\"govuk-grid-row\">\n <div class=\"govuk-grid-column-full govuk-grid-column-full--gr\">\n <span class=\"heading-medium\">Group reference: {{paymentGroup.payment_group_reference}}</span>\n </div>\n </div>\n <div class=\"govuk-grid-row\">\n\n <!--New Code start-->\n\n <div class=\"govuk-grid-column-full\">\n <span class=\"heading-small\">Exisiting fees</span>\n </div>\n <div class=feeclass>\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=\"groupamount 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\">{{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 align-center\"> {{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\">\n {{getGroupOutstandingAmount(paymentGroup) | currency:'GBP':'symbol-narrow':'1.2-2' }} </td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"paymentGroup.fees.length==0\">\n <td class=\"govuk-table__cell\" colspan=\"6\">No payments recorded</td>\n </tbody>\n </table>\n </div>\n </div>\n <div class=\"govuk-inset-text govuk-inset-text__no-border\" *ngIf=\"paymentGroup.payments || paymentGroup.remissions\">\n <details>\n <summary class=\"govuk-hidetext\">\n <span class=\"summary\">Allocated payments and remissions</span>\n </summary>\n\n <div class=\"panel panel-border-narrow\">\n <!-- payments -->\n <span class=\"heading-medium\">Payments</span>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Payment reference</td>\n <td class=\"govuk-table__header\" scope=\"col\">Date created</td>\n <td class=\"govuk-table__header\" scope=\"col\">Channel</td>\n <td class=\"govuk-table__header\" scope=\"col\">Method</td>\n <td class=\"govuk-table__header\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Allocation status</td>\n <td class=\"govuk-table__header\" scope=\"col\">Status</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"paymentGroup.payments?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let payment of paymentGroup.payments\">\n <td class=\"govuk-table__cell whitespace-inherit\">\n <a href=\"javascript:void(0)\" (click)=\"goToPaymentViewComponent(paymentGroup.payment_group_reference, 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=\"paymentGroup.payments?.length === 0\">\n <td class=\"govuk-table__cell\" colspan=\"6\">No payments recorded</td>\n </tbody>\n </table>\n\n <!-- remissions -->\n <span class=\"heading-medium\">Remissions</span>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">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\">Fee applied against</td>\n <td class=\"govuk-table__header\" scope=\"col\">Remission amount</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"paymentGroup.remissions?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let remission of paymentGroup.remissions\">\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.fee_code }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ remission.hwf_amount }}</td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"paymentGroup.remissions?.length === 0\">\n <td class=\"govuk-table__cell\" colspan=\"5\">No remissions recorded</td>\n </tbody>\n </table>\n </div>\n </details>\n \n\n <div *ngIf=\"takePayment\">\n <button type=\"submit\" (click)=\"loadFeeSummaryPage(paymentGroup)\"\n [disabled]=\"(getGroupOutstandingAmount(paymentGroup) <= 0 || isUnprocessedRecordSelected)\"\n [ngClass]='(getGroupOutstandingAmount(paymentGroup) <= 0 || isUnprocessedRecordSelected) ? \"govuk-button govuk-button--secondary govuk-button--disabled govuk-!-margin-right-1\" : \"govuk-button govuk-button--secondary govuk-!-margin-right-1\"'>\n Add telephone payment\n </button>\n </div>\n </div>\n </div>\n </div>\n <ccpay-app-unprocessed-payments\n *ngIf=\"isBulkScanEnable\"\n [IS_BUTTON_ENABLE]=\"takePayment\"\n [FEE_RECORDS_EXISTS]=\"isFeeRecordsExist\" \n [IS_OS_AMT_AVAILABLE]=\"isGrpOutstandingAmtPositive\" \n (selectedUnprocessedFeeEvent) = \"selectedUnprocessedFeeEvent($event)\">\n </ccpay-app-unprocessed-payments>\n <div class=\"govuk-grid-row govuk-grid__surplus-payments\" *ngIf=\"!takePayment\">\n <div class=\"govuk-grid-column-full\">\n <span class=\"heading-medium\">Processed payments</span>\n <table class=\"govuk-table\">\n <thead class=\"govuk-table__head\">\n <tr class=\"govuk-table__row\">\n <td class=\"govuk-table__header\" scope=\"col\">Payment reference</td>\n <td class=\"govuk-table__header\" scope=\"col\">Date created</td>\n <td class=\"govuk-table__header\" scope=\"col\">Date updated</td>\n <td class=\"govuk-table__header\" scope=\"col\">Channel</td>\n <td class=\"govuk-table__header\" scope=\"col\">Method</td>\n <td class=\"govuk-table__header\" scope=\"col\">Amount</td>\n <td class=\"govuk-table__header\" scope=\"col\">Allocation status</td>\n <td class=\"govuk-table__header\" scope=\"col\">Status</td>\n </tr>\n </thead>\n <tbody class=\"govuk-table__body\" *ngIf=\"allPayments?.length > 0\">\n <tr class=\"govuk-table__row\" *ngFor=\"let payment of allPayments\">\n <td class=\"govuk-table__cell whitespace-inherit\">\n <a href=\"javascript:void(0)\" (click)=\"goToPaymentViewComponent(payment.paymentGroupReference, payment.reference, payment.method)\">{{ payment.reference }}</a>\n </td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.date_created | date:'dd MMM yyyy HH:mm:ss' }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.date_updated | date:'dd MMM yyyy HH:mm:ss' }}</td>\n <td class=\"channel govuk-table__cell whitespace-inherit\">{{ payment.channel | lowercase }}</td>\n <td class=\"govuk-table__cell capitalize whitespace-inherit\">{{ payment.method | lowercase}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.amount }}</td>\n <td class=\"govuk-table__cell whitespace-inherit\"> {{getAllocationStatus(payment)}}</td>\n <td class=\"govuk-table__cell whitespace-inherit\">{{ payment.status }}</td>\n </tr>\n </tbody>\n <tbody class=\"govuk-table__body\" *ngIf=\"allPayments?.length === 0\">\n <td class=\"govuk-table__cell\" colspan=\"8\">No payments recorded</td>\n </tbody>\n </table>\n </div>\n</div>\n <div class=\"govuk-grid-row govuk-grid__surplus-payments\" *ngIf=\"totalRefundAmount > 0 && takePayment\">\n <div class=\"govuk-grid-column-full govuk-grid__surplus-payments-col1\">\n <h3 class=\"heading-medium\">Surplus payments</h3>\n </div>\n <div class=\"govuk-grid-column-full\">\n Total surplus payments received: {{totalRefundAmount | currency :'GBP':'symbol':'1.2-2'}}\n </div>\n </div>\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}.capitalize::first-letter{text-transform:uppercase}.whitespace-inherit{white-space:inherit!important}`]\n})\nexport class CaseTransactionsComponent implements OnInit {\n takePayment: boolean;\n ccdCaseNumber: string;\n paymentGroups: IPaymentGroup[] = [];\n payments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n fees: IFee[] = [];\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n isAddFeeBtnEnabled: boolean = true;\n isUnprocessedRecordSelected: boolean = false;\n exceptionRecordReference: string;\n isFeeRecordsExist: boolean = false;\n isGrpOutstandingAmtPositive: boolean = false;\n totalRefundAmount:Number;\n isBulkScanEnable;\n constructor(private router: Router,\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 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 }\n\n setDefaults(): void {\n this.totalPayments = 0.00;\n this.totalRemissions = 0.00;\n this.totalFees = 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\n calculateAmounts(): void {\n let feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00;\n\n this.paymentGroups.forEach(paymentGroup => {\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\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 this.payments.push(payment);\n }\n payment.paymentGroupReference = paymentGroup.payment_group_reference\n this.allPayments.push(payment);\n });\n }\n this.totalPayments = paymentsTotal;\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\n loadFeeSummaryPage(paymentGroup: IPaymentGroup) {\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.payment_group_reference;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n\n goToPaymentViewComponent(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 selectedUnprocessedFeeEvent(unprocessedRecordId: string) {\n if ( unprocessedRecordId ) {\n this.isAddFeeBtnEnabled = false\n this.isUnprocessedRecordSelected = true;\n } else {\n this.isAddFeeBtnEnabled = true;\n this.isUnprocessedRecordSelected = false;\n }\n }\n}\n","import { IFee } from './IFee';\n\nexport class PaymentToPayhubRequest {\n currency = 'GBP';\n site_id: string;\n description = 'PayBubble payment';\n channel = 'telephony';\n provider = 'pci pal';\n service: string;\n\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, service: string, serviceName: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.service= serviceName;\n this.site_id = service;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IFee } from '../../interfaces/IFee';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { SafeHtml } from '@angular/platform-browser';\nimport {Router} from '@angular/router';\nimport {Location} from '@angular/common';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-fee-summary',\n template: `\n<div class=\"govuk-breadcrumbs\" *ngIf=\"isBackButtonEnable\">\n <ol class=\"govuk-breadcrumbs__list\">\n <li class=\"govuk-breadcrumbs__list-item\">\n <a (click)=\"redirectToFeeSearchPage($event)\" class=\"govuk-back-link govuk-label\">Back</a>\n </li>\n </ol>\n</div>\n\n<div class=\"fee-summary\" *ngIf=\"viewStatus === 'main'\">\n <main class=\"govuk-main-wrapper\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='FEESUMMARY'>\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.fees\">\n <tr class=\"govuk-table__row\" *ngFor=\"let fee of paymentGroup.fees\">\n <td class=\"govuk-table__cell\">{{ fee.code }}</td>\n <td class=\"govuk-table__cell\">{{ fee.description }}</td>\n <td class=\"govuk-table__cell\">{{ getRemissionByFeeCode(fee.code)?.hwf_reference }}</td>\n <td class=\"govuk-table__cell grey-text\">\n <table class=\"govuk-table\">\n <tr class=\"govuk-table__row\">\n <td class=\"no-border grey-text subcolumn-1\">Fee amount:</td>\n <td class=\"no-border subcolumn-2\">{{ fee.fee_amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"no-border subcolumn-3\"><a (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\">{{ getRemissionByFeeCode(fee.code)?.hwf_amount? ( getRemissionByFeeCode(fee.code)?.hwf_amount | currency:'GBP':'symbol-narrow':'1.2-2') : '-' }}</td>\n <td class=\"no-border subcolumn-3\"> <a (click)=\"addRemission(fee)\" [ngClass]=\"{'remissionDisable': service==null}\" *ngIf=\"getRemissionByFeeCode(fee.code)?.hwf_amount === 0 || !getRemissionByFeeCode(fee.code)?.hwf_amount\">Deduct remission</a></td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"no-border grey-text subcolumn-1\">Total after remission:</td>\n <td class=\"no-border subcolumn-2\">{{ fee.net_amount | currency:'GBP':'symbol-narrow':'1.2-2' }}</td>\n <td class=\"no-border subcolumn-3\"></td>\n </tr>\n </table>\n </td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"no-border\"></td>\n <td class=\"no-border\"></td>\n <td class=\"no-border\"></td>\n <td class=\"no-border\">\n <table class=\"govuk-table\">\n <tr class=\"govuk-table__row\">\n <td class=\"no-border govuk-!-font-weight-bold subcolumn-1\">Total payment</td>\n <td class=\"no-border subcolumn-2\">{{ totalAfterRemission - outStandingAmount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n <td class=\"no-border subcolumn-3\"></td>\n </tr>\n <tr class=\"govuk-table__row\">\n <td class=\"no-border govuk-!-font-weight-bold subcolumn-1\">Total outstanding amount</td>\n <td class=\"no-border subcolumn-2\">{{ outStandingAmount | currency:'GBP':'symbol-narrow':'1.2-2'}}</td>\n <td class=\"no-border subcolumn-3\"></td>\n </tr>\n </table>\n </td>\n </tr>\n\n <tr class=\"govuk-table__row\" *ngIf=\"!bsPaymentDcnNumber\">\n <td class=\"no-border\"></td>\n <td class=\"no-border\"></td>\n <td class=\"no-border\"></td>\n <td class=\"no-border\">\n\n <div class=\"govuk-form-group govuk-form-group--mg\">\n\n <fieldset class=\"govuk-fieldset\">\n <legend class=\"govuk-fieldset__legend govuk-fieldset__legend--m\">\n <span class=\"govuk-fieldset__heading govuk-fieldset__heading--fz\">\n What service is this fee for?\n </span>\n </legend>\n <div class=\"govuk-radios govuk-radios--small\">\n <div class=\"govuk-radios__item\">\n <input id=\"changed-name\" class=\"govuk-radios__input\" [(ngModel)]=\"service\" type=\"radio\" aria-label=\"AA07\" value=\"AA07\">\n <label class=\"govuk-label govuk-radios__label\" for=\"changed-name\">\n Divorce\n </label>\n </div>\n <div class=\"govuk-radios__item\">\n <input id=\"changed-name-2\" class=\"govuk-radios__input\" [(ngModel)]=\"service\" type=\"radio\" aria-label=\"AA08\" value=\"AA08\">\n <label class=\"govuk-label govuk-radios__label\" for=\"changed-name-2\">\n Probate\n </label>\n </div>\n </div>\n </fieldset>\n\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 <input #myInput type='hidden' id='iFrameDrivenImageValue' value='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}`]\n})\n\nexport class FeeSummaryComponent implements OnInit {\n @Input() paymentGroupRef: string;\n @Input() ccdCaseNumber: string;\n\n bsPaymentDcnNumber: string;\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n viewStatus = 'main';\n currentFee: IFee;\n totalFee: number;\n payhubHtml: SafeHtml;\n service: string = null;\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\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private location: Location,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent\n ) {}\n\n ngOnInit() {\n this.viewStatus = 'main';\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n if (this.bsPaymentDcnNumber) {\n this.getUnassignedPaymentlist();\n }\n this.getPaymentGroup();\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.paymentLibComponent.DCN_NUMBER).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error';\n }\n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error'; \n } \n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n }\n\n }\n\n getRemissionByFeeCode(feeCode: string): IRemission {\n if (this.paymentGroup && this.paymentGroup.remissions && this.paymentGroup.remissions.length > 0) {\n for (const remission of this.paymentGroup.remissions) {\n if (remission.fee_code === feeCode) {\n return remission;\n }\n }\n }\n return null;\n }\n\n addRemission(fee: IFee) {\n if (this.service) {\n this.currentFee = fee;\n this.viewStatus = 'add_remission';\n }\n }\n\n getPaymentGroup() {\n this.paymentViewService.getPaymentGroupDetails(this.paymentGroupRef,\n this.paymentLibComponent.paymentMethod).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.totalAfterRemission = this.totalAfterRemission + fee.net_amount;\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true;\n }\n });\n }\n this.outStandingAmount = this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n },\n (error: any) => this.errorMessage = error\n );\n }\n\n confirmRemoveFee(fee: IFee){\n this.isRemoveBtnDisabled = false;\n this.currentFee = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n removeFee(fee: any){\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n if (this.paymentGroup.fees && this.paymentGroup.fees.length > 1){\n this.totalAfterRemission = 0;\n this.getPaymentGroup();\n this.viewStatus = 'main';\n return;\n }\n this.loadCaseTransactionPage();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n loadCaseTransactionPage() {\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n }\n cancelRemission() {\n this.viewStatus = 'main';\n }\n redirectToFeeSearchPage(event: any, page?: string) {\n event.preventDefault();\n let dcn = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n const ISBSenable = this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n if(this.viewStatus === 'feeRemovalConfirmation' || this.viewStatus === 'add_remission') {\n this.viewStatus = 'main';\n return;\n }\n let url = `/fee-search?ccdCaseNumber=${this.ccdCaseNumber}&selectedOption=${this.paymentLibComponent.SELECTED_OPTION}&paymentGroupRef=${this.paymentGroupRef}${dcn}${ISBSenable}`;\n this.router.navigateByUrl(url);\n }\n takePayment() {\n this.isConfirmationBtnDisabled = true;\n const seriveName = this.service ==='AA07' ? 'DIVORCE': this.service ==='AA08' ? 'PROBATE' : '',\n requestBody = new PaymentToPayhubRequest(this.ccdCaseNumber, this.outStandingAmount, this.service, seriveName);\n this.paymentViewService.postPaymentToPayHub(requestBody, this.paymentGroupRef).subscribe(\n response => {\n this.location.go(`payment-history?view=fee-summary`);\n this.payhubHtml = response;\n this.viewStatus = 'payhub_view';\n this.isBackButtonEnable=false;\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.router.navigateByUrl('/pci-pal-failure');\n }\n );\n }\n goToAllocatePage(outStandingAmount: number, isFeeAmountZero: Boolean) {\n if (outStandingAmount > 0 || (outStandingAmount === 0 && isFeeAmountZero)) {\n this.paymentLibComponent.paymentGroupReference = this.paymentGroupRef;\n this.paymentLibComponent.viewName = 'allocate-payments';\n } else {\n this.loadCaseTransactionPage();\n }\n }\n}\n","/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation. All rights reserved.\r\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\r\nthis file except in compliance with the License. You may obtain a copy of the\r\nLicense at http://www.apache.org/licenses/LICENSE-2.0\r\n\r\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\r\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\r\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\r\nMERCHANTABLITY OR NON-INFRINGEMENT.\r\n\r\nSee the Apache Version 2.0 License for specific language governing permissions\r\nand limitations under the License.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) if (e.indexOf(p[i]) < 0)\r\n t[p[i]] = s[p[i]];\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator], i = 0;\r\n if (m) return m.call(o);\r\n return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n","import { Component, OnInit, Input } from '@angular/core';\n\n\n\n@Component({\n selector: 'ccpay-error-banner',\n template: `<div class=\"govuk-error-summary\" aria-labelledby=\"error-summary-title\" role=\"alert\" tabindex=\"-1\" data-module=\"govuk-error-summary\">\n <h2 class=\"govuk-error-summary__title govuk-error-summary__title-custom\" id=\"error-summary-title\">\n {{errorMessage.title}}\n </h2>\n <div class=\"govuk-error-summary__body\">\n <ul class=\"govuk-list govuk-error-summary__list\">\n <li>\n {{errorMessage.body}}\n </li>\n </ul>\n </div>\n</div>`,\n styles: [`.govuk-error-summary h2{font-size:24px}.govuk-error-summary__list li{font-size:19px}`]\n})\n\nexport class ErrorBannerComponent implements OnInit {\n @Input('errorMessage') errorMessage;\n\n constructor(\n ) {}\n\n ngOnInit() {\n\n }\n}\n","\nexport class UnidentifiedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n unidentified_reason: string;\n\n constructor(payment_group_reference: string, payment_reference : string, unidentified_reason: any) {\n this.payment_allocation_status = {\n description: '',\n name: \"Unidentified\"\n };\n this.payment_group_reference = payment_group_reference ;\n this.payment_reference= payment_reference;\n this.unidentified_reason= unidentified_reason;\n\n }\n\n\n\n}\n","import { IBSPayments } from \"./IBSPayments\";\n\nexport class AllocatePaymentRequest {\n amount: Number;\n banked_date: String;\n ccd_case_number: String;\n exception_record: string;\n currency: String;\n document_control_number: String;\n external_provider: String;\n giro_slip_no: String;\n payer_name: String;\n payment_channel: Object;\n payment_status: Object;\n payment_method: String;\n requestor: String;\n site_id: String;\n\n constructor(ccd_case_number : string, unAllocatedPayment: IBSPayments, siteID: string, exceptionRecord: string) {\n this.amount = unAllocatedPayment.amount;\n this.banked_date = unAllocatedPayment.date_banked;\n this.ccd_case_number = ccd_case_number;\n this.exception_record = exceptionRecord;\n this.currency= unAllocatedPayment.currency;\n this.document_control_number = unAllocatedPayment.dcn_reference;\n this.external_provider = 'exela';\n this.giro_slip_no = unAllocatedPayment.bgc_reference;\n this.payer_name = unAllocatedPayment.payer_name;\n this.payment_channel = {\n description: '',\n name: 'bulk scan'\n };\n this.payment_status ={\n description: 'bulk scan payment completed',\n name: 'success'\n }\n this.payment_method = unAllocatedPayment.payment_method;\n this.requestor= siteID==='AA07' ? 'DIVORCE' : '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 <input #myInput id='iFrameDrivenImageValue' value='MARKUNIDENTIFIED'>\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 <input #myInput type='hidden' id='iFrameDrivenImageValue' value='MARKUNSOLICITEDCONFIRMATION'>\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 <input #myInput type='hidden' id='iFrameDrivenImageValue' value='UNIDENTIFIEDCONFIRMATIONPAGE'>\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 <input #myInput type='hidden' id='iFrameDrivenImageValue' value='MARKUNSOLICITED'>\n \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 <input class=\"govuk-input govuk-input--width-30 govuk-!-margin-right-1\" placeholder='Manchester District Probate Registry (P219)' id=\"responsibleOffice\" name=\"responsibleOffice\" type=\"text\" formControlName=\"responsibleOffice\" disabled>\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 <input #myInput type='hidden' id='iFrameDrivenImageValue' value='CONFIRMATIONPAGEUNSOLICITED'>\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\">Manchester District Probate Registry (P219)</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:700}`]\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\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, controls.responsibleOffice.value, 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.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 = controls.responsibleOffice.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: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\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\">\n <input #myInput type='hidden' id='iFrameDrivenImageValue' value='UNPROCESSEDPAYMENTS'>\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 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 }\n },\n (error: any) => this.upPaymentErrorMessage = error\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 }\n },\n (error: any) => this.upPaymentErrorMessage = error\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 }\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","\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 <input #myInput type='hidden' id='iFrameDrivenImageValue' value='ALLOCATEPAYMENTS'>\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 <input #myInput type='hidden' id='iFrameDrivenImageValue' value='CONFIRMATIONPAGEALLOCATEPAYMENTS'>\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 <input #myInput type='hidden' id='iFrameDrivenImageValue' value='ADDREMISSION'>\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 <input #myInput type='hidden' id='iFrameDrivenImageValue' value='ADDREMISSIONCONFIRMATION'>\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','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 = \"Date_Banked\";\n worksheet.J1.v = \"BGC_Batch\";\n worksheet.K1.v = \"Payment_Method\";\n worksheet.L1.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 <input #myInput type='hidden' id='iFrameDrivenImageValue' value='REPORTS'>\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:'',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 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][\"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","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 { 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 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 errorMessage = JSON.parse(err.error)[\"err\"].split('-')[1];\n }\n else if (err.error.messsage === undefined) {\n errorMessage = 'Server error';\n } else {\n errorMessage = `${err.error.message}`;\n }\n }\n return _throw(errorMessage);\n }\n\n getServerErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","import { Injectable } from '@angular/core';\n\nconst noop = (): any => undefined;\n\nexport abstract class Logger {\n\n info: any;\n warn: any;\n error: any;\n}\n\n@Injectable({\n providedIn: 'root'\n})\nexport class LoggerService implements Logger {\n\n info: any;\n warn: any;\n error: any;\n\n invokeConsoleMethod(type: string, args?: any): void {}\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\n\nimport { Observable } from 'rxjs/internal/Observable';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { IPayments } from '../../interfaces/IPayments';\nimport { catchError } from 'rxjs/operators';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PaymentListService {\n payments: IPayments;\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n\n getPaymentByCcdCaseNumber(ccdCaseNumber: string, paymentMethod: string): Observable<IPayments> {\n this.logger.info('Payment-list-service getPaymentByCcdCaseNumber for: ', ccdCaseNumber);\n\n return this.http.get<IPayments>(`${this.paymentLibService.API_ROOT}/cases/${ccdCaseNumber}/payments`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import {Component, OnInit} from '@angular/core';\n\nimport {PaymentListService} from '../../services/payment-list/payment-list.service';\nimport {IPayments} from '../../interfaces/IPayments';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport {IStatusHistory} from '../../interfaces/IStatusHistory';\n\n@Component({\n selector: 'ccpay-payment-list',\n templateUrl: './payment-list.component.html',\n styleUrls: ['./payment-list.component.css']\n})\nexport class PaymentListComponent implements OnInit {\n payments: IPayments;\n errorMessage: string;\n code: string;\n\n constructor(private paymentListService: PaymentListService,\n private paymentLibComponent: PaymentLibComponent) {\n }\n\n ngOnInit() {\n this.paymentListService.getPaymentByCcdCaseNumber(this.paymentLibComponent.CCD_CASE_NUMBER, this.paymentLibComponent.PAYMENT_METHOD)\n .subscribe(\n payments => this.payments = payments,\n (error: any) => this.errorMessage = <any>error\n );\n }\n\n loadPaymentViewComponent(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.paymentLibComponent.paymentMethod = paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n}\n","/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Meta } from '@angular/platform-browser';\nimport { Observable } from 'rxjs';\n\n@Injectable()\nexport class WebComponentHttpClient {\n constructor(\n private http: HttpClient,\n private meta: Meta\n ) { }\n\n post(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.post(url, body, opts);\n }\n\n put(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.put(url, body, opts);\n }\n\n get(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.get(url, opts);\n }\n\n delete(url: string, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.delete(url, opts);\n }\n \n patch(url: string, body: any | null, options?: any): Observable<any> {\n const opts = this.addHeaders(options || {});\n return this.http.patch(url, body, opts);\n }\n\n addHeaders(options: any): any {\n const csrfToken = this.meta.getTag('name=csrf-token');\n const headers = {};\n if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n headers['CSRF-Token'] = csrfToken.content;\n options.headers = new HttpHeaders(headers);\n options.responseType = 'text';\n return options;\n }\n}\n","import { Injectable } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { Observable } from 'rxjs/internal/Observable';\n\nimport {IPayment} from '../../interfaces/IPayment';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { catchError } from 'rxjs/operators';\nimport { LoggerService } from '../shared/logger/logger.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { PayhubAntennaRequest } from '../../interfaces/PayhubAntennaRequest';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { Meta } from '@angular/platform-browser';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { IAllocationPaymentsRequest } from '../../interfaces/IAllocationPaymentsRequest';\nimport {IOrderReferenceFee} from '../../interfaces/IOrderReferenceFee';\nimport { BehaviorSubject } from 'rxjs';\nimport { RefundsRequest } from '../../interfaces/RefundsRequest';\nimport { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\nimport { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class PaymentViewService {\n private ordersList = <BehaviorSubject<IOrderReferenceFee[]>>new BehaviorSubject([]);\n\n private meta: Meta;\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getPaymentDetails(paymentReference: string, paymentMethod: string): Observable<IPayment> {\n this.logger.info('Payment-view-service getPaymentDetails for: ', paymentReference);\n\n return this.http.get<IPayment>(paymentMethod === 'card' || paymentMethod === 'cash' || paymentMethod === 'cheque' || paymentMethod === 'postal order' ?\n `${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}` :\n `${this.paymentLibService.API_ROOT}/credit-account-payments/${paymentReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getPaymentGroupDetails(paymentGroupReference: string): Observable<IPaymentGroup> {\n this.logger.info('Payment-view-service getPaymentGroupDetails for: ', paymentGroupReference);\n\n return this.http.get<IPayment>(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getApportionPaymentDetails(paymentReference: string): Observable<IPaymentGroup> {\n this.logger.info('Payment-view-service getPaymentGroupDetails for: ', paymentReference);\n\n return this.http.get<IPayment>(`${this.paymentLibService.API_ROOT}/payment-groups/fee-pay-apportion/${paymentReference}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSPayments(body: AllocatePaymentRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/bulk-scan-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSUnidentifiedPayments(body: UnidentifiedPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSUnsolicitedPayments(body: UnsolicitedPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSAllocationPayments(body: IAllocationPaymentsRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-allocations`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postPaymentGroupWithRemissions(paymentGroupReference: string, feeId: number, body: AddRemissionRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}/fees/${feeId}/remissions`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n deleteFeeFromPaymentGroup(feeId: number): Observable<any> {\n this.logger.info('Payment-view-service deleteFeeFromPaymentGroup for: ', feeId);\n return this.https.delete(`${this.paymentLibService.API_ROOT}/fees/${feeId}`).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postPaymentToPayHub(body: PaymentToPayhubRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/card-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postPaymentAntennaToPayHub(body: PayhubAntennaRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/telephony-card-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n downloadSelectedReport(reportName: string, startDate: string, endDate:string): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/report/data?date_from=${startDate}&date_to=${endDate}&report_type=${reportName}`;\n return this.https.get(url, { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getBSfeature(): Observable<any> {\n return this.https.get('api/payment-history/bulk-scan-feature', { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getSiteID(): Observable<any> {\n return this.https.get('api/payment-history/refdata/legacy-sites', { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n getPartyDetails(caseNumber: string): Observable<any> {\n const url = `${this.paymentLibService.API_ROOT}/case-payment-orders?case-ids=${caseNumber}`;\n return this.https.get(url, { withCredentials: true }).pipe( catchError(this.errorHandlerService.handleError));\n }\n \n setOrdersList(orderLevelFees: IOrderReferenceFee[]): void {\n this.ordersList.next(Object.assign([], orderLevelFees));\n}\n getOrdersList() {\n return this.ordersList;\n }\n\n //issue refund\n postRefundsReason(body: PostRefundRetroRemission): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/refund-for-payment`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n // retro remissions\n postPaymentGroupWithRetroRemissions(paymentGroupReference: string, feeId: number, body: AddRetroRemissionRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupReference}/fees/${feeId}/retro-remission`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n postRefundRetroRemission(body:PostIssueRefundRetroRemission) {\n return this.https.post(`${this.paymentLibService.API_ROOT}/refund-retro-remisstion`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Injectable } from '@angular/core';\nimport { Observable, BehaviorSubject } from 'rxjs';\nimport {IOrderReferenceFee} from '../interfaces/IOrderReferenceFee';\nimport { IRefundList } from '../interfaces/IRefundList';\nimport { IPaymentView } from '../interfaces/IPaymentView'; \n\n@Injectable({\n providedIn: 'root'\n})\nexport class OrderslistService {\n private ordersList: BehaviorSubject<IOrderReferenceFee[]> = new BehaviorSubject<IOrderReferenceFee[]>(null);\n private refundView: BehaviorSubject<IRefundList> = new BehaviorSubject<IRefundList>(null);\n private caseType = new BehaviorSubject(\"\");\n getcaseType = this.caseType.asObservable();\n private feeExists = new BehaviorSubject<boolean>(null);\n getFeeExist = this.feeExists.asObservable();\n private ccdCaseNumber = new BehaviorSubject(\"\");\n getCCDCaseNumberforRefund = this.ccdCaseNumber.asObservable();\n private isFromServiceRequestPage = new BehaviorSubject<boolean>(null);\n getisFromServiceRequestPage = this.isFromServiceRequestPage.asObservable();\n private OrderRefId = new BehaviorSubject(\"\");\n getOrderRefId = this.OrderRefId.asObservable();\n private navigationPage = new BehaviorSubject(\"\");\n getnavigationPage = this.navigationPage.asObservable();\n\n private paymentPageView: BehaviorSubject<IPaymentView> = new BehaviorSubject<IPaymentView>(null);\n\n constructor() { }\n\n setOrdersList(orderLevelFees: IOrderReferenceFee[]): void {\n this.ordersList.next(Object.assign([], orderLevelFees));\n }\n getOrdersList() {\n return this.ordersList;\n }\n\n setRefundView(refundList: IRefundList): void {\n this.refundView.next(Object.assign([], refundList));\n }\n getRefundView() {\n return this.refundView;\n }\n\n setCaseType(caseType: string){\n this.caseType.next(caseType);\n }\n getCaseType(){\n return this.caseType;\n }\n\n setCCDCaseNumber(ccdCaseNumber: string){\n this.ccdCaseNumber.next(ccdCaseNumber);\n }\n getCCDCaseNumber(){\n return this.ccdCaseNumber;\n }\n\n setFeeExists(feeExists: boolean){\n this.feeExists.next(feeExists);\n }\n getFeeExists(){\n return this.feeExists;\n }\n\n setisFromServiceRequestPage(isFromServiceRequestPage: boolean){\n this.isFromServiceRequestPage.next(isFromServiceRequestPage);\n }\n getisFromServiceRequestPages(){\n return this.isFromServiceRequestPage;\n }\n\n setOrderRefId(OrderRefId: string){\n this.OrderRefId.next(OrderRefId);\n }\n getSelectedOrderRefId(){\n return this.OrderRefId;\n }\n\n setnavigationPage(navigationPage: string){\n this.navigationPage.next(navigationPage);\n }\n getnavigationPageValue(){\n return this.navigationPage;\n }\n\n setpaymentPageView(paymentpageList: IPaymentView): void {\n this.paymentPageView.next(Object.assign([], paymentpageList));\n }\n getpaymentPageView() {\n return this.paymentPageView;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\nimport { ChangeDetectorRef } from '@angular/core';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-payment-view',\n templateUrl: './payment-view.component.html',\n styleUrls: ['./payment-view.component.css']\n})\nexport class PaymentViewComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() isTakePayment: boolean;\n @Input() caseType: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() isOldPcipalOff: boolean;\n @Input() orderRef: boolean;\n @Input() orderStatus: boolean;\n @Input() orderTotalPayments: boolean;\n @Input() payment: IPayment;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n ccdCaseNumber: string;\n selectedOption: string;\n dcnNumber: string;\n isStatusAllocated: boolean;\n isRemissionsMatch: boolean;\n feeId: IFee;\n viewStatus: string;\n isRefundRemission: boolean = false;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = false;\n isIssueRefunfBtnEnable: boolean = false;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n\n constructor(private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) {\n }\n\n ngOnInit() {\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION;\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.viewStatus = 'paymentview';\n this.paymentViewService.getApportionPaymentDetails(this.paymentLibComponent.paymentReference).subscribe(\n paymentGroup => {\n let fees = [];\n paymentGroup.fees.forEach(fee => {\n this.isRemissionsMatch = false;\n\n paymentGroup.remissions.forEach(rem => {\n if (rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n if (!this.isRemissionsMatch) {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n console.log(this.paymentGroup.payments[0] + '1');\n },\n (error: any) => this.errorMessage = error\n );\n\n }\n\n get isCardPayment(): boolean {\n return this.paymentGroup.payments[0].method === 'card';\n }\n\n get isTelephonyPayment(): boolean {\n return this.paymentGroup.payments[0].channel === 'telephony';\n }\n\n public goToPaymentList(): void {\n this.paymentLibComponent.viewName = 'payment-list';\n }\n\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n this.OrderslistService.setnavigationPage('casetransactions');\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n }\n\n addRemission(fee: IFee) {\n this.feeId = fee;\n this.paymentViewService.getApportionPaymentDetails(this.paymentGroup.payments[0].reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n this.paymentLibComponent.isFromPaymentDetailPage = true;\n this.viewStatus = 'addremission';\n this.isRefundRemission = true;\n this.cd.detectChanges();\n },\n (error: any) => this.errorMessage = error\n );\n }\n\n issueRefund(paymentgrp: IPaymentGroup) {\n this.paymentGroup = paymentgrp;\n this.viewStatus = 'issuerefund';\n this.isRefundRemission = true;\n }\n\n getRemissionByFeeCode(feeCode: string, remissions: IRemission[]): IRemission {\n if (remissions && remissions.length > 0) {\n for (const remission of remissions) {\n if (remission.fee_code === feeCode) {\n return remission;\n // this.isAddFeeBtnEnabled = true;\n }\n }\n }\n return null;\n }\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n this.isIssueRefunfBtnEnable = true;\n }\n if (this.isIssueRefunfBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n\n chkForPBAPayment(): boolean {\n let payment = this.paymentGroup.payments[0];\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n return true;\n }\n return false;\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(this.paymentGroup.payments[0])) {\n if (this.paymentGroup.remissions && this.paymentGroup.remissions.length > 0) {\n for (const remission of this.paymentGroup.remissions) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n return true;\n }\n return true;\n\n } else {\n return false;\n }\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\n }\n}","import { Injectable } from '@angular/core';\nimport {HttpClient, HttpHeaders} from '@angular/common/http';\nimport { Meta } from '@angular/platform-browser';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {catchError} from 'rxjs/operators';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { IPatchRefundAction } from '../../interfaces/IPatchRefundAction';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { IssueRefundRequest } from '../../interfaces/IssueRefundRequest';\nimport { IRefundStatus } from '../../interfaces/IRefundStatus';\nimport { IResubmitRefundRequest } from '../../interfaces/IResubmitRefundRequest';\n@Injectable({\n providedIn: 'root'\n})\nexport class RefundsService {\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService,\n private meta: Meta\n ) { }\n\n getRefundReasons(): Observable<IRefundReasons[]> {\n return this.http.get<IRefundReasons[]>(`${this.paymentLibService.REFUNDS_API_ROOT}/reasons`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getRefundRejectReasons(): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/rejection-reasons`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n getRefundActions(refundReference: string): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/${refundReference}/actions`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\npatchRefundActions(body:IPatchRefundAction, refundReference: string, reviewerAction: string): Observable<any> {\n const opts = this.addHeaders({});\n return this.http.patch<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/${refundReference}/action/${reviewerAction}`, body, opts)\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n getRefundList(refundstatus?: string, selfexclusive?:boolean): Observable<IRefundList[]> {\n return this.http.get<IRefundList[]>(`${this.paymentLibService.REFUNDS_API_ROOT}/get-refund-list?status=${refundstatus}&selfExclusive=${selfexclusive}`, \n {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundStatusHistory(reference?: string) {\n return this.http.get<IRefundStatus[]>(`${this.paymentLibService.REFUNDS_API_ROOT}/${reference}/status-history`, \n {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\ngetRefundStatusList(ccdCaseNumber:string): Observable<IRefundList[]> {\n return this.http.get<IRefundList[]>(`${this.paymentLibService.REFUNDS_API_ROOT}/get-refund-status-list?ccdCaseNumber=${ccdCaseNumber}`, {\n withCredentials: true\n})\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n\n getUserDetails(): Observable<any> {\n return this.http.get<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/get-user-details`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n \n postIssueRefund(body: IssueRefundRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.REFUNDS_API_ROOT}/refund`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n\n patchResubmitRefund(body: IResubmitRefundRequest, refund_reference: string): Observable<any> {\n const opts = this.addHeaders({});\n return this.http.patch<any>(`${this.paymentLibService.REFUNDS_API_ROOT}/resubmit/${refund_reference}`, body,opts).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n addHeaders(options: any): any {\n const csrfToken = this.meta.getTag('name=csrf-token');\n const headers = {};\n if (options.headers) {\n options.headers.forEach(element => {\n headers[element] = options.headers.get(element);\n });\n }\n headers['X-Requested-With'] = 'XMLHttpRequest';\n headers['CSRF-Token'] = csrfToken.content;\n options.headers = new HttpHeaders(headers);\n options.responseType = 'text';\n return options;\n }\n}\n","import {Component, OnInit, Input} from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport {RefundsService} from '../../services/refunds/refunds.service';\nimport { IRefundAction } from '../../interfaces/IRefundAction';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { IRefundRejectReason } from '../../interfaces/IRefundRejectReason';\n\n@Component({\n selector: 'ccpay-process-refund',\n templateUrl: './process-refund.component.html',\n styleUrls: ['./process-refund.component.css']\n})\nexport class ProcessRefundComponent implements OnInit {\n @Input() refundReference: string;\n @Input() refundlistsource: IRefundList;\n\n processRefundForm: FormGroup;\n\n errorMessage = this.getErrorMessage(false, '', '');\n sendmeback: string = null;\n viewStatus: string;\n refundActionList: IRefundAction[] = []; \n refundRejectReasonList: IRefundRejectReason[] = []; \n isSendMeBackClicked: boolean = false;\n isRejectClicked: boolean = false;\n isOtherClicked: boolean = false;\n isSuccesspageEnable: boolean = false;\n\n refundActionsHasError: boolean = false;\n refundRejectReasonHasError: boolean = false;\n isReasonFieldEmpty: boolean = false;\n isReasonFieldInvalid: boolean = false;\n reasonFieldMinHasError: boolean = false;\n reasonFieldMaxHasError: boolean = false;\n isReasonEmpty: boolean = false;\n isReasonInvalid: boolean = false;\n successMsg: string = null;\n\n isConfirmButtondisabled: boolean = true;\n constructor(private RefundsService: RefundsService,\n private formBuilder: FormBuilder) {\n }\n\n ngOnInit() {\n this.viewStatus = 'RefundProcess';\n this.RefundsService.getRefundActions(this.refundReference).subscribe(\n refundActionList => {\n this.refundActionList = <any>refundActionList.data;\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err);\n }\n );\n this.processRefundForm = this.formBuilder.group({\n refundActionField: new FormControl('', Validators.compose([\n Validators.required\n ])),\n refundRejectReasonField: new FormControl('', Validators.compose([\n Validators.required\n ])),\n sendMeBackField: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$'),\n\n ])),\n enterReasonField: new FormControl('', Validators.compose([\n Validators.required,\n Validators.maxLength(30),\n Validators.pattern('^([a-zA-Z0-9\\\\s]*)$'),\n ])),\n });\n \n }\n checkRefundActions(code: string) {\n\n if(code === 'Return to caseworker') {\n this.isConfirmButtondisabled = true;\n this.isSendMeBackClicked = true;\n this.isRejectClicked = false;\n this.isOtherClicked = false;\n\n } else if (code === 'Approve') {\n this.isSendMeBackClicked = false;\n this.isConfirmButtondisabled = false;\n this.isRejectClicked = false;\n this.isOtherClicked = false;\n\n } else if (code === 'Reject') {\n this.isRejectClicked = true;\n this.isSendMeBackClicked = false;\n this.isOtherClicked = false;\n this.RefundsService.getRefundRejectReasons().subscribe(\n refundRejectReasonList => {\n this.refundRejectReasonList = <any>refundRejectReasonList.data;\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err);\n }\n );\n } else if (code === 'RE005') {\n this.isOtherClicked = true;\n } else if (code !== 'RE005') {\n this.isOtherClicked = false;\n }\n }\n processRefundSubmit() {\n let processRefundRequest;\n let status;\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n const controls = this.processRefundForm.controls;\n const processFormError = controls.sendMeBackField.errors;\n\n if (this.processRefundForm.dirty && controls.refundActionField.valid \n && (controls.refundActionField.value == 'Approve'\n || (controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.valid && controls.refundRejectReasonField.value != 'RE005')\n || (controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.value == 'RE005' && controls.enterReasonField.valid)\n || (controls.refundActionField.value == 'Return to caseworker' && controls.sendMeBackField.valid))) {\n if (controls.refundActionField.value === 'Approve'){\n status = 'APPROVE';\n processRefundRequest = {\n code:'',\n reason: ''\n };\n } else if (controls.refundActionField.value === 'Reject') {\n status = 'REJECT';\n\n processRefundRequest = {\n code: controls.refundRejectReasonField.value ? controls.refundRejectReasonField.value : '',\n reason: controls.refundRejectReasonField.value == 'RE005' ? controls.enterReasonField.value : ''\n };\n } else if (controls.refundActionField.value === 'Return to caseworker') {\n status = 'SENDBACK';\n\n processRefundRequest = {\n code: '',\n reason: controls.sendMeBackField.value\n };\n }\n this.RefundsService.patchRefundActions(processRefundRequest, this.refundReference, status).subscribe(\n response => {\n this.isSuccesspageEnable = true;\n this.successMsg = JSON.parse(response)['data'];\n },\n err => {\n this.errorMessage = this.getErrorMessage(true, err.statusCode, err.err);\n }\n );\n } else {\n if(controls.refundActionField.value == \"\") {\n this.resetForm([true, false, false, false, false, false, false, false], 'action');\n }\n if(controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.value == \"\") {\n this.resetForm([false, true, false, false, false, false, false, false], 'rejectReason');\n }\n if(controls.refundActionField.value == 'Return to caseworker') {\n if(controls.sendMeBackField.value == '' ) {\n this.resetForm([false, false, true, false, false, false, false, false], 'addAreason');\n }\n if(controls.sendMeBackField.value != '' && controls.sendMeBackField.invalid ) {\n this.resetForm([false, false, false, true, false, false, false, false], 'addAreason');\n }\n if(processFormError && processFormError.minlength && processFormError.minlength.actualLength < 3 ) {\n this.resetForm([false, false, false, false, true, false, false, false], 'addAreason');\n }\n if(processFormError && processFormError.maxlength && processFormError.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, false, false, true, false, false], 'addAreason');\n }\n }\n if(controls.refundActionField.value == 'Reject' && controls.refundRejectReasonField.value == 'RE005') {\n if(controls.enterReasonField.value === \"\") {\n this.resetForm([false, false, false, false, false, false, true, false], 'enterReason');\n }\n if(controls.enterReasonField.value!== \"\" && controls.enterReasonField.invalid) {\n this.resetForm([false, false, false, false, false, false, false, true], 'enterReason');\n }\n }\n }\n\n }\n getErrorMessage(isErrorExist, status, errorMsg) {\n let bodyTxt = 'Please try again later';\n if (status !== 500) {\n bodyTxt = errorMsg;\n }\n return {\n title: 'Something went wrong',\n body: bodyTxt,\n showError: isErrorExist\n };\n }\n resetForm(vals, field) {\n if(field==='action' || field==='all') {\n this.refundActionsHasError = vals[0];\n }\n if(field==='rejectReason' || field==='all') {\n this.refundRejectReasonHasError = vals[1];\n }\n if(field==='addAreason' || field==='all') {\n this.isReasonFieldEmpty = vals[2];\n this.isReasonFieldInvalid = vals[3];\n this.reasonFieldMinHasError = vals[4];\n this.reasonFieldMaxHasError = vals[5];\n }\n if(field==='enterReason' || field==='all') {\n this.isReasonEmpty = vals[6];\n this.isReasonInvalid = vals[7];\n }\n }\n}\n","import {Component, OnInit, Input} from '@angular/core';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { IRefundList } from '../../interfaces/IRefundList';\n\n@Component({\n selector: 'ccpay-refund-list',\n templateUrl: './refund-list.component.html',\n styleUrls: ['./refund-list.component.css']\n})\nexport class RefundListComponent implements OnInit {\n @Input('USERID') USERID: string;\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: any[];\n @Input('LOGGEDINUSEREMAIL') LOGGEDINUSEREMAIL:string;\n\n constructor(private refundService: RefundsService) {\n }\n\n tableApprovalHeader: string;\n tableRejectedHeader: string;\n submittedRefundList: IRefundList[] = [];\n rejectedRefundList: IRefundList[] = [];\n approvalStatus = 'sent for approval';\n rejectStatus = 'sent back';\n errorMessage = null;\n isApproveTableVisible:boolean;\n isRejectTableVisible:boolean;\n dropdownvalue: string;\n isAuthorized: boolean = true;\n userLst\n ngOnInit() {\n \n // this.refundService.getUserDetails().subsc\n // userdetail => { \n // console.log('govindu');\n // console.log(userdetail.headers);\n // console.log('govindu1');\n // console.log(userdetail.headers.get('Set-Cookie'));\n // console.log(userdetail);\n // console.log(userdetail['data']);\n // } );\n this.userLst = this.LOGGEDINUSERROLES;\n\n \n if(this.LOGGEDINUSERROLES.some(i =>i.includes('payments-refund-approver'))){\n // this.isApproveTableVisible = true;\n this.isAuthorized = true;\n } else {\n this.isApproveTableVisible = false;\n this.isAuthorized = false;\n }\n\n \n this.tableApprovalHeader = 'Refunds to be approved';\n this.tableRejectedHeader = 'Refunds returned to caseworker';\n\n // if(this.dropdownvalue !== 'caseworker-probate-authorize') {\n // this.isAuthorized = false;\n // } else {\n // this.isAuthorized = true;\n // }\n\n if(this.isAuthorized) {\n this.refundService.getRefundList(this.approvalStatus,true).subscribe(\n refundList => {\n this.submittedRefundList = refundList['data']['refund_list'];\n this.isApproveTableVisible = true;\n }\n ),\n (error: any) => {\n this.errorMessage = error;\n };\n }\n\n this.refundService.getRefundList(this.rejectStatus,false).subscribe(\n refundList => {\n this.rejectedRefundList = refundList['data']['refund_list'];\n this.isRejectTableVisible = true;\n }\n ),\n (error: any) => {\n this.errorMessage = error;\n };\n\n }\n\n // selectchange(args){ \n // this.dropdownvalue = args.target.value;\n // if(args.target.value === 'caseworker-probate-authorize') {\n // this.isApproveTableVisible = true;\n // } else {\n // this.isApproveTableVisible = false;\n // }\n // this.ngOnInit();\n \n // } \n \n}","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {Observable} from 'rxjs/internal/Observable';\n\nimport {ICardDetails} from '../../interfaces/ICardDetails';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport { catchError } from 'rxjs/operators';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class CardDetailsService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getCardDetails(paymentReference: string): Observable<ICardDetails> {\n this.logger.info('Card-detail-service getCardDetails for: ', paymentReference);\n\n return this.http.get<ICardDetails>(`${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}/details`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit } from '@angular/core';\nimport { CardDetailsService } from '../../services/card-details/card-details.service';\nimport {ICardDetails} from '../../interfaces/ICardDetails';\nimport { PaymentLibComponent } from '../../payment-lib.component';\n\n@Component({\n selector: 'ccpay-card-details',\n templateUrl: './card-details.component.html',\n styleUrls: ['./card-details.component.css']\n})\nexport class CardDetailsComponent implements OnInit {\n pageTitle: string = 'Card details';\n cardDetails: ICardDetails;\n paymentReference: string;\n errorMessage: string;\n\n constructor(private cardDetailsService: CardDetailsService,\n private paymentLibComponent: PaymentLibComponent) { }\n\n ngOnInit() {\n this.cardDetailsService.getCardDetails(this.paymentLibComponent.paymentReference).subscribe(\n cardDetails => this.cardDetails = cardDetails,\n (error: any) => this.errorMessage = <any>error\n );\n }\n\n get getPaymentReference(): string {\n return this.paymentReference;\n }\n\n}\n","import { Component } from '@angular/core';\n\n@Component({\n template: `\n <h1>This is not the page you were looking for!</h1>\n `\n})\nexport class PageNotFoundComponent { }\n","import { Injectable } from '@angular/core';\nimport { PaymentLibService } from '../../payment-lib.service';\nimport { HttpClient } from '@angular/common/http';\nimport { IStatusHistories } from '../../interfaces/IStatusHistories';\nimport { Observable } from 'rxjs/internal/Observable';\nimport { ErrorHandlerService } from '../shared/error-handler.service';\nimport { catchError } from 'rxjs/operators';\nimport { LoggerService } from '../shared/logger/logger.service';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class StatusHistoryService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService) { }\n\n getPaymentStatusesByReference(paymentReference: string, paymentMethod: string): Observable<IStatusHistories> {\n this.logger.info('Status-history-service getPaymentStatusesByReference for: ', paymentReference);\n\n return this.http.get<IStatusHistories>(paymentMethod === 'card' || paymentMethod === 'cash' || paymentMethod === 'cheque' || paymentMethod === 'postal order' ?\n `${this.paymentLibService.API_ROOT}/card-payments/${paymentReference}/statuses` :\n `${this.paymentLibService.API_ROOT}/credit-account-payments/${paymentReference}/statuses`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { IStatusHistories } from '../../interfaces/IStatusHistories';\nimport { StatusHistoryService } from '../../services/status-history/status-history.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\n\n@Component({\n selector: 'ccpay-payment-statuses',\n templateUrl: './status-history.component.html',\n styleUrls: ['./status-history.component.css']\n})\nexport class StatusHistoryComponent implements OnInit {\n @Input() isTakePayment: boolean;\n pageTitle: string = 'Payment status history';\n statuses: IStatusHistories;\n errorMessage: string;\n\n constructor(private statusHistoryService: StatusHistoryService,\n private paymentLibComponent: PaymentLibComponent) { }\n\n ngOnInit() {\n this.statusHistoryService.getPaymentStatusesByReference(this.paymentLibComponent.paymentReference, this.paymentLibComponent.paymentMethod).subscribe(\n statuses => this.statuses = statuses,\n (error: any) => this.errorMessage = <any>error\n );\n }\n\n}\n","import { Component, Input, OnInit } from '@angular/core';\nimport { IPayment } from '../../interfaces/IPayment';\n\n@Component({\n selector: 'ccpay-pba-details',\n templateUrl: './pba-details.component.html',\n styleUrls: ['./pba-details.component.css']\n})\nexport class PbaDetailsComponent implements OnInit {\n @Input() payment: IPayment;\n\n constructor() { }\n\n ngOnInit() {\n }\n\n}\n","import { Injectable } from '@angular/core';\nimport { Logger } from './logger.service';\n\nexport let isDebugMode = false;\n\nconst noop = (): any => undefined;\n\n@Injectable({\n providedIn: 'root'\n})\nexport class ConsoleLoggerService implements Logger {\n\n get info() {\n if (isDebugMode) {\n return console.info.bind(console);\n } else {\n return noop;\n }\n }\n\n get warn() {\n if (isDebugMode) {\n return console.warn.bind(console);\n } else {\n return noop;\n }\n }\n\n get error() {\n if (isDebugMode) {\n return console.error.bind(console);\n } else {\n return noop;\n }\n }\n\n invokeConsoleMethod(type: string, args?: any): void {\n const logFn: Function = (console)[type] || console.log || noop;\n logFn.apply(console, [args]);\n }\n}\n","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {LoggerService} from '../shared/logger/logger.service';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport {catchError} from 'rxjs/operators';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class CaseTransactionsService {\n\n constructor(private http: HttpClient,\n private logger: LoggerService,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService\n ) { }\n\n getPaymentGroups(ccdCaseNumber: string): Observable<IPaymentGroup[]> {\n this.logger.info('Case-transactions-service getPaymentGroups for: ', ccdCaseNumber);\n\n return this.http.get<IPaymentGroup[]>(`${this.paymentLibService.API_ROOT}/cases/${ccdCaseNumber}/paymentgroups`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n}\n","import { Injectable } from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {ErrorHandlerService} from '../shared/error-handler.service';\nimport { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';\nimport {PaymentLibService} from '../../payment-lib.service';\nimport {Observable} from 'rxjs/Observable';\nimport {catchError} from 'rxjs/operators';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class BulkScaningPaymentService {\n\n constructor(private http: HttpClient,\n private https: WebComponentHttpClient,\n private errorHandlerService: ErrorHandlerService,\n private paymentLibService: PaymentLibService\n ) { }\n\n getBSPaymentsByCCD(ccdCaseNumber: string): Observable<IBSPayments> {\n return this.http.get<IBSPayments>(`${this.paymentLibService.BULKSCAN_API_ROOT}/cases/${ccdCaseNumber}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n getBSPaymentsByDCN(dcn: string): Observable<IBSPayments> {\n return this.http.get<IBSPayments>(`${this.paymentLibService.BULKSCAN_API_ROOT}/cases?document_control_number=${dcn}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSAllocatePayment(body: AllocatePaymentRequest, paymentRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentRef}/bulk-scan-payments`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSPaymentStrategic(body: AllocatePaymentRequest, paymentGroupRef: string): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/${paymentGroupRef}/bulk-scan-payments-strategic`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n postBSWoPGStrategic(body: AllocatePaymentRequest): Observable<any> {\n return this.https.post(`${this.paymentLibService.API_ROOT}/payment-groups/bulk-scan-payments-strategic`, body).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n patchBSChangeStatus(dcnNumber: string, status: string): Observable<any> {\n return this.https.patch(`${this.paymentLibService.API_ROOT}/bulk-scan-payments/${dcnNumber}/status/${status}`, status).pipe(\n catchError(this.errorHandlerService.handleError)\n );\n }\n calculateOutStandingAmount(paymentGroup: IPaymentGroup): number {\n let feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00;\n\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n });\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n } \n return (feesTotal - remissionsTotal) - paymentsTotal;\n }\n\n removeUnwantedString(input: string, replaceText: string) {\n const pattern = /[\\_]/gi;\n return input.replace(pattern, replaceText);\n }\n\n downloadSelectedReport(reportName: string, startDate: string, endDate:string): Observable<any> {\n return this.https.get(`${this.paymentLibService.BULKSCAN_API_ROOT}/report/data?date_from=${startDate}&date_to=${endDate}&report_type=${reportName}`, {\n withCredentials: true\n })\n .pipe(\n catchError(this.errorHandlerService.handleError)\n );\n}\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { CaseTransactionsService } from '../../services/case-transactions/case-transactions.service';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IFee } from '../../interfaces/IFee';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IPaymentView } from '../../interfaces/IPaymentView';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { Router } from '@angular/router';\nimport * as ls from \"local-storage\";\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-case-transactions',\n templateUrl: './case-transactions.component.html',\n styleUrls: ['./case-transactions.component.css']\n})\nexport class CaseTransactionsComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[];\n takePayment: boolean;\n servicerequest: string;\n ccdCaseNumber: string;\n excReference: string;\n paymentGroups: any[] = [];\n payments: IPayment[] = [];\n nonPayments: IPayment[] = [];\n allPayments: IPayment[] = [];\n remissions: IRemission[] = [];\n fees: IFee[] = [];\n errorMessage: string;\n totalFees: number;\n totalPayments: number;\n totalNonOffPayments: number;\n totalRemissions: number;\n selectedOption: string;\n dcnNumber: string;\n paymentRef: string;\n isTurnOff: boolean;\n isNewPcipalOff: boolean;\n isRefundRemission: boolean = true;\n isOldPcipalOff: boolean;\n isStrategicFixEnable: boolean;\n isAddFeeBtnEnabled: boolean = true;\n isExceptionRecord: boolean = false;\n isUnprocessedRecordSelected: boolean = false;\n exceptionRecordReference: string;\n isAnyFeeGroupAvilable: boolean = true;\n isHistoricGroupAvailable: boolean = false;\n isBulkScanEnable;\n isRemissionsMatch: boolean;\n viewStatus = 'main';\n isRemoveBtnDisabled: boolean = false;\n feeId: IFee;\n clAmountDue: number = 0;\n unprocessedRecordCount: number;\n isFeeRecordsExist: boolean = false;\n isGrpOutstandingAmtPositive: boolean = false;\n totalRefundAmount: Number;\n caseType: String;\n lsCcdNumber: any = ls.get<any>('ccdNumber');\n payment: IPayment;\n paymentGroup: IPaymentGroup;\n paymentView: IPaymentView;\n\n //Order changes\n orderDetail: any[] = [];\n\n isAddRemissionEnable: boolean = false;\n orderRemissionDetails: any[] = [];\n orderLevelFees: IOrderReferenceFee[] = [];\n cpoDetails: any = null;\n orderRef: string;\n orderStatus: string;\n orderParty: string;\n orderCreated: Date;\n orderCCDEvent: string;\n 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.OrderslistService.getpaymentPageView().subscribe((data) => this.paymentView = data);\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n if (this.paymentView !== null && this.paymentView.payment_group_reference !== undefined && this.navigationpage === 'paymentdetailspage') {\n this.goToPayementView(this.paymentView.payment_group_reference, this.paymentView.reference, this.paymentView.method);\n }\n this.isGrpOutstandingAmtPositive = false;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.caseType = this.paymentLibComponent.CASETYPE;\n if (this.paymentLibComponent.CCD_CASE_NUMBER === '') {\n this.ccdCaseNumber = this.paymentLibComponent.EXC_REFERENCE;\n }\n this.excReference = this.paymentLibComponent.EXC_REFERENCE;\n this.takePayment = this.paymentLibComponent.TAKEPAYMENT;\n this.servicerequest = this.paymentLibComponent.SERVICEREQUEST;\n if (this.paymentLibComponent.SERVICEREQUEST === 'true') {\n this.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.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts();\n this.calculateOrderFeesAmounts();\n this.calculateRefundAmount();\n if (this.isFromServiceRequestPage) {\n this.OrderslistService.getSelectedOrderRefId().subscribe((data) => this.orderRef = data);\n this.goToOrderViewDetailSection(this.orderRef);\n // this.viewStatus = 'order-full-view';\n }\n\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).data.content[0];\n\n },\n (error: any) => {\n this.errorMessage = <any>error;\n this.isCPODown = true;\n }\n );\n\n },\n (error: any) => {\n this.errorMessage = <any>error;\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n } else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.paymentGroups = paymentGroups['payment_groups'];\n this.calculateAmounts();\n this.calculateOrderFeesAmounts();\n this.totalRefundAmount = this.calculateRefundAmount();\n this.paymentViewService.getPartyDetails(this.ccdCaseNumber).subscribe(\n response => {\n this.cpoDetails = JSON.parse(response).data.content[0];\n\n },\n (error: any) => {\n this.errorMessage = <any>error;\n this.setDefaults();\n this.isCPODown = true;\n }\n );\n\n },\n (error: any) => {\n this.errorMessage = <any>error;\n this.isAnyFeeGroupAvilable = false;\n this.setDefaults();\n }\n );\n }\n this.checkForExceptionRecord();\n this.OrderslistService.getisFromServiceRequestPages().subscribe((data) => this.isFromServiceRequestPage = data)\n\n }\n\n setDefaults(): void {\n this.totalPayments = 0.00;\n this.totalRemissions = 0.00;\n this.totalNonOffPayments = 0.00;\n this.totalFees = 0.00;\n }\n\n getAllocationStatus(payments: any) {\n\n let paymentAllocation = payments.payment_allocation,\n isAllocationStatusExist = paymentAllocation.length > 0;\n return isAllocationStatusExist ? paymentAllocation[0].allocation_status : '-';\n //return \"-\";\n\n }\n\n checkForExceptionRecord(): void {\n if (this.paymentGroups.length === 0 && (this.selectedOption.toLocaleLowerCase() === 'ccdorexception' || this.selectedOption.toLocaleLowerCase() === 'rc')) {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n recordData => {\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length > 0 && recordData['data'].ccd_reference > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length > 0 && recordData['data'].ccd_reference === undefined) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n }\n\n if (recordData['data'] && recordData['data'].exception_record_reference && recordData['data'].exception_record_reference.length === undefined && recordData['data'].ccd_reference > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n });\n }\n\n if (this.paymentGroups.length === 0 && this.selectedOption.toLocaleLowerCase() === 'dcn') {\n if (this.paymentLibComponent.CCD_CASE_NUMBER.length > 0 && this.paymentLibComponent.EXC_REFERENCE.length > 0) {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n } else if (this.paymentLibComponent.CCD_CASE_NUMBER.length === 0 && this.paymentLibComponent.EXC_REFERENCE.length > 0) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n } else {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n }\n if (this.paymentGroups.length > 0)\n this.paymentGroups.forEach(paymentGroup => {\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.case_reference !== undefined && payment.ccd_case_number === undefined) {\n this.isExceptionRecord = true;\n this.isAddFeeBtnEnabled = false;\n } else {\n this.isExceptionRecord = false;\n this.isAddFeeBtnEnabled = true;\n }\n\n });\n }\n });\n }\n\n calculateOrderFeesAmounts(): void {\n let feesTotal = 0.00;\n this.paymentGroups.forEach(paymentGroup => {\n this.resetOrderVariables();\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.orderFeesTotal = this.orderFeesTotal + fee.calculated_amount\n }\n )\n }\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n this.orderRemissionTotal = this.orderRemissionTotal + remission.hwf_amount;\n });\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n this.orderTotalPayments = this.orderTotalPayments + payment.amount;\n }\n });\n }\n\n this.orderPendingPayments = (this.orderFeesTotal - this.orderRemissionTotal) - this.orderTotalPayments;\n if (this.orderPendingPayments <= 0.00) {\n this.orderStatus = 'Paid';\n this.orderAddBtnEnable = false;\n } else if (this.orderFeesTotal > 0 && (this.orderTotalPayments > 0 || this.orderRemissionTotal > 0) && (this.orderTotalPayments < this.orderPendingPayments)) {\n this.orderStatus = 'Partially paid'\n this.orderAddBtnEnable = true;\n } else {\n this.orderStatus = 'Not paid'\n this.orderAddBtnEnable = true;\n }\n\n //this.orderLevelFees.push({orderRefId:paymentGroup['payment_group_reference'],orderTotalFees: this.orderFeesTotal,orderStatus: this.orderStatus,orderParty:'Santosh', orderCCDEvent:'Case Creation',orderCreated: new Date(), orderAddBtnEnable: this.orderAddBtnEnable}); this.cpoDetails['createdTimestamp']\n if (this.cpoDetails !== null) {\n this.orderLevelFees.push({ orderRefId: paymentGroup['payment_group_reference'], orderTotalFees: this.orderFeesTotal, orderStatus: this.orderStatus, orderParty: this.cpoDetails['responsibleParty'], orderCCDEvent: this.cpoDetails['action'], orderCreated: paymentGroup['date_created'], orderAddBtnEnable: this.orderAddBtnEnable });\n\n } else {\n this.orderLevelFees.push({ orderRefId: paymentGroup['payment_group_reference'], orderTotalFees: this.orderFeesTotal, orderStatus: this.orderStatus, orderParty: '', orderCCDEvent: '', orderCreated: paymentGroup['date_created'], orderAddBtnEnable: this.orderAddBtnEnable });\n }\n\n if (this.orderStatus !== 'Paid') {\n this.OrderslistService.setOrdersList(this.orderLevelFees);\n }\n });\n };\n\n resetOrderVariables(): void {\n this.orderFeesTotal = 0.00;\n this.orderTotalPayments = 0.00;\n this.orderRemissionTotal = 0.00;\n this.orderPendingPayments = 0.00;\n this.isAddFeeBtnEnabled = true;\n\n };\n\n goToOrderViewDetailSection(orderReferenceObj: any) {\n if (this.isFromServiceRequestPage) {\n this.OrderslistService.setOrderRefId(orderReferenceObj);\n this.orderRef = orderReferenceObj;\n } else {\n this.OrderslistService.setOrderRefId(orderReferenceObj.orderRefId);\n this.orderRef = orderReferenceObj.orderRefId;\n }\n\n this.orderFeesTotal = 0.00;\n this.orderRemissionTotal = 0.00;\n this.orderTotalPayments = 0.00;\n this.orderPendingPayments = 0.00;\n\n this.orderDetail = this.paymentGroups.filter(x => x.payment_group_reference === this.orderRef);\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.fees) {\n orderDetail.fees.forEach(fee => {\n this.orderFeesTotal = this.orderFeesTotal + fee.calculated_amount;\n });\n }\n if (orderDetail.remissions) {\n orderDetail.remissions.forEach(remission => {\n this.orderRemissionTotal = this.orderRemissionTotal + remission.hwf_amount;\n });\n if (orderDetail.payments) {\n this.payment = orderDetail.payments[0];\n orderDetail.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n this.orderTotalPayments = this.orderTotalPayments + payment.amount;\n }\n });\n }\n }\n });\n this.orderPendingPayments = (this.orderFeesTotal - this.orderRemissionTotal) - this.orderTotalPayments;\n // this.orderRef = orderReferenceObj.orderRefId;\n if (this.orderPendingPayments <= 0.00) {\n this.orderStatus = 'Paid';\n } else if (this.orderFeesTotal > 0 && (this.orderTotalPayments > 0 || this.orderRemissionTotal > 0) && (this.orderTotalPayments < this.orderPendingPayments)) {\n this.orderStatus = 'Partially paid'\n } else {\n this.orderStatus = 'Not paid'\n }\n\n if (this.cpoDetails !== null) {\n this.orderParty = this.cpoDetails['responsibleParty'];\n this.orderCreated = this.cpoDetails['createdTimestamp'];\n this.orderCCDEvent = this.cpoDetails['action'];\n } else {\n this.orderParty = '';\n this.orderCCDEvent = '';\n this.orderCreated = orderReferenceObj.orderCreated;\n }\n this.viewStatus = 'order-full-view';\n }\n\n redirectToOrderFeeSearchPage(event: any, orderef: any) {\n event.preventDefault();\n // if(!this.isAnyFeeGroupAvilable || this.isTurnOff) {\n // let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n // url += this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n // url += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n // url +=`&caseType=${this.caseType}`\n // url += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n // url += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n\n // this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}${url}`);\n // } else {\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = orderef;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n //}\n }\n\n goToCaseTransationPage(event: any) {\n event.preventDefault();\n this.isFromServiceRequestPage = false;\n this.viewStatus = 'main'\n this.paymentLibComponent.viewName = 'case-transactions';\n\n // this.paymentViewService.getBSfeature().subscribe(\n // features => {\n // let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n // this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n // },\n // err => {\n // this.paymentLibComponent.ISBSENABLE = false;\n // }\n // );\n }\n\n\n calculateAmounts(): void {\n let feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00,\n nonOffLinePayment = 0.00;\n\n this.paymentGroups.forEach(paymentGroup => {\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n if (fee.date_created) {\n let a = fee.amount_due === undefined;\n let b = fee.amount_due <= 0;\n this.clAmountDue = a ? this.clAmountDue + fee.net_amount : b ? this.clAmountDue + 0 : this.clAmountDue + fee.amount_due;\n }\n fee['payment_group_reference'] = paymentGroup['payment_group_reference'];\n this.fees.push(fee);\n } else {\n feesTotal = feesTotal + fee.calculated_amount;\n this.fees.push(fee);\n }\n\n });\n }\n if (this.isTurnOff) {\n this.totalFees = feesTotal;\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n let allocationLen = payment.payment_allocation;\n\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n if (allocationLen.length === 0 || allocationLen.length > 0 && allocationLen[0].allocation_status === 'Allocated') {\n nonOffLinePayment = nonOffLinePayment + payment.amount;\n }\n if (allocationLen.length > 0) {\n this.nonPayments.push(payment);\n }\n }\n if (allocationLen.length === 0) {\n this.payments.push(payment);\n }\n payment.paymentGroupReference = paymentGroup.payment_group_reference\n this.allPayments.push(payment);\n } else {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n this.payments.push(payment);\n }\n payment.paymentGroupReference = paymentGroup.payment_group_reference\n this.allPayments.push(payment);\n }\n });\n }\n this.totalPayments = paymentsTotal;\n // new feature Apportionment toggle changes\n if (!this.isTurnOff) {\n this.totalNonOffPayments = nonOffLinePayment;\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remisison => {\n remissionsTotal = remissionsTotal + remisison.hwf_amount;\n this.remissions.push(remisison);\n });\n }\n this.totalRemissions = remissionsTotal;\n });\n\n }\n\n calculateRefundAmount() {\n if (!this.isTurnOff) {\n let isNewPaymentGroup = false;\n\n this.paymentGroups.forEach((paymentGroup, index) => {\n let grpOutstandingAmount = 0.00,\n feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00,\n fees = [];\n\n if (paymentGroup.fees) {\n // this.isFeeRecordsExist = true;\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n\n this.isRemissionsMatch = false;\n paymentGroup.remissions.forEach(rem => {\n if (rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n // if(!fees.find(k => k.code=fee.code))\n // {\n fees.push(fee);\n //}\n }\n });\n\n if (!this.isRemissionsMatch) {\n fees.push(fee);\n }\n\n if (fee.date_created) {\n isNewPaymentGroup = true;\n } else {\n this.isHistoricGroupAvailable = true;\n this.paymentGroups[index]['old'] = true;\n }\n });\n this.paymentGroups[index].fees = fees;\n }\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n }\n grpOutstandingAmount = (feesTotal - remissionsTotal) - paymentsTotal;\n if (grpOutstandingAmount > 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = true;\n this.isFeeRecordsExist = true;\n this.paymentRef = paymentGroup.payment_group_reference;\n }\n if (paymentGroup.fees && paymentGroup.fees.length > 0 && grpOutstandingAmount <= 0 && isNewPaymentGroup) {\n this.isAnyFeeGroupAvilable = false;\n }\n });\n if ((!isNewPaymentGroup && this.isHistoricGroupAvailable) || (!isNewPaymentGroup && !this.isHistoricGroupAvailable)) {\n this.isAnyFeeGroupAvilable = false;\n }\n } else {\n let totalRefundAmount = 0,\n isFeeAmountZero = false;\n this.paymentGroups.forEach(paymentGroup => {\n let grpOutstandingAmount = 0.00,\n feesTotal = 0.00,\n paymentsTotal = 0.00,\n remissionsTotal = 0.00;\n if (paymentGroup.fees) {\n this.isFeeRecordsExist = true;\n paymentGroup.fees.forEach(fee => {\n feesTotal = feesTotal + fee.calculated_amount;\n if (fee.calculated_amount === 0) {\n isFeeAmountZero = true\n }\n });\n\n }\n\n if (paymentGroup.payments) {\n paymentGroup.payments.forEach(payment => {\n if (payment.status.toUpperCase() === 'SUCCESS') {\n paymentsTotal = paymentsTotal + payment.amount;\n }\n });\n }\n\n if (paymentGroup.remissions) {\n paymentGroup.remissions.forEach(remission => {\n remissionsTotal = remissionsTotal + remission.hwf_amount;\n });\n }\n grpOutstandingAmount = (feesTotal - remissionsTotal) - paymentsTotal;\n if (grpOutstandingAmount < 0) {\n if (totalRefundAmount === 0) {\n totalRefundAmount = grpOutstandingAmount;\n } else {\n totalRefundAmount = (totalRefundAmount + grpOutstandingAmount);\n }\n }\n else if (grpOutstandingAmount > 0 || (grpOutstandingAmount === 0 && isFeeAmountZero)) {\n this.isGrpOutstandingAmtPositive = true;\n }\n });\n return totalRefundAmount * -1;\n }\n }\n\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);;\n }\n\n redirectToFeeSearchPage(event: any) {\n event.preventDefault();\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n url += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n url += `&caseType=${this.caseType}`\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}${url}`);\n }\n\n addRemission(fee: IFee) {\n this.feeId = fee;\n this.viewStatus = 'addremission';\n this.paymentViewService.getApportionPaymentDetails(this.payment.reference).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n\n this.paymentGroup.payments = this.paymentGroup.payments.filter\n (paymentGroupObj => paymentGroupObj['reference'].includes(this.paymentLibComponent.paymentReference));\n this.payment = this.paymentGroup.payments[0];\n // const paymentAllocation = this.paymentGroup.payments[0].payment_allocation;\n // this.isStatusAllocated = paymentAllocation.length > 0 && paymentAllocation[0].allocation_status === 'Allocated' || paymentAllocation.length === 0;\n },\n (error: any) => this.errorMessage = error\n );\n }\n\n addRefundForRemission(payment: IPayment, remission: IRemission[],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 // let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n // url += this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n // url += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n // url += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n // url += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n // url +=`&caseType=${this.caseType}`\n // this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}${url}`);\n }\n\n redirectToReportsPage(event: any) {\n event.preventDefault();\n this.router.navigateByUrl(`/reports?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}`);\n }\n\n loadFeeSummaryPage(paymentGroup: IPaymentGroup) {\n this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.payment_group_reference;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n }\n\n goToPaymentViewComponent(paymentGroup: any) {\n this.paymentLibComponent.paymentMethod = paymentGroup.paymentMethod;\n this.paymentLibComponent.paymentGroupReference = paymentGroup.paymentGroupReference;\n this.paymentLibComponent.paymentReference = paymentGroup.paymentReference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n\n goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent({ paymentGroupReference, paymentReference, paymentMethod });\n }\n\n selectedUnprocessedFeeEvent(unprocessedRecordId: string) {\n if (unprocessedRecordId) {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = false;\n }\n this.isUnprocessedRecordSelected = true;\n } else {\n if (this.isTurnOff) {\n this.isAddFeeBtnEnabled = true;\n }\n this.isUnprocessedRecordSelected = false;\n }\n }\n\n getUnprocessedFeeCount(unProcessedRecordCount: number) {\n this.unprocessedRecordCount = unProcessedRecordCount;\n }\n\n calculateAmountDue(fee: IFee) {\n\n if (fee.date_created) {\n return fee.amount_due !== undefined ? fee.amount_due : fee.net_amount;\n } else {\n return \"0.00\";\n }\n }\n\n confirmRemoveFee(fee: IFee) {\n this.isRemoveBtnDisabled = false;\n this.feeId = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n cancelRemoval() {\n this.viewStatus = 'main';\n }\n\n removeFee(fee: any) {\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n window.location.reload();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n\n issueRefund(payment: IPayment) {\n this.viewStatus = 'issuerefund';\n this.payment = payment;\n this.isRefundRemission = true;\n }\n\n chkForAddRemission(feeCode: string): boolean {\n if (this.chkForPBAPayment() && this.check4AllowedRoles2AccessRefund()) {\n if (this.orderDetail[0]['remissions'].length > 0) {\n for (const remission of this.orderDetail[0]['remissions']) {\n if (remission.fee_code === feeCode) {\n return false;\n }\n }\n }\n return true;\n } else {\n return false;\n }\n }\n\n chkForPBAPayment(): boolean {\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isPBA = true;\n }\n });\n }\n });\n if (this.isPBA) {\n return true;\n } else {\n return false;\n };\n }\n\n chkIssueRefundBtnEnable(payment: IPayment): boolean {\n if (this.check4AllowedRoles2AccessRefund() && this.allowFurtherAccessAfter4Days(payment) &&\n payment.method === 'payment by account' && payment.status.toLocaleLowerCase() === 'success') {\n this.isIssueRefunfBtnEnable = true;\n }\n if (this.isIssueRefunfBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n\n chkIsRefundRemissionBtnEnable(): boolean {\n this.orderDetail.forEach(orderDetail => {\n if (orderDetail.payments) {\n orderDetail.payments.forEach(payment => {\n if (payment.method.toLocaleLowerCase() === 'payment by account' && payment.status.toLocaleLowerCase() === 'success' && this.allowFurtherAccessAfter4Days(payment)) {\n this.isRefundRemissionBtnEnable = true;\n }\n });\n }\n });\n if (this.isRefundRemissionBtnEnable) {\n return true;\n } else {\n return false;\n };\n }\n\n check4AllowedRoles2AccessRefund = (): boolean => {\n return this.allowedRolesToAccessRefund.some(role =>\n this.LOGGEDINUSERROLES.indexOf(role) !== -1\n );\n }\n\n allowFurtherAccessAfter4Days = (payment: IPayment): boolean => {\n let tmp4DayAgo = new Date();\n tmp4DayAgo.setDate(tmp4DayAgo.getDate() - 4);\n return tmp4DayAgo >= new Date(payment.date_created);\n }\n}\n\n","export class PaymentToPayhubRequest {\n currency = 'GBP';\n description = 'PayBubble payment';\n channel = 'telephony';\n provider = 'pci pal';\n case_type: string;\n\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.case_type= caseType;\n }\n}\n","export class PayhubAntennaRequest {\n currency = 'GBP';\n case_type: string;\n ccd_case_number: string;\n amount: number;\n\n constructor(ccd_case_number: string, amount: number, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.amount = <any>amount.toFixed(2);\n this.case_type= caseType;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { IPaymentGroup } from '../../interfaces/IPaymentGroup';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { IFee } from '../../interfaces/IFee';\nimport { PaymentToPayhubRequest } from '../../interfaces/PaymentToPayhubRequest';\nimport { PayhubAntennaRequest } from '../../interfaces/PayhubAntennaRequest';\nimport { SafeHtml } from '@angular/platform-browser';\nimport {Router} from '@angular/router';\nimport {Location} from '@angular/common';\nimport { OrderslistService } from '../../services/orderslist.service';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-fee-summary',\n templateUrl: './fee-summary.component.html',\n styleUrls: ['./fee-summary.component.scss']\n})\n\nexport class FeeSummaryComponent implements OnInit {\n @Input() paymentGroupRef: string;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: string;\n @Input() caseType: string;\n @Input() isOldPcipalOff: string;\n @Input() isNewPcipalOff: string;\n\n\n bsPaymentDcnNumber: string;\n paymentGroup: IPaymentGroup;\n errorMessage: string;\n viewStatus = 'main';\n currentFee: IFee;\n totalFee: number;\n payhubHtml: SafeHtml;\n service: string = \"\";\n platForm: string = \"\";\n upPaymentErrorMessage: string;\n selectedOption:string;\n isBackButtonEnable: boolean = true;\n outStandingAmount: number;\n isFeeAmountZero: boolean = false;;\n totalAfterRemission: number = 0;\n isConfirmationBtnDisabled: boolean = false;\n isRemoveBtnDisabled: boolean = false;\n isPaymentExist: boolean = false;\n isRemissionsExist: Boolean = false;\n isRemissionsMatch = false;\n isStrategicFixEnable: boolean;\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private location: Location,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private OrderslistService: OrderslistService\n ) {}\n\n ngOnInit() {\n this.viewStatus = 'main';\n this.caseType = this.paymentLibComponent.CASETYPE;\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.setCaseType(this.paymentLibComponent.CASETYPE);\n if ((!this.isOldPcipalOff && this.isNewPcipalOff)) {\n this.platForm = '8x8';\n } else if ((this.isOldPcipalOff && !this.isNewPcipalOff)) {\n this.platForm = 'Antenna';\n } else if ((this.isOldPcipalOff && this.isNewPcipalOff)){\n this.platForm = '8x8';\n }\n\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n if (this.bsPaymentDcnNumber) {\n this.getUnassignedPaymentlist();\n }\n this.getPaymentGroup();\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.paymentLibComponent.DCN_NUMBER).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error';\n }\n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n if(unassignedPayments['data'].payments) {\n this.service = unassignedPayments['data'].responsible_service_id;\n } else {\n this.upPaymentErrorMessage = 'error'; \n } \n },\n (error: any) => this.upPaymentErrorMessage = error\n );\n }\n\n }\n\n getRemissionByFeeCode(feeCode: string): IRemission {\n if (this.paymentGroup && this.paymentGroup.remissions && this.paymentGroup.remissions.length > 0) {\n for (const remission of this.paymentGroup.remissions) {\n if (remission.fee_code === feeCode) {\n return remission;\n }\n }\n }\n return null;\n }\n\n addRemission(fee: IFee) {\n this.currentFee = fee;\n this.viewStatus = 'add_remission';\n }\n\n getPaymentGroup() {\n let fees = [];\n this.paymentViewService.getPaymentGroupDetails(this.paymentGroupRef).subscribe(\n paymentGroup => {\n this.paymentGroup = paymentGroup;\n this.isPaymentExist = paymentGroup.payments ? paymentGroup.payments.length > 0 : false;\n this.isRemissionsExist = paymentGroup.remissions ? paymentGroup.remissions.length > 0 : false;\n\n if (paymentGroup.fees) {\n paymentGroup.fees.forEach(fee => {\n this.totalAfterRemission = this.totalAfterRemission + fee.net_amount;\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true;\n }\n this.isRemissionsMatch = false;\n paymentGroup.remissions.forEach(rem => {\n if(rem.fee_code === fee.code) {\n this.isRemissionsMatch = true;\n fee['remissions'] = rem;\n fees.push(fee);\n }\n });\n \n if(!this.isRemissionsMatch) {\n fees.push(fee);\n }\n });\n paymentGroup.fees = fees;\n }\n\n this.outStandingAmount = this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n },\n (error: any) => this.errorMessage = error\n );\n }\n\n confirmRemoveFee(fee: IFee){\n this.isRemoveBtnDisabled = false;\n this.currentFee = fee;\n this.viewStatus = 'feeRemovalConfirmation';\n }\n\n removeFee(fee: any){\n this.isRemoveBtnDisabled = true;\n this.paymentViewService.deleteFeeFromPaymentGroup(fee).subscribe(\n (success: any) => {\n if (this.paymentGroup.fees && this.paymentGroup.fees.length > 1){\n this.totalAfterRemission = 0;\n this.getPaymentGroup();\n this.viewStatus = 'main';\n return;\n }\n this.loadCaseTransactionPage();\n },\n (error: any) => {\n this.errorMessage = error;\n this.isRemoveBtnDisabled = false;\n }\n );\n }\n\n loadCaseTransactionPage() {\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n\n let partUrl = `selectedOption=${this.paymentLibComponent.SELECTED_OPTION}`;\n partUrl +=this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl +=this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl +=this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n\n let url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=true&${partUrl}`;\n this.router.navigateByUrl(url);\n }\n cancelRemission() {\n this.viewStatus = 'main';\n }\n redirectToFeeSearchPage(event: any, page?: string) {\n event.preventDefault();\n let partUrl =this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl +=this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl +=this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl +=this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl +=this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl +=this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n\n if(this.viewStatus === 'feeRemovalConfirmation' || this.viewStatus === 'add_remission') {\n this.viewStatus = 'main';\n return;\n }\n let url = `/fee-search?ccdCaseNumber=${this.ccdCaseNumber}&selectedOption=${this.paymentLibComponent.SELECTED_OPTION}&paymentGroupRef=${this.paymentGroupRef}${partUrl}`;\n this.router.navigateByUrl(url);\n }\n takePayment() {\n this.isConfirmationBtnDisabled = true;\n const requestBody = new PaymentToPayhubRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType),\n antennaReqBody = new PayhubAntennaRequest(this.ccdCaseNumber, this.outStandingAmount, this.caseType);\n\n if(this.platForm === '8x8') {\n this.paymentViewService.postPaymentToPayHub(requestBody, this.paymentGroupRef).subscribe(\n response => {\n this.location.go(`payment-history?view=fee-summary`);\n this.payhubHtml = response;\n this.viewStatus = 'payhub_view';\n this.isBackButtonEnable=false;\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.router.navigateByUrl('/pci-pal-failure');\n }\n );\n } else if(this.platForm === 'Antenna') {\n\n this.paymentViewService.postPaymentAntennaToPayHub(antennaReqBody, this.paymentGroupRef).subscribe(\n response => {\n this.isBackButtonEnable=false;\n window.location.href = '/makePaymentByTelephoneyProvider';\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.router.navigateByUrl('/pci-pal-failure');\n }\n );\n }\n\n }\n\n goToAllocatePage(outStandingAmount: number, isFeeAmountZero: Boolean) {\n if (outStandingAmount > 0 || (outStandingAmount === 0 && isFeeAmountZero)) {\n this.paymentLibComponent.paymentGroupReference = this.paymentGroupRef;\n this.paymentLibComponent.viewName = 'allocate-payments';\n } else {\n this.loadCaseTransactionPage();\n }\n }\n isCheckAmountdueExist(amountDue: any) {\n return typeof amountDue === 'undefined';\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\n\n\n\n@Component({\n selector: 'ccpay-error-banner',\n templateUrl: './error-banner.component.html',\n styleUrls: ['./error-banner.component.scss']\n})\n\nexport class ErrorBannerComponent implements OnInit {\n @Input('errorMessage') errorMessage;\n\n constructor(\n ) {}\n\n ngOnInit() {\n\n }\n}\n","\nexport class UnidentifiedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n unidentified_reason: string;\n\n constructor(payment_group_reference: string, payment_reference : string, unidentified_reason: any) {\n this.payment_allocation_status = {\n description: '',\n name: \"Unidentified\"\n };\n this.payment_group_reference = payment_group_reference ;\n this.payment_reference= payment_reference;\n this.unidentified_reason= unidentified_reason;\n\n }\n\n\n\n}\n","import { IBSPayments } from \"./IBSPayments\";\n\nexport class AllocatePaymentRequest {\n amount: Number;\n banked_date: String;\n ccd_case_number: String;\n exception_record: string;\n currency: String;\n document_control_number: String;\n external_provider: String;\n giro_slip_no: String;\n payer_name: String;\n payment_channel: Object;\n payment_status: Object;\n payment_method: String;\n case_type: String;\n payment_allocation_dto?: {\n allocation_reason: String,\n allocation_status: String,\n explanation: String,\n payment_allocation_status: Object,\n payment_group_reference: String,\n payment_reference: String,\n reason: String,\n receiving_office: String,\n unidentified_reason: String,\n user_id: String,\n user_name: String,\n case_type: String\n }\n\n constructor(ccd_case_number : string, unAllocatedPayment: IBSPayments, caseType: string, exceptionRecord: string, allocatedRequest?: any) {\n this.amount = unAllocatedPayment.amount;\n this.banked_date = unAllocatedPayment.date_banked;\n this.ccd_case_number = ccd_case_number;\n this.exception_record = exceptionRecord;\n this.currency= unAllocatedPayment.currency;\n this.document_control_number = unAllocatedPayment.dcn_reference;\n this.external_provider = 'exela';\n this.giro_slip_no = unAllocatedPayment.bgc_reference;\n this.payer_name = unAllocatedPayment.payer_name;\n this.payment_channel = {\n description: '',\n name: 'bulk scan'\n };\n this.payment_status ={\n description: 'bulk scan payment completed',\n name: 'success'\n }\n this.payment_method = unAllocatedPayment.payment_method;\n this.case_type= caseType;\n if(allocatedRequest) {\n this.payment_allocation_dto = allocatedRequest;\n }\n\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymentsRequest';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\n\n@Component({\n selector: 'app-mark-unidentified-payment',\n templateUrl: './mark-unidentified-payment.component.html',\n styleUrls: ['./mark-unidentified-payment.component.scss']\n})\nexport class MarkUnidentifiedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnidentifiedForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n isInvesticationDetailEmpty: boolean = false;\n investicationDetailHasError: boolean = false;\n investicationDetailMinHasError: boolean = false;\n investicationDetailMaxHasError: boolean = false;\n errorMessage = this.getErrorMessage(false);\n unassignedRecord:IBSPayments;\n siteID: string = null;\n investigationComment: string;\n isConfirmButtondisabled:Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n isStrategicFixEnable: boolean = true;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.markPaymentUnidentifiedForm = this.formBuilder.group({\n investicationDetail: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ]))\n });\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.getErrorMessage(false);\n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n saveAndContinue() {\n this.resetForm([false, false, false, false]);\n const investicationField = this.markPaymentUnidentifiedForm.controls.investicationDetail;\n const formerror = investicationField.errors;\n if (this.markPaymentUnidentifiedForm.dirty && this.markPaymentUnidentifiedForm.valid) {\n this.investigationComment = this.markPaymentUnidentifiedForm.controls.investicationDetail.value;\n this.viewStatus = 'unidentifiedContinueConfirm';\n }else {\n if(investicationField.value == '' ) {\n this.resetForm([true, false, false, false]);\n }\n if(investicationField.value != '' && investicationField.invalid ) {\n this.resetForm([false, true, false, false]);\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false, false, true, false]);\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, true]);\n }\n }\n }\n resetForm(val) {\n this.isInvesticationDetailEmpty = val[0];\n this.investicationDetailHasError = val[1];\n this.investicationDetailMinHasError = val[2];\n this.investicationDetailMaxHasError = val[3];\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const reason = this.markPaymentUnidentifiedForm.get('investicationDetail').value;\n\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Unidentified',\n payment_allocation_status: {\n description: '',\n name: 'Unidentified'\n },\n unidentified_reason: reason,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnidentifiedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, reason);\n if (response2.success) {\n this.paymentViewService.postBSUnidentifiedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n cancelMarkUnidentifiedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.markPaymentUnidentifiedForm.get('investicationDetail').value!==\"\"){\n this.viewStatus = 'unidentifiedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.viewStatus = 'mainForm';\n }\n }\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getErrorMessage(isErrorExist) {\n return {\n title: \"There is a problem with the service\",\n body: \"Try again later\",\n showError: isErrorExist\n };\n }\n}\n","\nexport class UnsolicitedPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n receiving_office: string;\n receiving_email_address: string;\n sending_email_address: string;\n unidentified_reason: string;\n constructor(payment_group_reference: string, payment_reference : string, reason: string,responsible_office: string, responsible_person:string,email_id: string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Transferred\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.unidentified_reason= reason;\n this.receiving_office= responsible_office;\n this.receiving_email_address= email_id;\n this.sending_email_address= responsible_person;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\n\n\n@Component({\n selector: 'app-mark-unsolicited-payment',\n templateUrl: './mark-unsolicited-payment.component.html',\n styleUrls: ['./mark-unsolicited-payment.component.scss']\n})\nexport class MarkUnsolicitedPaymentComponent implements OnInit {\n @Input() caseType: string;\n markPaymentUnsolicitedForm: FormGroup;\n viewStatus: string;\n reasonHasError: boolean = false;\n isReasonEmpty: boolean = false;\n reasonMinHasError: boolean = false;\n reasonMaxHasError: boolean = false;\n responsibleOfficeHasError: boolean = false;\n isResponsibleOfficeEmpty: boolean = false;\n errorMessage = this.getErrorMessage(false);\n ccdCaseNumber: string;\n bspaymentdcn: string;\n unassignedRecord: IBSPayments;\n siteID: string = null;\n reason: string;\n responsiblePerson: string;\n responsibleOffice: string;\n emailId: string;\n isConfirmButtondisabled: Boolean = false;\n isContinueButtondisabled: Boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n selectedSiteId: string;\n selectedSiteName: string;\n isStrategicFixEnable: boolean = true;\n siteIDList;\n\n constructor(private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService) { }\n\n ngOnInit() {\n this.resetForm([false,false,false,false,false,false], 'all');\n this.viewStatus = 'mainForm';\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.getUnassignedPayment();\n\n this.paymentViewService.getSiteID().subscribe(\n siteids => {\n this.isContinueButtondisabled = false;\n this.errorMessage = this.getErrorMessage(false);\n this.siteIDList = JSON.parse(siteids);\n },\n err => {\n window.scrollTo(0, 0);\n this.isContinueButtondisabled = true;\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n \n this.markPaymentUnsolicitedForm = this.formBuilder.group({\n reason: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n responsibleOffice: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s\\\\n,\\\\.-:]*)$')\n ])),\n responsiblePerson: new FormControl(''),\n emailId: new FormControl('')\n });\n }\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n confirmPayments() {\n this.isConfirmButtondisabled = true;\n const controls = this.markPaymentUnsolicitedForm.controls;\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n allocation_status:'Transferred',\n payment_allocation_status: {\n description: '',\n name: 'Transferred'\n },\n unidentified_reason: controls.reason.value,\n receiving_office: this.selectedSiteId,\n user_id: this.caseType,\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSWoPGStrategic(postStrategicBody).subscribe(\n res => {\n this.errorMessage = this.getErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n });\n } else {\n // controls.responsibleOffice.setValue('P219');\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.getErrorMessage(false);\n const response1 = JSON.parse(res1),\n requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unassignedRecord, this.siteID, this.exceptionReference)\n this.paymentViewService.postBSPayments(requestBody).subscribe(\n res2 => {\n this.errorMessage = this.getErrorMessage(false);\n const response2 = JSON.parse(res2),\n reqBody = new UnsolicitedPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, controls.reason.value, this.selectedSiteId, controls.responsiblePerson.value, controls.emailId.value);\n if (response2.success) {\n this.paymentViewService.postBSUnsolicitedPayments(reqBody).subscribe(\n res3 => {\n this.errorMessage = this.getErrorMessage(false);\n const response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unassignedRecord.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n }\n saveAndContinue() {\n this.resetForm([false,false,false,false,false,false], 'all');\n const formerror = this.markPaymentUnsolicitedForm.controls.reason.errors;\n const reasonField = this.markPaymentUnsolicitedForm.controls.reason;\n //const officeIdField = this.selectedSiteId;\n const officeIdField = this.markPaymentUnsolicitedForm.controls.responsibleOffice;\n if (this.markPaymentUnsolicitedForm.dirty && this.markPaymentUnsolicitedForm.valid) {\n const controls = this.markPaymentUnsolicitedForm.controls;\n this.emailId = controls.emailId.value;\n this.responsibleOffice = officeIdField.value;\n this.responsiblePerson = controls.responsiblePerson.value;\n this.reason = controls.reason.value;\n this.viewStatus = 'unsolicitedContinueConfirm';\n }else {\n if( reasonField.value == '' ) {\n this.resetForm([true,false,false,false,false,false], 'reason');\n }\n if(reasonField.value != '' && this.markPaymentUnsolicitedForm.controls.reason.invalid ) {\n this.resetForm([false,true,false,false,false,false], 'reason');\n }\n if(formerror && formerror.minlength && formerror.minlength.actualLength < 3 ) {\n this.resetForm([false,false,true,false,false,false], 'reason');\n }\n if(formerror && formerror.maxlength && formerror.maxlength.actualLength > 255 ) {\n this.resetForm([false,false,false,true,false,false], 'reason');\n }\n if(officeIdField.value == '') {\n this.resetForm([false,false,false,false,true,false], 'responsibleOffice');\n }\n if(officeIdField.value != '' && officeIdField.invalid) {\n this.resetForm([false,false,false,false,false,true],'responsibleOffice');\n }\n }\n }\n resetForm(val, field) {\n if(field==='reason' || field==='all') {\n this.isReasonEmpty = val[0];\n this.reasonHasError = val[1];\n this.reasonMinHasError = val[2];\n this.reasonMaxHasError = val[3];\n }\n if(field==='responsibleOffice' || field==='all') {\n this.isResponsibleOfficeEmpty = val[4];\n this.responsibleOfficeHasError = val[5];\n }\n }\n\ncancelMarkUnsolicitedPayments(type?:string){\n if(type && type === 'cancel') {\n if(this.checkingFormValue()){\n this.viewStatus = 'unsolicitedCancelConfirm';\n } else {\n this.gotoCasetransationPage();\n }\n } else {\n this.markPaymentUnsolicitedForm.controls.responsibleOffice.setValue('');\n this.viewStatus = 'mainForm';\n }\n }\n checkingFormValue(){\n const formFields = this.markPaymentUnsolicitedForm.value;\n let valueExists = false;\n\n for (var field in formFields) {\n if (formFields.hasOwnProperty(field) && formFields[field] !==\"\") {\n valueExists = true;\n break;\n }\n }\n return valueExists;\n }\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n \n this.unassignedRecord = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n },\n (error: any) => {\n this.errorMessage = this.getErrorMessage(true);\n }\n );\n }\n\n getErrorMessage(isErrorExist) {\n return {\n title: \"Something went wrong.\",\n body: \"Please try again later.\",\n showError: isErrorExist\n };\n }\n\n selectchange(args){ \n this.selectedSiteId = args.target.value; \n this.selectedSiteName = args.target.options[args.target.selectedIndex].text; \n } \n\n}\n","import { Component, OnInit, Output,Input, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IBSPayments } from '../../interfaces/IBSPayments';\nimport {Router} from '@angular/router';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n@Component({\n selector: 'ccpay-app-unprocessed-payments',\n templateUrl: './unprocessed-payments.component.html',\n styleUrls: ['./unprocessed-payments.component.scss']\n})\nexport class UnprocessedPaymentsComponent implements OnInit {\n\n @Input('FEE_RECORDS_EXISTS') FEE_RECORDS_EXISTS: boolean;\n @Input('PAYMENTREF') PAYMENTREF: string;\n @Input('ISTURNOFF') ISTURNOFF: boolean;\n @Input('IS_BUTTON_ENABLE') IS_BUTTON_ENABLE: boolean;\n @Input('IS_OS_AMT_AVAILABLE') IS_OS_AMT_AVAILABLE: boolean;\n @Input('ISNEWPCIPALOFF') ISNEWPCIPALOFF: boolean;\n @Input('ISOLDPCIPALOFF') ISOLDPCIPALOFF: boolean;\n @Input('ISSFENABLE') ISSFENABLE: boolean;\n @Input('PAYMENTSLENGTH') PAYMENTSLENGTH:Number;\n @Input('LEVEL')LEVEL:Number;\n\n @Output() selectedUnprocessedFeeEvent: EventEmitter<string> = new EventEmitter();\n @Output() getUnprocessedFeeCount: EventEmitter<string> = new EventEmitter();\n\n viewStatus = 'main';\n unassignedRecordList: IBSPayments;\n upPaymentErrorMessage: string = null;\n ccdCaseNumber: string;\n recordId: string = null;\n isRecordExist: boolean = false;\n dcnNumber: string = null;\n selectedOption: string;\n isUnprocessedRecordSelected: boolean = false;\n isAllocateToExistingFeebtnEnabled: boolean = false;\n isMarkAsUnidentifiedbtnEnabled: boolean = false;\n isAllocatedToNewFeebtnEnabled: boolean = false;\n isExceptionCase: boolean = false;\n serviceId: string = null;\n isBulkScanEnable;\n isNewpcipaloff;\n isOldpcipaloff;\n isTurnOff: boolean = true;\n isStFixEnable;\n unassignedRecordSelectedList: IBSPayments;\n unassignedRecordListLength: number = 0;\n showContent: boolean;\n\n constructor(private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private OrderslistService: OrderslistService\n ) { }\n\n ngOnInit() {\n // Todo ...\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION.toLocaleLowerCase();\n this.dcnNumber = this.paymentLibComponent.DCN_NUMBER;\n this.isBulkScanEnable = this.paymentLibComponent.ISBSENABLE;\n this.isTurnOff = this.paymentLibComponent.ISTURNOFF;\n this.isNewpcipaloff = this.paymentLibComponent.ISNEWPCIPALOFF;\n this.isOldpcipaloff = this.paymentLibComponent.ISOLDPCIPALOFF;\n this.isStFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.OrderslistService.getFeeExists().subscribe( (data) => this.FEE_RECORDS_EXISTS = data);;\n this.getUnassignedPaymentlist();\n\n }\n\n getUnassignedPaymentlist() {\n if (this.selectedOption === 'dcn') {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.dcnNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n } else {\n this.bulkScaningPaymentService.getBSPaymentsByCCD(this.ccdCaseNumber).subscribe(\n unassignedPayments => {\n // unassignedPayments['data'].map(data => data.expandable=false);\n if(unassignedPayments['data'] && unassignedPayments['data'].payments) {\n this.setValuesForUnassignedRecord(unassignedPayments['data']);\n } else if(unassignedPayments['payments']) {\n this.setValuesForUnassignedRecord(unassignedPayments);\n } else {\n this.upPaymentErrorMessage = 'error';\n this.getUnprocessedFeeCount.emit('0');\n }\n },\n (error: any) => {\n this.upPaymentErrorMessage = error;\n this.getUnprocessedFeeCount.emit('0');\n }\n );\n }\n\n }\n\n setValuesForUnassignedRecord(unassignedPayments) {\n \n this.unassignedRecordList = unassignedPayments.payments;\n if(this.unassignedRecordList){\n this.unassignedRecordListLength = unassignedPayments.payments.length\n }\n this.serviceId = unassignedPayments.responsible_service_id;\n if (unassignedPayments['ccd_reference'] === undefined) {\n this.isExceptionCase = true;\n }\n // this.isRecordExist = this.unassignedRecordList.length === 0;\n this.getUnprocessedFeeCount.emit(<any>this.unassignedRecordList.length);\n this.unprocessedPaymentSelectEvent(this.unassignedRecordList);\n }\n\n formatUnassignedRecordId(ID: Number) {\n return `unassignrecord-${ID}`;\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n\n redirectToFeeSearchPage(event: any, dcn_reference:any) {\n event.preventDefault();\n this.recordId = dcn_reference;\n let url = this.isBulkScanEnable ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n url += this.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n url += this.isStFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n url +=`&caseType=${this.paymentLibComponent.CASETYPE}`;\n url += this.isOldpcipaloff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n url += this.isNewpcipaloff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n\n this.router.navigateByUrl(`/fee-search?selectedOption=${this.selectedOption}&ccdCaseNumber=${this.ccdCaseNumber}&dcn=${this.recordId}${url}`);\n }\n\n loadUnsolicitedPage(viewName: string, dcn_reference:any) {\n this.recordId = dcn_reference;\n this.paymentLibComponent.bspaymentdcn = this.recordId;\n this.paymentLibComponent.viewName = viewName;\n }\n\n unprocessedPaymentSelectEvent(selectedRecordReference: any) {\n this.isUnprocessedRecordSelected = true;\n this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit(selectedRecordReference);\n }\n\n resetButtons() {\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n }\n\n goToAllocatePage(dcn_reference:any) {\n this.paymentLibComponent.bspaymentdcn = dcn_reference;\n this.paymentLibComponent.unProcessedPaymentServiceId = this.serviceId\n this.paymentLibComponent.isTurnOff = this.ISTURNOFF;\n this.paymentLibComponent.isNewPcipalOff = this.ISNEWPCIPALOFF;\n this.paymentLibComponent.isOldPcipalOff = this.ISOLDPCIPALOFF;\n this.paymentLibComponent.ISSFENABLE = this.isStFixEnable;\n\n if(this.ISTURNOFF) {\n this.paymentLibComponent.paymentGroupReference = this.PAYMENTREF;\n this.paymentLibComponent.viewName = 'fee-summary';\n }else {\n this.paymentLibComponent.paymentGroupReference = null;\n this.paymentLibComponent.viewName = 'allocate-payments';\n }\n\n }\n\n validateButtons() {\n if ( this.isUnprocessedRecordSelected && this.isExceptionCase) {\n this.isMarkAsUnidentifiedbtnEnabled = true;\n } else if ( this.isUnprocessedRecordSelected && !this.isExceptionCase && !this.FEE_RECORDS_EXISTS) {\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = true;\n } else if( this.isUnprocessedRecordSelected && !this.isExceptionCase && this.FEE_RECORDS_EXISTS ) {\n if(!this.ISTURNOFF) {\n this.isAllocateToExistingFeebtnEnabled = true;\n this.isAllocatedToNewFeebtnEnabled = false;\n } else {\n this.isAllocateToExistingFeebtnEnabled = this.IS_OS_AMT_AVAILABLE;\n this.isAllocatedToNewFeebtnEnabled = true;\n }\n }\n }\n\n unprocessedPaymentUnSelectEvent(event: any) {\n event.preventDefault();\n this.recordId = null;\n this.isUnprocessedRecordSelected = false;\n this.isAllocateToExistingFeebtnEnabled = false;\n this.isAllocatedToNewFeebtnEnabled = false;\n this.isMarkAsUnidentifiedbtnEnabled = false;\n //this.validateButtons();\n this.selectedUnprocessedFeeEvent.emit('');\n }\n\n showDetailRow(event: any,obj: any, i: any) {\n event.preventDefault();\n \n this.unassignedRecordSelectedList = obj;\n \n }\n}\n","import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport {IPayment} from '../../interfaces/IPayment';\nimport {Router} from '@angular/router';\n\n@Component({\n selector: 'ccpay-app-processed-payments',\n templateUrl: './processed-payments.component.html',\n styleUrls: ['./processed-payments.component.scss']\n})\nexport class ProcessedPaymentsComponent implements OnInit {\n\n @Input('NONPAYMENTS') NONPAYMENTS: IPayment[];\n @Output() goToPaymentViewComponent: EventEmitter<any> = new EventEmitter();\n\n constructor(\n private router: Router,\n private bulkScaningPaymentService: BulkScaningPaymentService\n ) { }\n ngOnInit() {\n }\n\n trimUnderscore(method: string){\n return this.bulkScaningPaymentService.removeUnwantedString(method,' ');\n }\n redirectToPaymentViewPage(paymentGroupReference: string, paymentReference: string, paymentMethod: string) {\n this.goToPaymentViewComponent.emit({paymentGroupReference, paymentReference, paymentMethod});\n }\n}\n","\nexport class IAllocationPaymentsRequest {\n payment_allocation_status: any;\n payment_group_reference: string;\n payment_reference: string;\n reason: string;\n explanation: string;\n user_name: string;\n constructor(payment_group_reference: string, payment_reference : string, reason? : string, explanation? : string, userName? : string) {\n this.payment_allocation_status = {\n description: '',\n name: \"Allocated\"\n };\n this.payment_group_reference = payment_group_reference;\n this.payment_reference= payment_reference;\n this.reason = reason ? reason : null;\n this.explanation = explanation ? explanation : null;\n this.user_name = userName ? userName : null;\n }\n}\n","import { Component, OnInit, Input } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl } from '@angular/forms';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {CaseTransactionsService} from '../../services/case-transactions/case-transactions.service'; \nimport {BulkScaningPaymentService} from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport {IBSPayments} from '../../interfaces/IBSPayments';\nimport {AllocatePaymentRequest} from '../../interfaces/AllocatePaymentRequest';\nimport {IAllocationPaymentsRequest} from '../../interfaces/IAllocationPaymentsRequest';\nimport { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';\nimport { OrderslistService } from '../../services/orderslist.service';\n\n\n\n@Component({\n selector: 'app-allocate-payments',\n templateUrl: './allocate-payments.component.html',\n styleUrls: ['./allocate-payments.component.scss']\n})\nexport class AllocatePaymentsComponent implements OnInit {\n @Input() isTurnOff: boolean;\n @Input() caseType: string;\n\n overUnderPaymentForm: FormGroup;\n viewStatus: string;\n ccdCaseNumber: string;\n bspaymentdcn: string;\n recordId:string;\n feedbackUrlLabel:string;\n unAllocatedPayment: IBSPayments = {\n amount: 0\n };\n siteID: string = null;\n errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n paymentGroup: IPaymentGroup;\n paymentGroups: IPaymentGroup[] = [];\t\n remainingAmount: number;\n isRemainingAmountGtZero: boolean;\n isMoreDetailsBoxHide: boolean = true;\n isRemainingAmountLtZero: boolean;\n afterFeeAllocateOutstanding: number;\n amountForAllocation: number;\n isConfirmButtondisabled: boolean = false;\n isContinueButtondisabled: boolean = true;\n otherPaymentExplanation: string = null;\n selectedOption: string = null;\n isFeeAmountZero: boolean = false;\t\n\n paymentReasonHasError: boolean = false;\n paymentExplanationHasError: boolean = false;\n isPaymentDetailsEmpty: boolean = false;\n isPaymentDetailsInvalid: boolean = false;\n paymentDetailsMinHasError: boolean = false;\n paymentDetailsMaxHasError: boolean = false;\n isUserNameEmpty: boolean = false;\n isUserNameInvalid: boolean = false;\n ccdReference: string = null;\n exceptionReference: string = null;\n paymentReason: string = null;\n paymentExplanation: string = null;\n userName: string = null;\n paymentSectionLabel: any;\n paymentRef: string = null;\n isStrategicFixEnable: boolean = true;\n orderLevelFees: IOrderReferenceFee[] = [];\n\n reasonList: { [key: string]: { [key: string]: string } }= {\n overPayment: {\n hwfReward: 'Help with Fees (HWF) awarded. Please include the HWF reference number in the explanatory note',\n wrongFee: 'Incorrect payment received',\n notIssueCase: 'Unable to issue case',\n otherDeduction: 'Other'\n },\n shortFall: {\n helpWithFee: 'Help with Fees (HWF) application declined',\n wrongFee: 'Incorrect payment received',\n other: 'Other'\n }\n }\n explanationList = {\n overPayment: {\n referRefund: 'Details in case notes. Refund due',\n noRefund: 'Details in case notes. No refund due',\n noCase: 'No case created. Refund due',\n other: 'Other'\n },\n shortFall: {\n holdCase: 'I have put a stop on the case and contacted the applicant requesting the balance of payment',\n heldCase: 'I have put a stop on the case. The applicant needs to be contacted to request the balance of payment',\n other: 'Other'\n }\n }\n\n refund = {\n reason: {\n duplicate: 'Duplicate payment',\n humanerror: 'Human error',\n caseWithdrawn: 'Case withdrawn',\n other: 'Other'\n }\n }\n\n\n constructor(\n private errorHandlerService: ErrorHandlerService,\n private caseTransactionsService: CaseTransactionsService,\n private formBuilder: FormBuilder,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.viewStatus = 'mainForm';\n if (this.paymentLibComponent.paymentGroupReference !== null) {\n this.viewStatus = 'allocatePaymentConfirmation';\n }\n \n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.bspaymentdcn = this.paymentLibComponent.bspaymentdcn;\n this.paymentRef = this.paymentLibComponent.paymentGroupReference;\n this.selectedOption = this.paymentLibComponent.SELECTED_OPTION;\n this.isStrategicFixEnable = this.paymentLibComponent.ISSFENABLE;\n this.isTurnOff = this.paymentLibComponent.isTurnOff;\n this.overUnderPaymentForm = this.formBuilder.group({\n moreDetails: new FormControl('', Validators.compose([\n Validators.required,\n Validators.minLength(3),\n Validators.maxLength(255),\n Validators.pattern('^([a-zA-Z0-9\\\\s,\\\\.]*)$')\n ])),\n userName: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9\\\\s]*)$')\n ])),\n });\n this.OrderslistService.getOrdersList().subscribe( (data) =>\n this.orderLevelFees = data.filter(data => data.orderStatus !== 'Paid'));\n this.OrderslistService.getCaseType().subscribe( (data) => this.caseType = data);\n this.getUnassignedPayment();\n }\n getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number {\n return this.bulkScaningPaymentService.calculateOutStandingAmount(paymentGroup);\n }\n\n getPaymentGroupDetails(){\n\n if(!this.isTurnOff){\n this.paymentViewService.getPaymentGroupDetails(this.paymentRef).subscribe(\n paymentGroup => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.paymentGroup = paymentGroup;\n this.saveAndContinue();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }else {\n this.caseTransactionsService.getPaymentGroups(this.ccdCaseNumber).subscribe(\n paymentGroups => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.paymentGroups = paymentGroups['payment_groups'].filter(paymentGroup => {\n paymentGroup.fees.forEach(fee => {\n if(fee.calculated_amount === 0) {\n this.isFeeAmountZero = true\n }\n });\n let fstCon = this.getGroupOutstandingAmount(<IPaymentGroup>paymentGroup),\n scndCn = fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero) && paymentGroup.payment_group_reference === this.paymentRef;\n return this.paymentRef ? scndCn : fstCon > 0 || (fstCon == 0 && this.isFeeAmountZero);\n });\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }\n\n }\n\n selectedPaymentGroup(paymentGroup: IPaymentGroup) {\t\n this.isContinueButtondisabled = false;\t\n this.paymentGroup = paymentGroup;\t\n }\t\n\n gotoCasetransationPage() {\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n\n gotoSummaryPage(event: any) { \n event.preventDefault();\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n }\n\n cancelAllocatePayment(event: any){\n event.preventDefault();\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n if(!this.isTurnOff){\n this.paymentLibComponent.viewName = 'fee-summary';\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISBSENABLE = true;\n } else {\n this.viewStatus = 'mainForm';\t\n }\n }\n confirmAllocatePayement(){\n const paymentDetailsField = this.overUnderPaymentForm.controls.moreDetails,\n paymentFormError = this.overUnderPaymentForm.controls.moreDetails.errors,\n userNameField = this.overUnderPaymentForm.controls.userName,\n isEmptyCondtion = this.paymentReason && this.paymentExplanation,\n isOtherOptionSelected = this.paymentExplanation === 'Other';\n\n this.resetForm([false, false, false, false, false, false, false, false], 'all');\n if ( (!this.isRemainingAmountGtZero && !this.isRemainingAmountLtZero) || isEmptyCondtion && (!isOtherOptionSelected && userNameField.valid || isOtherOptionSelected && userNameField.valid && paymentDetailsField.valid)) {\n this.isConfirmButtondisabled = true;\n this.otherPaymentExplanation = this.paymentExplanation === 'Other' ? paymentDetailsField.value : this.paymentExplanation;\n this.userName = userNameField.value;\n this.finalServiceCall();\n }else {\n if(!this.paymentReason) {\n this.resetForm([true, false, false, false, false, false, false, false], 'reason');\n }\n if(!this.paymentExplanation) {\n this.resetForm([false, true, false, false, false, false, false, false], 'explanation');\n }\n if(this.paymentExplanation && isOtherOptionSelected) {\n if(paymentDetailsField.value == '' ) {\n this.resetForm([false, false, true, false, false, false, false, false], 'other');\n }\n if(paymentDetailsField.value != '' && paymentDetailsField.invalid ) {\n this.resetForm([false, false, false, true, false, false, false, false], 'other');\n }\n if(paymentFormError && paymentFormError.minlength && paymentFormError.minlength.actualLength < 3 ) {\n this.resetForm([false, false, false, false, true, false, false, false], 'other');\n }\n if(paymentFormError && paymentFormError.maxlength && paymentFormError.maxlength.actualLength > 255 ) {\n this.resetForm([false, false, false, false, false, true, false, false], 'other');\n }\n }\n if(userNameField.value === \"\") {\n this.resetForm([false, false, false, false, false, false, true, false], 'username');\n }\n if(userNameField.value !== \"\" && userNameField.invalid) {\n this.resetForm([false, false, false, false, false, false, false, true], 'username');\n }\n }\n }\n resetForm(vals, field) {\n if(field==='reason' || field==='all') {\n this.paymentReasonHasError = vals[0];\n }\n if(field==='explanation' || field==='all') {\n this.paymentExplanationHasError = vals[1];\n }\n if(field==='other' || field==='all') {\n this.isPaymentDetailsEmpty = vals[2];\n this.isPaymentDetailsInvalid = vals[3];\n this.paymentDetailsMinHasError = vals[4];\n this.paymentDetailsMaxHasError = vals[5];\n }\n if(field==='username' || field==='all') {\n this.isUserNameEmpty = vals[6];\n this.isUserNameInvalid = vals[7];\n }\n }\n finalServiceCall() {\n if(!this.isStrategicFixEnable) {\n let allocatedRequest = {\n reason: this.paymentReason,\n allocation_status:'Allocated',\n explanation: this.otherPaymentExplanation,\n payment_allocation_status: {\n description: '',\n name: 'Allocated'\n },\n payment_group_reference: this.paymentGroup.payment_group_reference,\n case_type: this.caseType,\n user_name: this.userName\n }\n const postStrategicBody = new AllocatePaymentRequest\n (this.ccdReference, this.unAllocatedPayment, this.caseType, this.exceptionReference, allocatedRequest);\n this.bulkScaningPaymentService.postBSPaymentStrategic(postStrategicBody , this.paymentGroup.payment_group_reference).subscribe(\n res => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response = JSON.parse(res);\n if (response.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n });\n\n } else {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'PROCESSED').subscribe(\n res1 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response1 = JSON.parse(res1);\n if (response1.success) {\n const requestBody = new AllocatePaymentRequest\n (this.ccdReference, this.unAllocatedPayment, this.siteID, this.exceptionReference);\n this.bulkScaningPaymentService.postBSAllocatePayment(requestBody, this.paymentGroup.payment_group_reference).subscribe(\n res2 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response2 = JSON.parse(res2);\n const reqBody = new IAllocationPaymentsRequest\n (response2['data'].payment_group_reference, response2['data'].reference, this.paymentReason, this.otherPaymentExplanation, this.userName);\n if (response2.success) {\n this.paymentViewService.postBSAllocationPayments(reqBody).subscribe(\n \n res3 => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n let response3 = JSON.parse(res3);\n if (response3.success) {\n this.gotoCasetransationPage();\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.bulkScaningPaymentService.patchBSChangeStatus(this.unAllocatedPayment.dcn_reference, 'COMPLETE').subscribe();\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n );\n }\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n window.scrollTo(0, 0);\n this.isConfirmButtondisabled = false;\n }\n ); \n }\n }\n\n saveAndContinue(){\n if(this.paymentGroup) {\n this.isMoreDetailsBoxHide = true;\n this.overUnderPaymentForm.get('moreDetails').reset();\n this.overUnderPaymentForm.get('moreDetails').setValue('');\n this.overUnderPaymentForm.get('userName').reset();\n this.overUnderPaymentForm.get('userName').setValue('');\n this.paymentReason = '';\n this.paymentExplanation = '';\n let GroupOutstandingAmount = this.getGroupOutstandingAmount(this.paymentGroup);\n const remainingToBeAssigned = this.unAllocatedPayment.amount - GroupOutstandingAmount;\n this.isRemainingAmountGtZero = remainingToBeAssigned > 0;\n this.isRemainingAmountLtZero = remainingToBeAssigned < 0;\n this.paymentSectionLabel = this.isRemainingAmountGtZero ? { \n title: 'There is a surplus of',\n reason: 'Provide a reason. This will be used in the Refund process.',\n }: this.isRemainingAmountLtZero ? { \n title: 'There is a shortfall of',\n reason: 'Provide a reason',\n }: { \n title:'Amount left to be allocated',\n reason:'',\n };\n this.feedbackUrlLabel = this.isRemainingAmountGtZero ? 'CONFIRMALLOCATION_SURPLUS' : this.isRemainingAmountLtZero ? 'CONFIRMALLOCATION_SHORTFALL' : 'CONFIRMALLOCATION';\n this.remainingAmount = this.isRemainingAmountGtZero ? remainingToBeAssigned : this.isRemainingAmountLtZero ? remainingToBeAssigned * -1 : 0;\n this.afterFeeAllocateOutstanding = remainingToBeAssigned >= 0 ? 0 : (remainingToBeAssigned * -1);\n this.amountForAllocation = GroupOutstandingAmount >= this.unAllocatedPayment.amount ? this.unAllocatedPayment.amount : GroupOutstandingAmount;\n if(this.isTurnOff){\n this.viewStatus = 'allocatePaymentConfirmation';\t\n }\n }\n }\n getUnassignedPayment() {\n this.bulkScaningPaymentService.getBSPaymentsByDCN(this.bspaymentdcn).subscribe(\n unassignedPayments => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n this.unAllocatedPayment = unassignedPayments['data'].payments.filter(payment => {\n return payment && payment.dcn_reference == this.bspaymentdcn;\n })[0];\n this.siteID = unassignedPayments['data'].responsible_service_id;\n const beCcdNumber = unassignedPayments['data'].ccd_reference,\n beExceptionNumber = unassignedPayments['data'].exception_record_reference,\n exceptionReference = beCcdNumber ? beCcdNumber === this.ccdCaseNumber ? null : this.ccdCaseNumber : this.ccdCaseNumber;\n this.ccdReference = beCcdNumber ? beCcdNumber : null;\n this.exceptionReference = beExceptionNumber ? beExceptionNumber : exceptionReference;\n this.getPaymentGroupDetails();\n },\n (error: any) => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n }\n );\n }\n selectRadioButton(key, type) {\n this.isMoreDetailsBoxHide = true;\n if( type === 'explanation' && key === 'other' ){\n this.isPaymentDetailsEmpty = false;\n this.isPaymentDetailsInvalid = false;\n this.paymentDetailsMinHasError = false;\n this.paymentDetailsMaxHasError = false;\n this.isMoreDetailsBoxHide = false;\n }\n }\n OrderListSelectEvent(orderef: any){\n this.isContinueButtondisabled = false;\n this.recordId= orderef;\n }\n\n redirectToOrderFeeSearchPage() {\n // this.paymentLibComponent.bspaymentdcn = null;\n this.paymentLibComponent.paymentGroupReference = this.recordId;\n this.paymentLibComponent.isTurnOff = this.isTurnOff;\n this.paymentLibComponent.viewName = 'fee-summary';\n}\n}","import { IFee } from './IFee';\n\nexport class AddRemissionRequest {\n beneficiary_name: string;\n ccd_case_number: string;\n fee: IFee;\n hwf_amount: number;\n hwf_reference: string;\n payment_group_reference: string;\n case_type: string;\n\n constructor(ccd_case_number: string, fee: IFee, hwf_amount: number, hwf_reference: string, caseType: string) {\n this.ccd_case_number = ccd_case_number;\n this.fee = fee;\n this.hwf_amount = hwf_amount;\n this.hwf_reference = hwf_reference;\n this.case_type = caseType;\n }\n}\n","export class AddRetroRemissionRequest {\n hwf_amount: number;\n hwf_reference: string;\n\n constructor(hwf_amount: number, hwf_reference: string) {\n this.hwf_amount = hwf_amount;\n this.hwf_reference = hwf_reference;\n }\n}\n","export class PostRefundRetroRemission {\n payment_reference: string;\n refund_reason: string;\n \n constructor(payment_reference : string, refund_reason : string) {\n this.payment_reference= payment_reference;\n this.refund_reason = refund_reason;\n } \n}","export class PostIssueRefundRetroRemission {\n remissionReference: string;\n \n constructor(remissionReference : string) {\n this.remissionReference= remissionReference;\n } \n}","import { Component, OnInit, Input, Output, EventEmitter} from '@angular/core';\nimport { FormBuilder, FormGroup, Validators, FormControl, RequiredValidator } from '@angular/forms';\nimport { IFee } from '../../interfaces/IFee';\nimport {Router} from '@angular/router';\nimport { AddRemissionRequest } from '../../interfaces/AddRemissionRequest';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nimport { IPayment } from '../../interfaces/IPayment';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { RefundsRequest } from '../../interfaces/RefundsRequest';\nimport { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';\nimport { IssueRefundRequest } from '../../interfaces/IssueRefundRequest';\nimport { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';\nimport { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';\nimport {ChangeDetectorRef} from '@angular/core';\nimport { IRemission } from '../../interfaces/IRemission';\nimport { OrderslistService } from '../../services/orderslist.service';\n\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-add-remission',\n templateUrl: './add-remission.component.html',\n styleUrls: ['./add-remission.component.scss']\n})\nexport class AddRemissionComponent implements OnInit {\n @Input() fee: IFee;\n @Input() payment: IPayment;\n @Input() remission: IRemission;\n @Input() ccdCaseNumber: string;\n @Input() caseType: string;\n @Input() viewCompStatus: string;\n @Input() paymentGroupRef: string;\n @Input() isTurnOff: boolean;\n @Input() isRefundRemission: boolean;\n @Input() isOldPcipalOff: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() isStrategicFixEnable: boolean;\n @Input() orderStatus: string;\n @Input() paidAmount: any;\n @Input() isFromRefundListPage: boolean;\n @Input() isFromPaymentDetailPage: boolean;\n @Input() isFromServiceRequestPage: boolean;\n @Input() feeamount: number;\n @Output() cancelRemission: EventEmitter<void> = new EventEmitter();\n //@Output() refundListReason: EventEmitter<any> = new EventEmitter({reason:string, code:string});\n @Output() refundListReason = new EventEmitter<{reason: string, code: string}>();\n @Output() refundListAmount: EventEmitter<string> = new EventEmitter();\n\n refund = {\n reason: {\n duplicate: 'Duplicate payment',\n humanerror: 'Human error',\n caseWithdrawn: 'Case withdrawn',\n other: 'Other'\n }\n }\n\n remissionForm: FormGroup;\n hasErrors = false;\n viewStatus = 'main';\n errorMessage = null;\n option: string = null;\n isConfirmationBtnDisabled: boolean = false;\n bsPaymentDcnNumber: string;\n selectedValue = 'yes';\n amount: any;\n retroRemission: boolean = false;\n remissionReference: string = '';\n refundReference: string;\n refundAmount: string;\n paymentExplanationHasError: boolean = false;\n refundReason:string;\n selectedRefundReason: string;\n refundCode:string;\n remessionPayment:IPayment;\n isRemissionCodeEmpty: boolean = false;\n remissionCodeHasError: boolean = false;\n isAmountEmpty: boolean = false;\n isReasonEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n refundHasError:boolean = false;\n isPaymentSuccess: boolean = false;\n isRemissionApplied: boolean = false;\n remissionamt:number;\n refundReasons: any[] = [];\n commonRefundReasons: any[] = [];\n showReasonText: boolean;\n isRefundReasonsSelected: boolean;\n default: string;\n reasonLength: number;\n // refundReasons:IRefundReasons[];\n\n constructor(private formBuilder: FormBuilder,\n private router: Router,\n private paymentViewService: PaymentViewService,\n private paymentLibComponent: PaymentLibComponent,\n private refundService: RefundsService,\n private cd: ChangeDetectorRef,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.default = 'Select a different reason';\n if(this.remission) {\n this.cd.detectChanges();\n }\n if(this.fee) {\n this.amount = (this.fee.volume * this.fee.calculated_amount);\n }\n if (this.payment){\n this.remessionPayment = this.payment;\n if(this.payment.status === 'Success') {\n this.isPaymentSuccess = true;\n }\n }\n this.option = this.paymentLibComponent.SELECTED_OPTION;\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.remissionForm = this.formBuilder.group({\n remissionCode: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})-([a-zA-Z0-9]{3})$')\n ])),\n amount: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[0-9]+(\\\\.[0-9]{2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n refundDDReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl()\n });\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundDDReason'].setValue('Select a different reason', {onlySelf: true});\n if(this.viewCompStatus === ''){\n this.viewStatus = 'main';\n }\n \n if(this.viewCompStatus === 'issuerefund'){\n this.refundService.getRefundReasons().subscribe(\n refundReasons => { \n this.refundReasons = refundReasons['data'].filter((data) => data.recently_used === false);\n this.cd.detectChanges();\n this.commonRefundReasons = refundReasons['data'].filter((data) => data.recently_used === true);\n this.cd.detectChanges();\n } );\n }\n \n if(this.viewCompStatus === 'processretroremissonpage' && this.isFromRefundListPage){\n this.viewStatus = 'processretroremissonpage';\n }\n\n // this.refundService.getUserDetails().subscribe(\n // userdetail => { \n // console.log(userdetail);\n // console.log(userdetail['data']);\n // } );\n this.paymentLibComponent.CCD_CASE_NUMBER\n }\n\n addRemission() {\n this.resetRemissionForm([false, false, false, false, false, false], 'All');\n const remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount > remissionctrls.amount.value; \n this.remissionForm.controls['refundReason'].setErrors(null);\n this.remissionForm.controls['refundDDReason'].setErrors(null);\n this.remissionForm.controls['amount'].setErrors(null);\n if (this.remissionForm.dirty && this.remissionForm.valid && isRemissionLessThanFee) {\n this.viewStatus = 'confirmation';\n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false, false], 'amount');\n }\n if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true, false], 'amount');\n }\n }\n }\n\n confirmRemission() {\n this.isConfirmationBtnDisabled = true;\n const newNetAmount = this.remissionForm.controls.amount.value,\n remissionAmount = this.fee.net_amount - newNetAmount,\n requestBody = new AddRemissionRequest\n (this.ccdCaseNumber, this.fee, remissionAmount, this.remissionForm.controls.remissionCode.value, this.caseType);\n this.paymentViewService.postPaymentGroupWithRemissions(decodeURIComponent(this.paymentGroupRef).trim(), this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response).success) {\n let LDUrl = this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable'\n LDUrl += `&caseType=${this.caseType}`\n LDUrl += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable'\n LDUrl += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable'\n if (this.paymentLibComponent.bspaymentdcn) {\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(`/payment-history/${this.ccdCaseNumber}?view=fee-summary&selectedOption=${this.option}&paymentGroupRef=${this.paymentGroupRef}&dcn=${this.paymentLibComponent.bspaymentdcn}${LDUrl}`);\n }else {\n this.gotoCasetransationPage();\n }\n\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n }\n );\n }\n\n resetRemissionForm(val, field){\n if (field==='All'){\n this.isRemissionCodeEmpty = val[0];\n this.remissionCodeHasError = val[1];\n this.isAmountEmpty = val[2];\n this.amountHasError = val[3];\n this.isRemissionLessThanFeeError = val[4];\n this.isReasonEmpty = val[5];\n } else if(field==='remissionCode' || field==='All') {\n this.isRemissionCodeEmpty = val[0];\n this.remissionCodeHasError = val[1];\n } else if (field==='amount' || field==='All'){\n this.isAmountEmpty = val[2];\n this.amountHasError = val[3];\n this.isRemissionLessThanFeeError = val[4];\n } else if (field==='reason' || field==='All'){\n this.isReasonEmpty = val[5];\n }\n }\n\n // Add retro remission changes\n addRemissionCode() {\n this.isRefundRemission = false;\n this.resetRemissionForm([false, false, false, false, false, false], 'All');\n const remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value; \n this.remissionForm.controls['refundReason'].setErrors(null);\n this.remissionForm.controls['refundDDReason'].setErrors(null);\n this.remissionForm.controls['amount'].setErrors(null);\n if (this.remissionForm.dirty && this.remissionForm.valid && isRemissionLessThanFee) {\n this.viewCompStatus = '';\n this.viewStatus = \"processretroremissonpage\";\n }else {\n\n if(remissionctrls['remissionCode'].value == '' ) {\n this.resetRemissionForm([true, false, false, false, false], 'remissionCode');\n }\n if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n this.resetRemissionForm([false, true, false, false, false], 'remissionCode');\n }\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n }\n if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, true, false, true, false], 'amount');\n }\n if(remissionctrls['reason'].value == '') {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n }\n if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n }\n \n }\n }\n\n\n gotoAddRetroRemissionCodePage() {\n\n if(this.isRefundRemission) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListAmount.emit();\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n }\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n return;\n } \n this.viewStatus = '';\n this.selectedValue = 'yes';\n this.viewCompStatus = \"addremission\";\n this.isRefundRemission = true;\n this.errorMessage = '';\n if(this.isFromPaymentDetailPage) {\n // this.paymentLibComponent.paymentMethod = this.payment.method;\n // this.paymentLibComponent.paymentGroupReference = this.paymentGroupRef;\n // this.paymentLibComponent.paymentReference = this.payment.payment_group_reference;\n this.paymentLibComponent.viewName = 'payment-view';\n }\n }\n\n gotoCheckRetroRemissionPage(payment: IPayment) {\n this.paymentLibComponent.iscancelClicked = false;\n this.errorMessage = '';\n this.resetRemissionForm([false, false, false, false, false], 'All');\n if( !this.isRefundRemission) {\n var remissionctrls=this.remissionForm.controls,\n isRemissionLessThanFee = this.fee.calculated_amount >= remissionctrls.amount.value; \n if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n this.resetRemissionForm([false, false, false, true, false], 'amount');\n } else if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n this.resetRemissionForm([false, false, false, false, true], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n }\n }\n } else {\n var remissionctrls=this.remissionForm.controls;\n //if (this.remissionForm.dirty ) {\n if(remissionctrls['amount'].value == '' ) {\n this.resetRemissionForm([false, false, true, false, false], 'amount');\n } else {\n this.viewCompStatus = '';\n this.viewStatus = \"checkretroremissionpage\";\n this.refundListAmount.emit(remissionctrls['amount'].value);\n }\n //}\n \n }\n }\n\n gotoProcessRetroRemissionPage() {\n this.viewStatus = '';\n this.viewCompStatus = 'addremission';\n this.isRefundRemission = true;\n this.errorMessage = '';\n }\n\n confirmRetroRemission() {\n this.isConfirmationBtnDisabled = true;\n this.retroRemission = true;\n this.remissionamt = this.remissionForm.controls.amount.value;\n\n // if(this.remessionPayment.status === 'Success') {\n // if(this.fee.calculated_amount.toString() === this.remissionForm.controls.amount.value) {\n // this.remissionamt =this.remissionForm.controls.amount.value\n // }\n // else \n // {\n // this.remissionamt = this.fee.calculated_amount - this.remissionForm.controls.amount.value;\n // }\n\n // } else {\n // this.remissionamt = this.remissionForm.controls.amount.value;\n // }\n const requestBody = new AddRetroRemissionRequest(this.remissionamt,this.remissionForm.controls.remissionCode.value )\n this.paymentViewService.postPaymentGroupWithRetroRemissions(decodeURIComponent(this.paymentGroupRef).trim(), this.fee.id, requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.isRemissionApplied = true;\n this.viewCompStatus = '';\n this.viewStatus = 'retroremissionconfirmationpage';\n this.remissionReference =JSON.parse(response).remission_reference;\n //if (this.retroRemission) {\n // } else {\n // let LDUrl = this.isTurnOff ? '&isTurnOff=Enable' : '&isTurnOff=Disable'\n // LDUrl += `&caseType=${this.caseType}`\n // LDUrl += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable'\n // LDUrl += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable'\n // if (this.paymentLibComponent.bspaymentdcn) {\n // this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n // this.router.onSameUrlNavigation = 'reload';\n // this.router.navigateByUrl(`/payment-history/${this.ccdCaseNumber}?view=fee-summary&selectedOption=${this.option}&paymentGroupRef=${this.paymentGroupRef}&dcn=${this.paymentLibComponent.bspaymentdcn}${LDUrl}`);\n \n // }else {\n // this.gotoCasetransationPage();\n // }\n // }\n\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n this.cd.detectChanges();\n }\n );\n }\n\n processRefund() {\n this.errorMessage = '';\n this.isConfirmationBtnDisabled = true;\n if( this.isRefundRemission) {\n this.retroRemission = true;\n }\n if (this.remissionReference === undefined || this.remissionReference === '') {\n this.remissionReference = this.remission.remission_reference;\n }\n const requestBody = new PostIssueRefundRetroRemission(this.remissionReference);\n \n this.paymentViewService.postRefundRetroRemission(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'refundconfirmationpage';\n this.refundReference = JSON.parse(response).refund_reference;\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n })\n }\n\n // Issue Refund changes\n\n gotoIssueRefundConfirmation(payment: IPayment) {\n this.paymentLibComponent.iscancelClicked = false;\n this.errorMessage = '';\n this.refundReason = this.remissionForm.controls['refundReason'].value === null ? this.remissionForm.controls['refundDDReason'].value : this.remissionForm.controls['refundReason'].value;\n if(!this.refundReason) {\n this.refundHasError = true;\n } else if(this.selectedRefundReason.includes('Other') && (this.remissionForm.controls['reason'].value == '' || this.remissionForm.controls['reason'].value == null)) {\n this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n } else if (this.selectedRefundReason.includes('Other') && this.remissionForm.controls['reason'].value !== '') {\n this.refundHasError = false;\n this.refundReason += '-' + this.remissionForm.controls['reason'].value;\n this.selectedRefundReason = this.remissionForm.controls['reason'].value;\n if ( this.isFromRefundListPage ) {\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n } else {\n this.viewCompStatus = '';\n this.viewStatus = 'checkissuerefundpage';\n }\n \n } else {\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n } else {\n this.viewCompStatus = '';\n this.viewStatus = 'checkissuerefundpage';\n }\n \n }\n }\n\n gotoIssueRefundPage() {\n this.errorMessage = '';\n this.viewCompStatus = 'issuerefund';\n this.viewStatus = '';\n this.isRefundRemission = true;\n this.errorMessage = false;\n this.refundHasError = false;\n this.isReasonEmpty = false;\n }\n\n changeIssueRefundReason() {\n // this.remissionForm.controls['refundReason'].setValue('Duplicate payment');\n this.errorMessage = '';\n this.refundHasError = false;\n this.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 // const requestBody = new IssueRefundRequest(this.payment.reference,'RR004-Retro remission',this.payment.amount);\n \n this.paymentViewService.postRefundsReason(requestBody).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.viewCompStatus = '';\n this.viewStatus = 'retrorefundconfirmationpage';\n this.refundReference =JSON.parse(response).refund_reference;\n if(JSON.parse(response).refund_amount) {\n this.refundAmount = JSON.parse(response).refund_amount;\n }\n }\n },\n (error: any) => {\n this.errorMessage = error;\n this.isConfirmationBtnDisabled = false;\n });\n }\n\n selectRadioButton(key, value) {\n localStorage.setItem(\"myradio\", key);\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundDDReason'].setValue('Select a different reason', {onlySelf: true});\n // remissionctrls['refundDDReason'].reset();\n remissionctrls['reason'].reset();\n this.isRefundReasonsSelected = true;\n this.errorMessage = false;\n this.isReasonEmpty = false;\n this.showReasonText = false;\n this.refundHasError = false;\n this.selectedRefundReason = key;\n if(this.selectedRefundReason.includes('Other')) {\n this.showReasonText = true;\n this.refundHasError = false;\n this.refundReason = key;\n }\n }\n\n selectchange(args) {\n const remissionctrls=this.remissionForm.controls;\n remissionctrls['refundReason'].reset();\n remissionctrls['reason'].reset();\n this.isRefundReasonsSelected = false;\n this.showReasonText = false;\n this.refundHasError = false;\n this.selectedRefundReason = args.target.options[args.target.options.selectedIndex].id;\n 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() {\n event.preventDefault();\n this.viewStatus = 'main'\n this.paymentLibComponent.viewName = 'case-transactions';\n this.OrderslistService.setisFromServiceRequestPage(true);\n this.OrderslistService.setnavigationPage('servicerequestpage');\n }\n\n gotoCasetransationPage() {\n if (this.isFromServiceRequestPage) {\n this.paymentLibComponent.isFromRefundStatusPage = false;\n this. gotoServiceRequestPage();\n }\n if ( this.isFromRefundListPage ) {\n this.paymentLibComponent.iscancelClicked = true;\n this.refundListReason.emit({reason: this.selectedRefundReason, code: this.refundReason});\n this.paymentLibComponent.isFromRefundStatusPage = true;\n } \n if(!this.paymentLibComponent.isFromRefundStatusPage) {\n if(this.payment) {\n this.OrderslistService.setpaymentPageView({method: this.payment.method,payment_group_reference: this.paymentGroupRef, reference:this.payment.reference});\n \n }\n if (this.isFromServiceRequestPage) { \n this.OrderslistService.setnavigationPage('servicerequestpage');\n } else {\n this.OrderslistService.setnavigationPage('paymentdetailspage');\n }\n\n \n this.errorMessage = '';\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.ISTURNOFF = this.isTurnOff;\n this.paymentLibComponent.ISNEWPCIPALOFF = this.isNewPcipalOff;\n this.paymentLibComponent.ISOLDPCIPALOFF = this.isOldPcipalOff;\n this.paymentLibComponent.isFromServiceRequestPage = true; \n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n\n let partUrl = this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.isStrategicFixEnable ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.caseType}`;\n partUrl += this.paymentLibComponent.ISNEWPCIPALOFF ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.paymentLibComponent.ISOLDPCIPALOFF ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n if(this.isFromPaymentDetailPage) {\n partUrl += this.paymentLibComponent.isFromPaymentDetailPage\n }\n\n const url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=true&selectedOption=${this.option}${partUrl}`;\n this.router.routeReuseStrategy.shouldReuseRoute = () => false;\n this.router.onSameUrlNavigation = 'reload';\n this.router.navigateByUrl(url);\n } else {\n this.paymentLibComponent.viewName === 'refundstatuslist';\n this.paymentLibComponent.isFromRefundStatusPage = true;\n }\n\n }\n\n goToServiceRequestPage() {\n this.paymentLibComponent.viewName\n }\n getFormattedCurrency(currency:number){\n if(currency.toString().includes(\".\")){\n return currency\n }\n return currency.toString().concat(\".00\");\n }\n // continueRemission(){\n // this.resetRemissionForm([false, false, false, false, false], 'All');\n // const remissionctrls=this.remissionForm.controls,\n // isRemissionLessThanFee = this.fee.calculated_amount > remissionctrls.amount.value; \n // if (this.remissionForm.dirty && this.remissionForm.valid && isRemissionLessThanFee) {\n // this.viewCompStatus = '';\n // this.viewStatus = \"processretroremissonpage\";\n // }else {\n\n // if(remissionctrls['remissionCode'].value == '' ) {\n // this.resetRemissionForm([true, false, false, false, false], 'remissionCode');\n // }\n // if(remissionctrls['remissionCode'].value != '' && remissionctrls['remissionCode'].invalid ) {\n // this.resetRemissionForm([false, true, false, false, false], 'remissionCode');\n // }\n // if(remissionctrls['amount'].value == '' ) {\n // this.resetRemissionForm([false, false, true, false, false], 'amount');\n // }\n // if(remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid ) {\n // this.resetRemissionForm([false, true, false, true, false], 'amount');\n // }\n // if(remissionctrls['reason'].value == '') {\n // this.resetRemissionForm([false, false, false, true, false, true], 'reason');\n // }\n // if(remissionctrls.amount.valid && !isRemissionLessThanFee){\n // this.resetRemissionForm([false, false, false, false, true], 'amount');\n // }\n \n // }\n \n // }\n\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'ccdHyphens'\n})\nexport class CcdHyphensPipe implements PipeTransform {\n constructor() {}\n transform(value: any, args?: any): any {\n const pattern = /^([0-9]{4})+([0-9]{4})+([0-9]{4})+([0-9]{4})$/;\n if ( value.match(pattern)) {\n return value.replace(pattern,'$1-$2-$3-$4') \n }\n return value;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'capitalize'\n})\nexport class CapitalizePipe implements PipeTransform {\n constructor() { }\n transform(s: any, args?: any): any {\n return s && s[0].toUpperCase() + s.slice(1) || \"\";\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n@Pipe({\n name: 'keyValue'\n})\nexport class keyValuePipe implements PipeTransform {\n constructor() {}\n transform(input: any): any {\n let keys = [];\n for (let key in input) {\n if (input.hasOwnProperty(key)) {\n keys.push({ key: key, value: input[key]});\n }\n }\n return keys;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\nimport { DomSanitizer, SafeHtml } from '@angular/platform-browser';\n\n@Pipe({ name: 'sanitizeHtml' })\nexport class SanitizeHtmlPipe implements PipeTransform {\n constructor(private sanitizer: DomSanitizer) {}\n transform(value: any): SafeHtml {\n return this.sanitizer.bypassSecurityTrustHtml(value);\n }\n}\n","import { Injectable } from '@angular/core';\nimport * as FileSaver from 'file-saver';\nimport * as XLSX from 'xlsx';\nimport * as XLSXStyle from 'xlsx-style';\n\n\nconst EXCEL_TYPE = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8';\nconst EXCEL_EXTENSION = '.xlsx';\n\n@Injectable()\nexport class XlFileService {\n\n constructor() { }\n\n public exportAsExcelFile(json: any[], excelFileName: string): void {\n let worksheet: XLSX.WorkSheet; \n let workbook: XLSX.WorkBook; \n\n if(excelFileName.match('Data_Loss')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['loss_resp','payment_asset_dcn','env_ref','env_item','resp_service_id','resp_service_name','date_banked','bgc_batch','payment_method','amount']});\n worksheet = this.setDataLossReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Unprocessed')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','exception_ref','ccd_ref','date_banked','bgc_batch','payment_asset_dcn','env_ref','env_item','payment_method','amount']});\n worksheet = this.setUnprocessedReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else if(excelFileName.match('Processed_Unallocated')!== null){\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','allocation_status','receiving_office','allocation_reason','ccd_exception_reference','ccd_case_reference','payment_asset_dcn','env_ref','env_item','date_banked','bgc_batch','payment_method','amount']});\n worksheet = this.setProcessedUnallocatedReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n } else {\n worksheet = XLSX.utils.json_to_sheet(json,{header:['resp_service_id','resp_service_name','surplus_shortfall','balance','payment_amount','ccd_case_reference', 'ccd_exception_reference', 'processed_date', 'reason', 'explanation', 'user_name']});\n worksheet = this.setShortFallReportHeaders(worksheet);\n worksheet = this.autoFitColumns(worksheet,json);\n }\n workbook = { Sheets: { 'data': worksheet }, SheetNames: ['data'] };\n const excelBuffer: any = XLSX.write(workbook, { bookType: 'xlsx', type: 'array' });\n this.saveAsExcelFile(excelBuffer, excelFileName);\n }\n\n\nprivate autoFitColumns (worksheet: XLSX.WorkSheet,json:any) : XLSX.WorkSheet {\n let objectMaxLength = []; \n let ColWidth = [];\n let obj = <any>Object;\n for (let i = 0; i < json.length; i++) {\n let value = obj.values(json[i]);\n let key = obj.keys(json[i]);\n for (let j = 0; j < value.length; j++) {\n if(value[j] === null){\n value[j] = '';\n }\n objectMaxLength[j] =\n key[j].length >= value[j].length\n ? key[j].length+2\n : value[j].length+1;\n if( value[j].length === undefined){\n objectMaxLength[j] = key[j].length+2;\n }\n ColWidth.push({'width': +objectMaxLength[j]});\n }\n }\n worksheet['!cols'] = ColWidth;\n return worksheet;\n}\n\n\nprivate setDataLossReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Loss_Resp\";\n worksheet.B1.v = \"Payment_Asset_DCN\";\n worksheet.C1.v = \"Envelope_Ref\";\n worksheet.D1.v = \"Envelope_Item\";\n worksheet.E1.v = \"Resp_Service ID\";\n worksheet.F1.v = \"Resp_Service Name\";\n worksheet.G1.v = \"Date_Banked\";\n worksheet.H1.v = \"BGC_Batch\";\n worksheet.I1.v = \"Payment_Method\";\n worksheet.J1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setUnprocessedReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Exception_Ref\";\n worksheet.D1.v = \"CCD_Ref\";\n worksheet.E1.v = \"Date_Banked\";\n worksheet.F1.v = \"BGC_Batch\";\n worksheet.G1.v = \"Payment_Asset_DCN\";\n worksheet.H1.v = \"Envelope_Ref\";\n worksheet.I1.v = \"Envelope_Item\";\n worksheet.J1.v = \"Payment_Method\";\n worksheet.K1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setProcessedUnallocatedReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Allocation_Status\";\n worksheet.D1.v = \"Receiving_Office\";\n worksheet.E1.v = \"Allocation_Reason\";\n worksheet.F1.v = \"CCD_Exception_Ref\";\n worksheet.G1.v = \"CCD_Case_Ref\";\n worksheet.H1.v = \"Payment_Asset_DCN\";\n worksheet.I1.v = \"Envelope_Ref\";\n worksheet.J1.v = \"Envelope_Item\";\n worksheet.K1.v = \"Date_Banked\";\n worksheet.L1.v = \"BGC_Batch\";\n worksheet.M1.v = \"Payment_Method\";\n worksheet.N1.v = \"Amount\";\n return worksheet;\n}\n\nprivate setShortFallReportHeaders (worksheet: XLSX.WorkSheet): XLSX.WorkSheet {\n worksheet.A1.v = \"Resp_Service ID\";\n worksheet.B1.v = \"Resp_Service Name\";\n worksheet.C1.v = \"Surplus_Shortfall\";\n worksheet.D1.v = \"Balance\";\n worksheet.E1.v = \"Payment_Amount\";\n worksheet.F1.v = \"CCD_Case_Ref\";\n worksheet.G1.v = \"Exception_Ref\";\n worksheet.H1.v = \"Processed_Date\";\n worksheet.I1.v = \"Reason\";\n worksheet.J1.v = \"Explanation\";\n worksheet.K1.v = \"Updated Name\";\n return worksheet;\n}\n\nprivate saveAsExcelFile(buffer: any, fileName: string): void {\n const data: Blob = new Blob([buffer], {\n type: EXCEL_TYPE\n });\n FileSaver.saveAs(data, fileName + EXCEL_EXTENSION);\n }\n}\n","import { Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormGroup, FormControl } from '@angular/forms';\nimport { formatDate } from \"@angular/common\";\nimport {IPaymentGroup} from '../../interfaces/IPaymentGroup';\nimport { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';\nimport { ErrorHandlerService } from '../../services/shared/error-handler.service';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport {XlFileService} from '../../services/xl-file/xl-file.service';\n\n@Component({\n selector: 'ccpay-reports',\n templateUrl: './reports.component.html',\n styleUrls: ['./reports.component.scss']\n})\nexport class ReportsComponent implements OnInit {\n reportsForm: FormGroup;\n startDate: string;\n endDate: string;\n ccdCaseNumber: string;\n isDownLoadButtondisabled:Boolean = false;\n isStartDateLesthanEndDate: Boolean = false;\n isDateRangeBetnWeek: Boolean = false;\n errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n paymentGroups: IPaymentGroup[] = [];\n\n constructor(\n private xlFileService: XlFileService,\n private errorHandlerService: ErrorHandlerService,\n private formBuilder: FormBuilder,\n private bulkScaningPaymentService: BulkScaningPaymentService,\n private paymentViewService: PaymentViewService) { }\n \n\n ngOnInit() {\n this.fromValidation();\n\n }\n\n getToday(): string {\n return new Date().toISOString().split('T')[0];\n }\n\n getSelectedFromDate(): void {\n this.validateDates(this.reportsForm.get('selectedreport').value);\n }\n\n validateDates(reportName){\n const selectedStartDate = this.tranformDate(this.reportsForm.get('startDate').value),\n selectedEndDate = this.tranformDate(this.reportsForm.get('endDate').value);\n const isDateRangeMoreThanWeek = (<any>new Date(selectedStartDate) - <any>new Date(selectedEndDate))/(1000 * 3600 * -24) > 7;\n if(new Date(selectedStartDate) > new Date(selectedEndDate) && selectedEndDate !== ''){\n this.reportsForm.get('startDate').setValue('');\n this.isDateRangeBetnWeek = false;\n this.isStartDateLesthanEndDate = true;\n } else if(reportName && reportName ==='SURPLUS_AND_SHORTFALL' && isDateRangeMoreThanWeek ) {\n this.isDateRangeBetnWeek = true;\n this.isStartDateLesthanEndDate = false;\n } else {\n this.isDateRangeBetnWeek = false;\n this.isStartDateLesthanEndDate = false;\n }\n\n }\n\n fromValidation() {\n this.reportsForm = this.formBuilder.group({\n selectedreport: new FormControl('') ,\n startDate: new FormControl(''),\n endDate: new FormControl('') \n });\n}\n\ndownloadReport(){\n this.isDownLoadButtondisabled = true;\n const dataLossRptDefault = [{loss_resp:'',payment_asset_dcn:'',env_ref:'',env_item:'',resp_service_id:'',resp_service_name:'',date_banked:'',bgc_batch:'',payment_method:'',amount:''}],\n unProcessedRptDefault = [{resp_service_id:'',resp_service_name:'',exception_ref:'',ccd_ref:'',date_banked:'',bgc_batch:'',payment_asset_dcn:'',env_ref:'',env_item:'',payment_method:'',amount:''}],\n processedUnallocated =[{resp_service_id:'',resp_service_name:'',allocation_status:'',receiving_office:'',allocation_reason:'',ccd_exception_ref:'',ccd_case_ref:'',payment_asset_dcn:'',env_ref:'',env_item:'',date_banked:'',bgc_batch:'',payment_method:'',amount:'',updated_by:''}],\n shortFallsRptDefault = [{resp_service_id:'',resp_service_name:'',surplus_shortfall:'',balance:'',payment_amount:'',ccd_case_reference:'',ccd_exception_reference:'',processed_date:'', reason:'', explanation:'', user_name:''}],\n selectedReportName = this.reportsForm.get('selectedreport').value,\n selectedStartDate = this.tranformDate(this.reportsForm.get('startDate').value),\n selectedEndDate = this.tranformDate(this.reportsForm.get('endDate').value);\n\n if(selectedReportName === 'PROCESSED_UNALLOCATED' || selectedReportName === 'SURPLUS_AND_SHORTFALL' ){\n this.paymentViewService.downloadSelectedReport(selectedReportName,selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n const result = JSON.parse(response);\n let res= {data: this.applyDateFormat(result)};\n if(res['data'].length === 0 && selectedReportName === 'PROCESSED_UNALLOCATED' ){\n res.data= processedUnallocated;\n } else if(res['data'].length === 0 && selectedReportName === 'SURPLUS_AND_SHORTFALL' ) {\n res.data= shortFallsRptDefault;\n } \n if(result['data'].length > 0) {\n for( var i=0; i< res['data'].length; i++) {\n if(res['data'][i][\"payment_asset_dcn\"] !== undefined) {\n res['data'][i]['env_ref'] = res['data'][i][\"payment_asset_dcn\"].substr(0,13);\n res['data'][i]['env_item'] = res['data'][i][\"payment_asset_dcn\"].substr(13,21);\n }\n if(res['data'][i][\"amount\"] !== undefined) {\n res['data'][i]['amount'] = this.convertToFloatValue(res['data'][i]['amount']);\n }\n if(res['data'][i][\"balance\"] !== undefined) {\n res['data'][i]['balance'] = this.convertToFloatValue(res['data'][i][\"balance\"]);\n }\n if(res['data'][i][\"payment_amount\"] !== undefined) {\n res['data'][i]['payment_amount'] = this.convertToFloatValue(res['data'][i]['payment_amount']);\n }\n }\n } \n this.isDownLoadButtondisabled = false;\n this.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate));\n },\n (error: any) => {\n this.isDownLoadButtondisabled = false;\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n })\n } else {\n this.bulkScaningPaymentService.downloadSelectedReport(selectedReportName,selectedStartDate,selectedEndDate).subscribe(\n response => {\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(false);\n const result = JSON.parse(response);\n let res = {data: this.applyDateFormat(result)};\n if(res['data'].length === 0 && selectedReportName === 'DATA_LOSS' ){\n res.data= dataLossRptDefault;\n } else if(res['data'].length === 0 && selectedReportName === 'UNPROCESSED'){\n res.data = unProcessedRptDefault;\n }\n if(result['data'].length > 0) {\n for( var i=0; i< res['data'].length; i++) {\n if(res['data'][i][\"amount\"] !== undefined) {\n res['data'][i]['amount'] = this.convertToFloatValue(res['data'][i]['amount']);\n }\n if(res['data'][i][\"payment_asset_dcn\"] !== undefined) {\n res['data'][i]['env_ref'] = res['data'][i][\"payment_asset_dcn\"].substr(0,13);\n res['data'][i]['env_item'] = res['data'][i][\"payment_asset_dcn\"].substr(13,21);\n }\n }\n }\n this.isDownLoadButtondisabled = false;\n this.xlFileService.exportAsExcelFile(res['data'], this.getFileName(this.reportsForm.get('selectedreport').value, selectedStartDate, selectedEndDate ));\n },\n (error: any) => {\n this.isDownLoadButtondisabled = false;\n this.errorMessage = this.errorHandlerService.getServerErrorMessage(true);\n })\n }\n }\n\n getFileName(selectedOption: string, startDate: string, endDate: string ) {\n const loc = 'en-US',\n stDt = formatDate(startDate, 'ddMMyy', loc),\n enDt = formatDate(endDate, 'ddMMyy', loc),\n now = new Date(),\n currentDate = formatDate(now, 'ddMMyy', loc),\n timestamp = `${currentDate}_${this.getTwodigit(now.getHours())}${this.getTwodigit(now.getMinutes())}${this.getTwodigit(now.getSeconds())}`,\n selectedOptionTxt = this.getCamelCaseString(selectedOption);\n \n return selectedOptionTxt+'_'+stDt+'_To_'+enDt+'_Run_'+ timestamp;\n } \n tranformDate(strDate: string) {\n let result = '';\n if (strDate) {\n let parts = strDate.split('-');\n result = `${parts[1]}/${parts[2]}/${parts[0]}`;\n }\n return result;\n }\n getTwodigit(input: number){\n return (\"0\" + input).slice(-2);\n }\n getCamelCaseString(selectedOption) {\n let result;\n switch(selectedOption) { \n case 'UNPROCESSED': { \n result = 'Unprocessed';\n break; \n } \n case 'DATA_LOSS': { \n result = 'Data_Loss';\n break; \n } \n case 'PROCESSED_UNALLOCATED': { \n result = 'Processed_Unallocated';\n break; \n } \n case 'SURPLUS_AND_SHORTFALL': { \n result = 'Surplus_Shortfall';\n break; \n } \n default: { \n result = selectedOption;\n break; \n } \n } \n return result;\n }\n applyDateFormat(res) {\n const fmt = 'dd/MM/yyyy',\n loc = 'en-US';\n return res['data'].map(value => {\n if (value['date_banked']) {\n value['date_banked'] = formatDate(value['date_banked'], fmt, loc);\n }\n return value;\n });\n }\n \n convertToFloatValue(amt) {\n return amt ? Number.parseFloat(amt).toFixed(2): '0.00';\n }\n}\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'ccpay-refunds',\n templateUrl: './refunds.component.html',\n styleUrls: ['./refunds.component.css']\n})\nexport class RefundsComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit() {\n }\n\n}\n","import {Component, ViewChild, Input, ChangeDetectorRef} from '@angular/core';\nimport {PaymentLibComponent} from '../../payment-lib.component';\nimport { MatTableDataSource} from '@angular/material/table';\nimport {MatSort } from '@angular/material/sort';\nimport {Sort } from '@angular/material/sort';\nimport {MatPaginator } from '@angular/material/paginator';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { THIS_EXPR } from '@angular/compiler/src/output/output_ast';\n\n@Component({\n selector: 'ccpay-table',\n templateUrl: './table.component.html',\n styleUrls: ['./table.component.css']\n})\nexport class TableComponent {\n @Input('DATASOURCE') DATASOURCE: any[];\n @Input('STATUS') STATUS: string;\n @Input('errorMessage') errorMessage: string;\n isApprovalFlow: boolean;\n \n // displayedColumns = ['ccdCaseNumber', 'refundReference', 'reason', 'createBy', 'updateDate', 'Action'];\n displayedColumns = ['ccd_case_number', 'refund_reference', 'reason', 'user_full_name', 'date_updated', 'Action'];\n dataSource: MatTableDataSource<any>;\n userLst;\n actualcount: number;\n count: number;\n refundList: IRefundList[];\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n\n constructor(\n private paymentLibComponent: PaymentLibComponent,\n private cdRef: ChangeDetectorRef,\n private OrderslistService: OrderslistService\n ) {}\n\n ngOnInit() { \n this.errorMessage = this.errorMessage;\n if(this.STATUS.toLowerCase() === 'sent for approval') {\n this.isApprovalFlow = true;\n } else {\n this.isApprovalFlow = false;\n }\n this.refundList = this.DATASOURCE;\n this.dataSource = new MatTableDataSource(this.refundList);\n this.actualcount = this.dataSource.data.length;\n if( this.refundList !== undefined) {\n this.userLst = this.refundList.reduce((r,{user_full_name}) => (r[user_full_name]='', r) , {});\n this.userLst = Object.keys(this.userLst);\n }\n }\n /**\n * Set the paginator and sort after the view init since this component will\n * be able to query its view for the initialized paginator and sort.\n */\n ngAfterViewInit() {\n // this.dataSource.sortingDataAccessor = (item, property) => {\n // switch(property) {\n // case 'ccdCaseNumber': return item.ccdCaseNumber;\n // case 'createBy': return item.createBy;\n // case 'updateDate': return item.updateDate;\n // case 'refundReference': return item.refundReference;\n // default: return item[property];\n // }\n // };\n // // this.dataSource.sortingDataAccessor = ((data: any, sortHeaderId: string) => {\n // // let toReturn: any;\n // // if (sortHeaderId === 'updateDate')\n // // toReturn = data[sortHeaderId];\n // // else\n // // toReturn = data.location[sortHeaderId];\n // // if (typeof toReturn === 'string')\n // // toReturn = toReturn.toLowerCase();\n // // return toReturn;\n // // });\n\n // // this.dataSource.sort = this.sort;\n // // console.log('one');\n // // console.log(this.dataSource);\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\n applyFilter(filterValue: string) {\n filterValue = filterValue.trim(); // Remove whitespace\n filterValue = filterValue.toLowerCase(); // Datasource defaults to lowercase matches\n this.dataSource.filter = filterValue;\n }\n\n selectchange(args){ \n this.dataSource.filter = args.target.value;\n this.actualcount = this.dataSource.data.length;\n } \n goToRefundProcessComponent(refundReference: string, refundDate: IRefundList ) {\n this.paymentLibComponent.refundlistsource = refundDate;\n this.paymentLibComponent.refundReference = refundReference;\n this.paymentLibComponent.viewName = 'process-refund';\n }\n\n goToRefundViewComponent(refundReference: string, refundData: IRefundList ) {\n this.OrderslistService.setRefundView(refundData);\n this.paymentLibComponent.viewName='refundstatuslist';\n this.paymentLibComponent.CCD_CASE_NUMBER = refundData.ccd_case_number;\n this.paymentLibComponent.isRefundStatusView = true;\n this.paymentLibComponent.isCallFromRefundList = true;\n }\n}\n","export class IResubmitRefundRequest {\n refund_reason: string;\n amount: number;\n \n \n constructor(refund_reason : string, amount: number) {\n this.refund_reason= refund_reason;\n this.amount = amount;\n \n } \n }\n ","import { Component, OnInit, Input } from '@angular/core';\nimport { RefundsService } from '../../services/refunds/refunds.service';\nimport { FormBuilder, FormGroup, Validators, FormControl, RequiredValidator } from '@angular/forms';\nimport { IRefundList } from '../../interfaces/IRefundList';\nimport { PaymentViewService } from '../../services/payment-view/payment-view.service';\nimport { Router } from '@angular/router';\nimport { OrderslistService } from '../../services/orderslist.service';\nimport { IRefundReasons } from '../../interfaces/IRefundReasons';\nimport { IRefundStatus } from '../../interfaces/IRefundStatus';\nimport { IResubmitRefundRequest } from '../../interfaces/IResubmitRefundRequest';\nimport { PaymentLibComponent } from '../../payment-lib.component';\nconst BS_ENABLE_FLAG = 'bulk-scan-enabling-fe';\n\n@Component({\n selector: 'ccpay-refund-status',\n templateUrl: './refund-status.component.html',\n styleUrls: ['./refund-status.component.css']\n})\nexport class RefundStatusComponent implements OnInit {\n @Input('LOGGEDINUSERROLES') LOGGEDINUSERROLES: string[] = [];\n @Input() isOldPcipalOff: boolean;\n @Input() isNewPcipalOff: boolean;\n @Input() ccdCaseNumber: string;\n @Input() isTurnOff: boolean;\n refundStatusForm: FormGroup;\n selectedRefundReason: string;\n rejectedRefundList: IRefundList[] = [];\n approvalStatus = 'sent for approval';\n rejectStatus = 'sent back';\n errorMessage = null;\n viewName: string;\n refundReason: string;\n refundlist: IRefundList;\n bsPaymentDcnNumber: string;\n isCallFromRefundList: boolean;\n refundButtonState: string = '';\n isAmountEmpty: boolean = false;\n isReasonEmpty: boolean = false;\n amountHasError: boolean = false;\n isRemissionLessThanFeeError: boolean = false;\n refundHasError: boolean = false;\n refundReasons: any[] = [];\n refundStatusHistories: IRefundStatus[];\n refundReference: string;\n refundAmount: string;\n refundCode: string;\n isRefundBtnDisabled: boolean = true;\n oldRefundReason: string;\n refundreason: string;\n allowedRolesToAccessRefund = ['payments-refund-approver', 'payments-refund'];\n navigationpage: string;\n\n constructor(private formBuilder: FormBuilder,\n private refundService: RefundsService,\n private paymentLibComponent: PaymentLibComponent,\n private paymentViewService: PaymentViewService,\n private router: Router,\n private OrderslistService: OrderslistService) { }\n\n ngOnInit() {\n this.resetRemissionForm([false, false, false, false], 'All');\n this.bsPaymentDcnNumber = this.paymentLibComponent.bspaymentdcn;\n this.isCallFromRefundList = this.paymentLibComponent.isCallFromRefundList;\n // if(this.paymentLibComponent.isFromRefundStatusPage) {\n // this.viewName = 'reviewandsubmitview';\n // }\n if (this.paymentLibComponent.isRefundStatusView) {\n this.viewName = 'refundview';\n this.OrderslistService.getRefundView().subscribe((data) => this.refundlist = data);\n this.OrderslistService.getCCDCaseNumberforRefund.subscribe((data) => this.ccdCaseNumber = data);\n } else {\n this.viewName = 'refundstatuslist';\n this.refundService.getRefundStatusList(this.ccdCaseNumber).subscribe(\n refundList => {\n this.rejectedRefundList = refundList['data']['refund_list'];\n }\n ),\n (error: any) => {\n this.errorMessage = error;\n };\n }\n \n\n this.refundStatusForm = this.formBuilder.group({\n amount: new FormControl('', Validators.compose([\n Validators.required,\n Validators.pattern('^[0-9]+(\\\\.[0-9]{2})?$')\n ])),\n refundReason: new FormControl('', Validators.compose([Validators.required])),\n reason: new FormControl()\n });\n\n this.getRefundsStatusHistoryList();\n \n this.allowedRolesToAccessRefund.forEach((role) => {\n if (this.LOGGEDINUSERROLES.indexOf(role) !== -1) {\n this.refundButtonState = this.refundlist.refund_status.name;\n }\n });\n }\n\n getRefundsStatusHistoryList() {\n this.refundService.getRefundStatusHistory(this.refundlist.refund_reference).subscribe(\n statusHistoryList => {\n this.refundStatusHistories = statusHistoryList['data'];\n }\n ),\n (error: any) => {\n this.errorMessage = error;\n }; \n }\n\n goToRefundView(refundlist: IRefundList,navigationpage: string) {\n this.OrderslistService.setRefundView(refundlist);\n this.OrderslistService.setCCDCaseNumber(this.ccdCaseNumber);\n this.paymentLibComponent.viewName = 'refundstatuslist';\n this.paymentLibComponent.isRefundStatusView = true;\n this.refundlist = refundlist;\n this.OrderslistService.setnavigationPage(navigationpage);\n }\n\n loadCaseTransactionPage() {\n this.paymentLibComponent.isRefundStatusView = false;\n this.paymentLibComponent.TAKEPAYMENT = true;\n this.paymentLibComponent.viewName = 'case-transactions';\n this.paymentViewService.getBSfeature().subscribe(\n features => {\n let result = JSON.parse(features).filter(feature => feature.uid === BS_ENABLE_FLAG);\n this.paymentLibComponent.ISBSENABLE = result[0] ? result[0].enable : false;\n },\n err => {\n this.paymentLibComponent.ISBSENABLE = false;\n }\n );\n\n let partUrl = `selectedOption=${this.paymentLibComponent.SELECTED_OPTION}`;\n partUrl += this.bsPaymentDcnNumber ? `&dcn=${this.bsPaymentDcnNumber}` : '';\n partUrl += this.paymentLibComponent.ISBSENABLE ? '&isBulkScanning=Enable' : '&isBulkScanning=Disable';\n partUrl += this.paymentLibComponent.ISTURNOFF ? '&isTurnOff=Enable' : '&isTurnOff=Disable';\n partUrl += this.paymentLibComponent.ISSFENABLE ? '&isStFixEnable=Enable' : '&isStFixEnable=Disable';\n partUrl += `&caseType=${this.paymentLibComponent.CASETYPE}`;\n partUrl += this.isNewPcipalOff ? '&isNewPcipalOff=Enable' : '&isNewPcipalOff=Disable';\n partUrl += this.isOldPcipalOff ? '&isOldPcipalOff=Enable' : '&isOldPcipalOff=Disable';\n let url = `/payment-history/${this.ccdCaseNumber}?view=case-transactions&takePayment=true&${partUrl}`;\n this.router.navigateByUrl(url);\n }\n\n loadRefundListPage() {\n this.OrderslistService.getnavigationPageValue().subscribe((data) => this.navigationpage = data);\n if(this.navigationpage === 'casetransactions') {\n this.loadCaseTransactionPage();\n } else {\n this.paymentLibComponent.viewName = 'refund-list';\n }\n }\n\n gotoReviewDetailsPage() {\n event.preventDefault();\n this.errorMessage = false;\n this.paymentLibComponent.isRefundStatusView = true;\n this.ngOnInit();\n // this.viewName='refundview';\n // this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;\n // this.paymentLibComponent.isRefundStatusView = true;\n // this.paymentLibComponent.isCallFromRefundList = true;\n }\n\n gotoReviewAndReSubmitPage() {\n this.viewName = 'reviewandsubmitview';\n this.oldRefundReason = this.refundlist.reason;\n this.refundreason = this.refundStatusHistories.filter(data => data.status==='sentback')[0].notes;\n this.refundService.getRefundReasons().subscribe(\n refundReasons => {\n this.refundReasons = refundReasons['data'];\n });\n }\n gotoRefundReasonPage() {\n this.isRefundBtnDisabled = false;\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.errorMessage = false;\n this.viewName = 'issuerefund';\n }\n\n gotoAmountPage() {\n this.isRefundBtnDisabled = false;\n this.ccdCaseNumber = this.paymentLibComponent.CCD_CASE_NUMBER;\n this.paymentLibComponent.isFromRefundStatusPage = true;\n this.viewName ='processretroremissonpage';\n }\n\n goToReviewAndSubmitView() {\n const remissionctrls = this.refundStatusForm.controls\n if (this.refundStatusForm.dirty) {\n if (remissionctrls['amount'].value == '') {\n this.resetRemissionForm([true, false, false, false], 'amount');\n }\n else if (remissionctrls['amount'].value != '' && remissionctrls['amount'].invalid) {\n this.resetRemissionForm([false, true, false, false], 'amount');\n }\n else if (remissionctrls['reason'].value == '') {\n this.resetRemissionForm([false, false, false, true], 'reason');\n } else {\n this.refundlist.reason = remissionctrls['reason'].value;\n this.viewName = 'reviewandsubmitview';\n }\n }\n\n }\n\n resetRemissionForm(val, field) {\n if (field === 'All') {\n this.isAmountEmpty = val[0];\n this.amountHasError = val[1];\n this.isRemissionLessThanFeeError = val[2];\n this.isReasonEmpty = val[3];\n } else if (field === 'amount' || field === 'All') {\n this.isAmountEmpty = val[0];\n this.amountHasError = val[1];\n this.isRemissionLessThanFeeError = val[2];\n } else if (field === 'reason' || field === 'All') {\n this.isReasonEmpty = val[3];\n }\n }\n\n selectRadioButton(key, value) {\n this.refundHasError = false;\n this.selectedRefundReason = key;\n if (key === 'Other') {\n this.refundHasError = false;\n this.refundReason = key;\n }\n }\n\n getRefundListReason(refundListReason: any) {\n if(this.paymentLibComponent.isFromRefundStatusPage && !this.paymentLibComponent.iscancelClicked) {\n this.refundlist.reason = refundListReason.reason;\n this.refundCode = refundListReason.code;\n } else {\n this.isRefundBtnDisabled = true;\n }\n this.viewName = 'reviewandsubmitview';\n this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;\n }\n\n getRefundAmount(amount: number) {\n if(this.paymentLibComponent.isFromRefundStatusPage && !this.paymentLibComponent.iscancelClicked) {\n if (amount > 0) {\n this.refundlist.amount = amount;\n }\n } else {\n this.isRefundBtnDisabled = true;\n }\n this.viewName = 'reviewandsubmitview';\n this.paymentLibComponent.CCD_CASE_NUMBER = this.ccdCaseNumber;\n }\n\n gotoReviewRefundConfirmationPage() {\n if( this.oldRefundReason === this.refundlist.reason) {\n this.refundCode = '';\n }\n const resubmitRequest = new IResubmitRefundRequest(this.refundCode,this.refundlist.amount);\n this.refundService.patchResubmitRefund(resubmitRequest,this.refundlist.refund_reference).subscribe(\n response => {\n if (JSON.parse(response)) {\n this.refundReference = JSON.parse(response).data.refund_reference;\n this.refundAmount = JSON.parse(response).data.refund_amount;\n this.viewName = 'reviewrefundconfirmationpage';\n }\n },\n (error: any) => {\n this.errorMessage = error;\n }\n );\n \n }\n\n goToRefundProcessComponent(refundReference: string, refundList: IRefundList ) {\n this.paymentLibComponent.refundlistsource = refundList;\n this.paymentLibComponent.refundReference = refundReference;\n this.paymentLibComponent.viewName = 'process-refund';\n }\n\n}\n","import { NgModule } from '@angular/core';\nimport { HttpClientModule } from '@angular/common/http';\nimport { CommonModule } from '@angular/common';\n\nimport { PaymentListComponent } from './components/payment-list/payment-list.component';\nimport { PaymentViewComponent } from './components/payment-view/payment-view.component';\nimport { ProcessRefundComponent } from './components/process-refund/process-refund.component';\nimport { RefundListComponent } from './components/refund-list/refund-list.component';\n\nimport { CardDetailsComponent } from './components/card-details/card-details.component';\nimport { PageNotFoundComponent } from './components/page-not-found.component';\nimport { PaymentLibComponent } from './payment-lib.component';\nimport { StatusHistoryComponent } from './components/status-history/status-history.component';\nimport { PbaDetailsComponent } from './components/pba-details/pba-details.component';\nimport { LoggerService } from './services/shared/logger/logger.service';\nimport { ConsoleLoggerService } from './services/shared/logger/console-logger.service';\nimport { WebComponentHttpClient } from './services/shared/httpclient/webcomponent.http.client';\nimport { CaseTransactionsComponent } from './components/case-transactions/case-transactions.component';\nimport { FeeSummaryComponent } from './components/fee-summary/fee-summary.component';\nimport { ErrorBannerComponent } from './components/error-banner/error-banner.component';\nimport { MarkUnidentifiedPaymentComponent } from './components/mark-unidentified-payment/mark-unidentified-payment.component';\nimport { MarkUnsolicitedPaymentComponent } from './components/mark-unsolicited-payment/mark-unsolicited-payment.component';\nimport { UnprocessedPaymentsComponent } from './components/unprocessed-payments/unprocessed-payments.component';\nimport { ProcessedPaymentsComponent } from './components/processed-payments/processed-payments.component';\nimport { AllocatePaymentsComponent } from './components/allocate-payments/allocate-payments.component';\nimport { AddRemissionComponent } from './components/add-remission/add-remission.component';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { CcdHyphensPipe } from './pipes/ccd-hyphens.pipe';\nimport { CapitalizePipe } from './pipes/capitalize.pipe';\nimport { keyValuePipe } from './pipes/key-value.pipe';\nimport { SanitizeHtmlPipe } from './pipes/sanitize-html.pipe';\nimport { ReportsComponent } from './components/reports/reports.component';\nimport { XlFileService } from './services/xl-file/xl-file.service';\nimport { RefundsComponent } from './components/refunds/refunds.component';\nimport { TableComponent } from './components/table/table.component';\nimport { MatTableModule } from '@angular/material/table';\nimport { MatPaginatorModule } from '@angular/material/paginator';\nimport { MatSortModule } from '@angular/material/sort';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\nimport { BrowserAnimationsModule } from '@angular/platform-browser/animations';\nimport { NoopAnimationsModule } from '@angular/platform-browser/animations';\nimport { RefundStatusComponent } from './components/refund-status/refund-status.component';\n\n@NgModule({\n imports: [\n CommonModule,\n HttpClientModule,\n FormsModule,\n ReactiveFormsModule,\n MatTableModule,\n MatPaginatorModule,\n MatSortModule,\n MatFormFieldModule,\n MatInputModule,\n BrowserAnimationsModule,\n NoopAnimationsModule\n ],\n declarations: [\n PaymentLibComponent,\n PaymentListComponent,\n PaymentViewComponent,\n ProcessRefundComponent,\n RefundListComponent,\n CardDetailsComponent,\n PageNotFoundComponent,\n StatusHistoryComponent,\n MarkUnidentifiedPaymentComponent,\n MarkUnsolicitedPaymentComponent,\n UnprocessedPaymentsComponent,\n ProcessedPaymentsComponent,\n AllocatePaymentsComponent,\n PbaDetailsComponent,\n CaseTransactionsComponent,\n FeeSummaryComponent,\n AddRemissionComponent,\n CcdHyphensPipe,\n CapitalizePipe,\n keyValuePipe,\n SanitizeHtmlPipe,\n ReportsComponent,\n ErrorBannerComponent,\n RefundsComponent,\n TableComponent,\n RefundStatusComponent\n ],\n exports: [PaymentLibComponent],\n providers: [\n { provide: LoggerService, useClass: ConsoleLoggerService },\n XlFileService,\n WebComponentHttpClient\n ]\n})\n\nexport class PaymentLibModule { }\n"],"names":["PaymentLibService","prototype","setApiRootUrl","apiRoot","this","API_ROOT","getApiRootUrl","setBulkScanApiRootUrl","bulkscanapiRoot","BULKSCAN_API_ROOT","getBulkScanApiRootUrl","setRefundndsApiRootUrl","refundsapiRoot","REFUNDS_API_ROOT","getRefundsApiRootUrl","Injectable","args","providedIn","PaymentLibComponent","ngOnInit","paymentLibService","PAYMENT_GROUP_REF","paymentGroupReference","DCN_NUMBER","bspaymentdcn","REFUNDLIST","VIEW","viewName","Component","selector","template","Input","unProcessedPaymentServiceId","unProcessedPayment","ErrorHandlerService","handleError","err","errorMessage","error","Error","message","status","JSON","parse","split","messsage","undefined","_throw","getServerErrorMessage","isErrorExist","title","body","showError","LoggerService","invokeConsoleMethod","type","PaymentListService","getPaymentByCcdCaseNumber","ccdCaseNumber","paymentMethod","logger","info","http","get","withCredentials","pipe","catchError","errorHandlerService","HttpClient","PaymentListComponent","_this","paymentListService","paymentLibComponent","CCD_CASE_NUMBER","PAYMENT_METHOD","subscribe","payments","loadPaymentViewComponent","paymentReference","__values","o","s","Symbol","iterator","m","i","call","length","next","value","done","TypeError","WebComponentHttpClient","post","url","options","opts","addHeaders","put","delete","patch","csrfToken","meta","getTag","headers","forEach","element","content","HttpHeaders","responseType","Meta","PaymentViewService","getPaymentDetails","getPaymentGroupDetails","getApportionPaymentDetails","postBSPayments","https","postBSUnidentifiedPayments","postBSUnsolicitedPayments","postBSAllocationPayments","postPaymentGroupWithRemissions","feeId","deleteFeeFromPaymentGroup","postPaymentToPayHub","paymentGroupRef","postPaymentAntennaToPayHub","downloadSelectedReport","reportName","startDate","endDate","getBSfeature","getSiteID","getPartyDetails","caseNumber","setOrdersList","orderLevelFees","ordersList","Object","assign","getOrdersList","postRefundsReason","postPaymentGroupWithRetroRemissions","postRefundRetroRemission","BehaviorSubject","OrderslistService","setRefundView","refundList","refundView","getRefundView","setCaseType","caseType","getCaseType","setCCDCaseNumber","getCCDCaseNumber","setFeeExists","feeExists","getFeeExists","setisFromServiceRequestPage","isFromServiceRequestPage","getisFromServiceRequestPages","setOrderRefId","OrderRefId","getSelectedOrderRefId","setnavigationPage","navigationPage","getnavigationPageValue","setpaymentPageView","paymentpageList","paymentPageView","getpaymentPageView","getcaseType","asObservable","getFeeExist","getCCDCaseNumberforRefund","getisFromServiceRequestPage","getOrderRefId","getnavigationPage","PaymentViewComponent","selectedOption","SELECTED_OPTION","dcnNumber","isTurnOff","ISTURNOFF","viewStatus","paymentViewService","paymentGroup","fees","fee","isRemissionsMatch","remissions","rem","fee_code","code","push","filter","paymentGroupObj","includes","paymentAllocation","payment_allocation","isStatusAllocated","allocation_status","console","log","defineProperty","method","channel","goToPaymentList","goToCaseTransationPage","event","preventDefault","features","result","feature","uid","ISBSENABLE","enable","addRemission","reference","payment","isFromPaymentDetailPage","isRefundRemission","cd","detectChanges","issueRefund","paymentgrp","getRemissionByFeeCode","feeCode","remissions_1","tslib_1.__values","remissions_1_1","remission","chkIssueRefundBtnEnable","check4AllowedRoles2AccessRefund","allowFurtherAccessAfter4Days","toLocaleLowerCase","isIssueRefunfBtnEnable","chkForPBAPayment","chkForAddRemission","_b","_c","ChangeDetectorRef","isAddFeeBtnEnabled","allowedRolesToAccessRefund","some","role","LOGGEDINUSERROLES","indexOf","tmp4DayAgo","Date","setDate","getDate","date_created","RefundsService","getRefundReasons","getRefundRejectReasons","getRefundActions","refundReference","patchRefundActions","reviewerAction","getRefundList","refundstatus","selfexclusive","getRefundStatusHistory","getRefundStatusList","getUserDetails","postIssueRefund","patchResubmitRefund","refund_reference","ProcessRefundComponent","refundActionList","getErrorMessage","statusCode","processRefundForm","formBuilder","group","refundActionField","FormControl","Validators","compose","required","refundRejectReasonField","sendMeBackField","minLength","maxLength","pattern","enterReasonField","checkRefundActions","isConfirmButtondisabled","isSendMeBackClicked","isRejectClicked","isOtherClicked","refundRejectReasonList","processRefundSubmit","processRefundRequest","resetForm","controls","processFormError","errors","dirty","valid","reason","response","isSuccesspageEnable","successMsg","invalid","minlength","actualLength","maxlength","errorMsg","vals","field","refundActionsHasError","refundRejectReasonHasError","isReasonFieldEmpty","isReasonFieldInvalid","reasonFieldMinHasError","reasonFieldMaxHasError","isReasonEmpty","isReasonInvalid","FormBuilder","sendmeback","RefundListComponent","userLst","isAuthorized","isApproveTableVisible","tableApprovalHeader","tableRejectedHeader","refundService","approvalStatus","submittedRefundList","rejectStatus","rejectedRefundList","isRejectTableVisible","CardDetailsService","getCardDetails","CardDetailsComponent","cardDetailsService","cardDetails","pageTitle","PageNotFoundComponent","StatusHistoryService","getPaymentStatusesByReference","StatusHistoryComponent","statusHistoryService","statuses","PbaDetailsComponent","noop","ConsoleLoggerService","apply","CaseTransactionsService","getPaymentGroups","BulkScaningPaymentService","getBSPaymentsByCCD","getBSPaymentsByDCN","dcn","postBSAllocatePayment","paymentRef","postBSPaymentStrategic","postBSWoPGStrategic","patchBSChangeStatus","calculateOutStandingAmount","feesTotal","paymentsTotal","remissionsTotal","calculated_amount","toUpperCase","amount","hwf_amount","removeUnwantedString","input","replaceText","replace","CaseTransactionsComponent","data","paymentView","navigationpage","payment_group_reference","goToPayementView","isGrpOutstandingAmtPositive","CASETYPE","EXC_REFERENCE","excReference","takePayment","TAKEPAYMENT","servicerequest","SERVICEREQUEST","serviveRequestValue","isBulkScanEnable","isNewPcipalOff","ISNEWPCIPALOFF","isOldPcipalOff","ISOLDPCIPALOFF","isStrategicFixEnable","ISSFENABLE","caseTransactionsService","paymentGroups","calculateAmounts","calculateOrderFeesAmounts","totalRefundAmount","calculateRefundAmount","cpoDetails","setDefaults","isCPODown","isAnyFeeGroupAvilable","lsCcdNumber","router","navigateByUrl","orderRef","goToOrderViewDetailSection","checkForExceptionRecord","totalPayments","totalRemissions","totalNonOffPayments","totalFees","getAllocationStatus","bulkScaningPaymentService","recordData","exception_record_reference","ccd_reference","isExceptionRecord","case_reference","ccd_case_number","resetOrderVariables","orderFeesTotal","orderRemissionTotal","orderTotalPayments","orderPendingPayments","orderStatus","orderAddBtnEnable","orderRefId","orderTotalFees","orderParty","orderCCDEvent","orderCreated","orderReferenceObj","orderDetail","x","redirectToOrderFeeSearchPage","orderef","nonOffLinePayment","a","b","amount_due","clAmountDue","net_amount","allocationLen","nonPayments","allPayments","remisison","totalRefundAmount_1","isFeeAmountZero_1","grpOutstandingAmount","isFeeRecordsExist","isNewPaymentGroup_1","index","isHistoricGroupAvailable","getGroupOutstandingAmount","redirectToFeeSearchPage","addRefundForRemission","remissionFeeAmt","redirectToremissionPage","redirectToReportsPage","loadFeeSummaryPage","goToPaymentViewComponent","selectedUnprocessedFeeEvent","unprocessedRecordId","isUnprocessedRecordSelected","getUnprocessedFeeCount","unProcessedRecordCount","unprocessedRecordCount","calculateAmountDue","confirmRemoveFee","isRemoveBtnDisabled","cancelRemoval","removeFee","success","window","location","reload","isCheckAmountdueExist","amountDue","isPBA","chkIsRefundRemissionBtnEnable","isRefundRemissionBtnEnable","Router","ls.get","isAddRemissionEnable","orderRemissionDetails","isAddRemissionBtnEnabled","PaymentToPayhubRequest","currency","description","provider","toFixed","case_type","PayhubAntennaRequest","BS_ENABLE_FLAG","FeeSummaryComponent","bsPaymentDcnNumber","platForm","getUnassignedPaymentlist","getPaymentGroup","unassignedPayments","service","responsible_service_id","upPaymentErrorMessage","currentFee","isPaymentExist","isRemissionsExist","totalAfterRemission","isFeeAmountZero","outStandingAmount","loadCaseTransactionPage","partUrl","cancelRemission","page","isConfirmationBtnDisabled","requestBody","antennaReqBody","go","payhubHtml","isBackButtonEnable","href","goToAllocatePage","Location","ErrorBannerComponent","UnidentifiedPaymentsRequest","payment_reference","unidentified_reason","payment_allocation_status","name","AllocatePaymentRequest","unAllocatedPayment","exceptionRecord","allocatedRequest","banked_date","date_banked","exception_record","document_control_number","dcn_reference","external_provider","giro_slip_no","bgc_reference","payer_name","payment_channel","payment_status","payment_method","payment_allocation_dto","MarkUnidentifiedPaymentComponent","getUnassignedPayment","markPaymentUnidentifiedForm","investicationDetail","unassignedRecord","siteID","beCcdNumber","beExceptionNumber","exceptionReference","ccdReference","trimUnderscore","saveAndContinue","investicationField","formerror","investigationComment","val","isInvesticationDetailEmpty","investicationDetailHasError","investicationDetailMinHasError","investicationDetailMaxHasError","confirmPayments","postStrategicBody","res1","res2","response2","reqBody","res3","gotoCasetransationPage","user_id","res","cancelMarkUnidentifiedPayments","UnsolicitedPaymentsRequest","responsible_office","responsible_person","email_id","receiving_office","receiving_email_address","sending_email_address","MarkUnsolicitedPaymentComponent","siteids","isContinueButtondisabled","siteIDList","scrollTo","markPaymentUnsolicitedForm","responsibleOffice","responsiblePerson","emailId","selectedSiteId","reasonField","officeIdField","reasonHasError","reasonMinHasError","reasonMaxHasError","isResponsibleOfficeEmpty","responsibleOfficeHasError","cancelMarkUnsolicitedPayments","checkingFormValue","setValue","formFields","valueExists","hasOwnProperty","selectchange","target","selectedSiteName","selectedIndex","text","UnprocessedPaymentsComponent","isNewpcipaloff","isOldpcipaloff","isStFixEnable","FEE_RECORDS_EXISTS","setValuesForUnassignedRecord","emit","unassignedRecordList","unassignedRecordListLength","serviceId","isExceptionCase","unprocessedPaymentSelectEvent","formatUnassignedRecordId","ID","recordId","loadUnsolicitedPage","selectedRecordReference","validateButtons","resetButtons","isAllocateToExistingFeebtnEnabled","isMarkAsUnidentifiedbtnEnabled","isAllocatedToNewFeebtnEnabled","PAYMENTREF","IS_OS_AMT_AVAILABLE","unprocessedPaymentUnSelectEvent","showDetailRow","obj","unassignedRecordSelectedList","Output","EventEmitter","isRecordExist","ProcessedPaymentsComponent","redirectToPaymentViewPage","IAllocationPaymentsRequest","explanation","userName","user_name","AllocatePaymentsComponent","overUnderPaymentForm","moreDetails","fstCon","scndCn","selectedPaymentGroup","gotoSummaryPage","cancelAllocatePayment","confirmAllocatePayement","paymentDetailsField","paymentFormError","userNameField","isEmptyCondtion","paymentReason","paymentExplanation","isOtherOptionSelected","isRemainingAmountGtZero","isRemainingAmountLtZero","otherPaymentExplanation","finalServiceCall","paymentReasonHasError","paymentExplanationHasError","isPaymentDetailsEmpty","isPaymentDetailsInvalid","paymentDetailsMinHasError","paymentDetailsMaxHasError","isUserNameEmpty","isUserNameInvalid","GroupOutstandingAmount","remainingToBeAssigned","isMoreDetailsBoxHide","reset","paymentSectionLabel","feedbackUrlLabel","remainingAmount","afterFeeAllocateOutstanding","amountForAllocation","selectRadioButton","key","OrderListSelectEvent","reasonList","overPayment","hwfReward","wrongFee","notIssueCase","otherDeduction","shortFall","helpWithFee","other","explanationList","referRefund","noRefund","noCase","holdCase","heldCase","refund","duplicate","humanerror","caseWithdrawn","AddRemissionRequest","hwf_reference","AddRetroRemissionRequest","PostRefundRetroRemission","refund_reason","PostIssueRefundRetroRemission","remissionReference","AddRemissionComponent","default","volume","remessionPayment","isPaymentSuccess","option","remissionForm","remissionCode","refundReason","refundDDReason","onlySelf","viewCompStatus","refundReasons","recently_used","commonRefundReasons","isFromRefundListPage","resetRemissionForm","remissionctrls","isRemissionLessThanFee","setErrors","confirmRemission","newNetAmount","remissionAmount","decodeURIComponent","trim","id","LDUrl","routeReuseStrategy","shouldReuseRoute","onSameUrlNavigation","isRemissionCodeEmpty","remissionCodeHasError","isAmountEmpty","amountHasError","isRemissionLessThanFeeError","addRemissionCode","gotoAddRetroRemissionCodePage","iscancelClicked","refundListAmount","isFromRefundStatusPage","refundListReason","selectedRefundReason","selectedValue","gotoCheckRetroRemissionPage","gotoProcessRetroRemissionPage","confirmRetroRemission","retroRemission","remissionamt","isRemissionApplied","remission_reference","processRefund","refundAmount","refund_amount","gotoIssueRefundConfirmation","refundHasError","gotoIssueRefundPage","changeIssueRefundReason","confirmIssueRefund","confirmRetroRefund","localStorage","setItem","isRefundReasonsSelected","showReasonText","reasonLength","gotoServiceRequestPage","goToServiceRequestPage","getFormattedCurrency","toString","concat","hasErrors","CcdHyphensPipe","transform","match","Pipe","CapitalizePipe","slice","keyValuePipe","keys","SanitizeHtmlPipe","sanitizer","bypassSecurityTrustHtml","DomSanitizer","XlFileService","exportAsExcelFile","json","excelFileName","worksheet","XLSX.utils","json_to_sheet","header","setDataLossReportHeaders","setUnprocessedReportHeaders","setProcessedUnallocatedReportHeaders","setShortFallReportHeaders","autoFitColumns","excelBuffer","XLSX.write","Sheets","SheetNames","bookType","saveAsExcelFile","objectMaxLength","ColWidth","values","j","width","A1","v","B1","C1","D1","E1","F1","G1","H1","I1","J1","K1","L1","M1","N1","buffer","fileName","Blob","FileSaver.saveAs","ReportsComponent","fromValidation","getToday","toISOString","getSelectedFromDate","validateDates","reportsForm","selectedStartDate","tranformDate","selectedEndDate","isDateRangeMoreThanWeek","isDateRangeBetnWeek","isStartDateLesthanEndDate","selectedreport","downloadReport","isDownLoadButtondisabled","dataLossRptDefault","loss_resp","payment_asset_dcn","env_ref","env_item","resp_service_id","resp_service_name","bgc_batch","unProcessedRptDefault","exception_ref","ccd_ref","processedUnallocated","allocation_reason","ccd_exception_ref","ccd_case_ref","updated_by","shortFallsRptDefault","surplus_shortfall","balance","payment_amount","ccd_case_reference","ccd_exception_reference","processed_date","selectedReportName","applyDateFormat","substr","convertToFloatValue","xlFileService","getFileName","loc","stDt","formatDate","enDt","now","timestamp","getTwodigit","getHours","getMinutes","getSeconds","getCamelCaseString","strDate","parts","map","amt","Number","parseFloat","RefundsComponent","TableComponent","STATUS","toLowerCase","isApprovalFlow","DATASOURCE","dataSource","MatTableDataSource","actualcount","reduce","r","_a","user_full_name","ngAfterViewInit","sort","sortState","active","direction","sortChange","paginator","cdRef","applyFilter","filterValue","goToRefundProcessComponent","refundDate","refundlistsource","goToRefundViewComponent","refundData","isRefundStatusView","isCallFromRefundList","ViewChild","MatPaginator","MatSort","displayedColumns","IResubmitRefundRequest","RefundStatusComponent","refundlist","refundStatusForm","getRefundsStatusHistoryList","refundButtonState","refund_status","statusHistoryList","refundStatusHistories","goToRefundView","loadRefundListPage","gotoReviewDetailsPage","gotoReviewAndReSubmitPage","oldRefundReason","refundreason","notes","gotoRefundReasonPage","isRefundBtnDisabled","gotoAmountPage","goToReviewAndSubmitView","getRefundListReason","refundCode","getRefundAmount","gotoReviewRefundConfirmationPage","resubmitRequest","NgModule","imports","CommonModule","HttpClientModule","FormsModule","ReactiveFormsModule","MatTableModule","MatPaginatorModule","MatSortModule","MatFormFieldModule","MatInputModule","BrowserAnimationsModule","NoopAnimationsModule","declarations","exports","providers","provide","useClass","PaymentLibModule"],"mappings":"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"}