@hmcts/ccpay-web-component 6.0.0-beta9 → 6.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/hmcts-ccpay-web-component.mjs +5 -0
- package/esm2022/lib/components/add-remission/add-remission.component.mjs +1189 -0
- package/esm2022/lib/components/allocate-payments/allocate-payments.component.mjs +407 -0
- package/esm2022/lib/components/card-details/card-details.component.mjs +32 -0
- package/esm2022/lib/components/case-transactions/case-transactions.component.mjs +798 -0
- package/esm2022/lib/components/contact-details/contact-details.component.mjs +338 -0
- package/esm2022/lib/components/error-banner/error-banner.component.mjs +18 -0
- package/esm2022/lib/components/fee-summary/fee-summary.component.mjs +247 -0
- package/esm2022/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.mjs +195 -0
- package/esm2022/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.mjs +255 -0
- package/esm2022/lib/components/notification-preview/notification-preview.component.mjs +79 -0
- package/esm2022/lib/components/page-not-found.component.mjs +17 -0
- package/esm2022/lib/components/payment-list/payment-list.component.mjs +36 -0
- package/esm2022/lib/components/payment-view/payment-view.component.mjs +416 -0
- package/esm2022/lib/components/pba-details/pba-details.component.mjs +18 -0
- package/esm2022/lib/components/pba-payment/pba-payment.component.mjs +151 -0
- package/esm2022/lib/components/process-refund/process-refund.component.mjs +417 -0
- package/esm2022/lib/components/processed-payments/processed-payments.component.mjs +37 -0
- package/esm2022/lib/components/refund-list/refund-list.component.mjs +73 -0
- package/esm2022/lib/components/refund-status/refund-status.component.mjs +453 -0
- package/esm2022/lib/components/reports/reports.component.mjs +291 -0
- package/esm2022/lib/components/service-request/service-request.component.mjs +456 -0
- package/esm2022/lib/components/status-history/status-history.component.mjs +33 -0
- package/esm2022/lib/components/table/table.component.mjs +128 -0
- package/esm2022/lib/components/unprocessed-payments/unprocessed-payments.component.mjs +236 -0
- package/esm2022/lib/interfaces/AddRemissionRequest.mjs +17 -0
- package/esm2022/lib/interfaces/AddRetroRemissionRequest.mjs +9 -0
- package/esm2022/lib/interfaces/AllocatePaymentRequest.mjs +41 -0
- package/esm2022/lib/interfaces/IAllocationPaymentsRequest.mjs +20 -0
- package/esm2022/lib/interfaces/IBSPayments.mjs +2 -0
- package/esm2022/lib/interfaces/ICardDetails.mjs +2 -0
- package/esm2022/lib/interfaces/IFee.mjs +2 -0
- package/esm2022/lib/interfaces/INotificationPreview.mjs +2 -0
- package/esm2022/lib/interfaces/IOrderReferenceFee.mjs +2 -0
- package/esm2022/lib/interfaces/IPatchRefundAction.mjs +2 -0
- package/esm2022/lib/interfaces/IPayment.mjs +2 -0
- package/esm2022/lib/interfaces/IPaymentFailure.mjs +2 -0
- package/esm2022/lib/interfaces/IPaymentGroup.mjs +2 -0
- package/esm2022/lib/interfaces/IPaymentStatus.mjs +12 -0
- package/esm2022/lib/interfaces/IPaymentView.mjs +2 -0
- package/esm2022/lib/interfaces/IPayments.mjs +2 -0
- package/esm2022/lib/interfaces/IPutNotificationRequest.mjs +13 -0
- package/esm2022/lib/interfaces/IRefundAction.mjs +2 -0
- package/esm2022/lib/interfaces/IRefundContactDetails.mjs +2 -0
- package/esm2022/lib/interfaces/IRefundFee.mjs +2 -0
- package/esm2022/lib/interfaces/IRefundList.mjs +2 -0
- package/esm2022/lib/interfaces/IRefundReasons.mjs +2 -0
- package/esm2022/lib/interfaces/IRefundRejectReason.mjs +2 -0
- package/esm2022/lib/interfaces/IRefundStatus.mjs +2 -0
- package/esm2022/lib/interfaces/IRefundStatusHistory.mjs +2 -0
- package/esm2022/lib/interfaces/IRefundsNotifications.mjs +2 -0
- package/esm2022/lib/interfaces/IRemission.mjs +2 -0
- package/esm2022/lib/interfaces/IResubmitRefundRequest.mjs +13 -0
- package/esm2022/lib/interfaces/IStatusHistories.mjs +2 -0
- package/esm2022/lib/interfaces/IStatusHistory.mjs +2 -0
- package/esm2022/lib/interfaces/IserviceRequestCardPayment.mjs +11 -0
- package/esm2022/lib/interfaces/IserviceRequestPbaPayment.mjs +15 -0
- package/esm2022/lib/interfaces/IssueRefundRequest.mjs +11 -0
- package/esm2022/lib/interfaces/NotificationPreviewRequest.mjs +45 -0
- package/esm2022/lib/interfaces/PayhubAntennaRequest.mjs +12 -0
- package/esm2022/lib/interfaces/PaymentToPayhubRequest.mjs +15 -0
- package/esm2022/lib/interfaces/PostIssueRefundRetroRemission.mjs +9 -0
- package/esm2022/lib/interfaces/PostRefundRetroRemission.mjs +18 -0
- package/esm2022/lib/interfaces/RefundsRequest.mjs +9 -0
- package/esm2022/lib/interfaces/UnidentifiedPaymentsRequest.mjs +16 -0
- package/esm2022/lib/interfaces/UnsolicitedPaymentsRequest.mjs +22 -0
- package/esm2022/lib/payment-lib.component.mjs +288 -0
- package/esm2022/lib/payment-lib.module.mjs +187 -0
- package/esm2022/lib/payment-lib.service.mjs +49 -0
- package/esm2022/lib/pipes/capitalize.pipe.mjs +18 -0
- package/esm2022/lib/pipes/ccd-hyphens.pipe.mjs +22 -0
- package/esm2022/lib/pipes/key-value.pipe.mjs +23 -0
- package/esm2022/lib/pipes/sanitize-html.pipe.mjs +20 -0
- package/esm2022/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.mjs +87 -0
- package/esm2022/lib/services/card-details/card-details.service.mjs +39 -0
- package/esm2022/lib/services/case-transactions/case-transactions.service.mjs +39 -0
- package/esm2022/lib/services/notification/notification.service.mjs +70 -0
- package/esm2022/lib/services/orderslist.service.mjs +154 -0
- package/esm2022/lib/services/payment-list/payment-list.service.mjs +40 -0
- package/esm2022/lib/services/payment-view/payment-view.service.mjs +152 -0
- package/esm2022/lib/services/refunds/refunds.service.mjs +117 -0
- package/esm2022/lib/services/shared/error-handler.service.mjs +96 -0
- package/esm2022/lib/services/shared/httpclient/webcomponent.http.client.mjs +64 -0
- package/esm2022/lib/services/shared/logger/console-logger.service.mjs +43 -0
- package/esm2022/lib/services/shared/logger/logger.service.mjs +23 -0
- package/{esm2015/lib/services/status-history/status-history.service.js → esm2022/lib/services/status-history/status-history.service.mjs} +13 -51
- package/esm2022/lib/services/xl-file/xl-file.service.mjs +153 -0
- package/esm2022/public_api.mjs +7 -0
- package/fesm2022/hmcts-ccpay-web-component.mjs +7874 -0
- package/fesm2022/hmcts-ccpay-web-component.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/add-remission/add-remission.component.d.ts +59 -7
- package/lib/components/allocate-payments/allocate-payments.component.d.ts +5 -6
- package/lib/components/card-details/card-details.component.d.ts +4 -1
- package/lib/components/case-transactions/case-transactions.component.d.ts +9 -7
- package/lib/components/contact-details/contact-details.component.d.ts +52 -0
- package/lib/components/error-banner/error-banner.component.d.ts +3 -0
- package/lib/components/fee-summary/fee-summary.component.d.ts +4 -3
- package/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.d.ts +4 -1
- package/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.d.ts +4 -1
- package/lib/components/notification-preview/notification-preview.component.d.ts +30 -0
- package/lib/components/page-not-found.component.d.ts +3 -0
- package/lib/components/payment-list/payment-list.component.d.ts +4 -1
- package/lib/components/payment-view/payment-view.component.d.ts +46 -12
- package/lib/components/pba-details/pba-details.component.d.ts +3 -0
- package/lib/components/pba-payment/pba-payment.component.d.ts +9 -1
- package/lib/components/process-refund/process-refund.component.d.ts +22 -2
- package/lib/components/processed-payments/processed-payments.component.d.ts +3 -0
- package/lib/components/refund-list/refund-list.component.d.ts +3 -0
- package/lib/components/refund-status/refund-status.component.d.ts +50 -10
- package/lib/components/reports/reports.component.d.ts +10 -5
- package/lib/components/service-request/service-request.component.d.ts +42 -14
- package/lib/components/status-history/status-history.component.d.ts +4 -1
- package/lib/components/table/table.component.d.ts +5 -1
- package/lib/components/unprocessed-payments/unprocessed-payments.component.d.ts +4 -5
- package/lib/interfaces/IFee.d.ts +6 -0
- package/lib/interfaces/INotificationPreview.d.ts +27 -0
- package/lib/interfaces/IPayment.d.ts +3 -0
- package/lib/interfaces/IPaymentFailure.d.ts +13 -0
- package/lib/interfaces/IPutNotificationRequest.d.ts +6 -0
- package/lib/interfaces/IRefundContactDetails.d.ts +9 -0
- package/lib/interfaces/IRefundFee.d.ts +7 -0
- package/lib/interfaces/IRefundList.d.ts +5 -0
- package/lib/interfaces/IRefundsNotifications.d.ts +16 -0
- package/lib/interfaces/IRemission.d.ts +3 -0
- package/lib/interfaces/IResubmitRefundRequest.d.ts +5 -1
- package/lib/interfaces/IserviceRequestPbaPayment.d.ts +2 -1
- package/lib/interfaces/NotificationPreviewRequest.d.ts +24 -0
- package/lib/interfaces/PostIssueRefundRetroRemission.d.ts +3 -1
- package/lib/interfaces/PostRefundRetroRemission.d.ts +7 -1
- package/lib/payment-lib.component.d.ts +7 -5
- package/lib/payment-lib.module.d.ts +40 -0
- package/lib/payment-lib.service.d.ts +9 -3
- package/lib/pipes/capitalize.pipe.d.ts +3 -0
- package/lib/pipes/ccd-hyphens.pipe.d.ts +3 -0
- package/lib/pipes/key-value.pipe.d.ts +3 -0
- package/lib/pipes/sanitize-html.pipe.d.ts +3 -0
- package/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.d.ts +4 -1
- package/lib/services/card-details/card-details.service.d.ts +3 -0
- package/lib/services/case-transactions/case-transactions.service.d.ts +4 -1
- package/lib/services/notification/notification.service.d.ts +21 -0
- package/lib/services/orderslist.service.d.ts +3 -0
- package/lib/services/payment-list/payment-list.service.d.ts +3 -0
- package/lib/services/payment-view/payment-view.service.d.ts +6 -1
- package/lib/services/refunds/refunds.service.d.ts +6 -1
- package/lib/services/shared/error-handler.service.d.ts +5 -2
- package/lib/services/shared/httpclient/webcomponent.http.client.d.ts +3 -0
- package/lib/services/shared/logger/console-logger.service.d.ts +6 -3
- package/lib/services/shared/logger/logger.service.d.ts +3 -0
- package/lib/services/status-history/status-history.service.d.ts +3 -0
- package/lib/services/xl-file/xl-file.service.d.ts +4 -0
- package/package.json +18 -14
- package/bundles/hmcts-ccpay-web-component.umd.js +0 -9664
- package/bundles/hmcts-ccpay-web-component.umd.js.map +0 -1
- package/bundles/hmcts-ccpay-web-component.umd.min.js +0 -2
- package/bundles/hmcts-ccpay-web-component.umd.min.js.map +0 -1
- package/esm2015/hmcts-ccpay-web-component.js +0 -48
- package/esm2015/lib/components/add-remission/add-remission.component.js +0 -1083
- package/esm2015/lib/components/allocate-payments/allocate-payments.component.js +0 -692
- package/esm2015/lib/components/card-details/card-details.component.js +0 -71
- package/esm2015/lib/components/case-transactions/case-transactions.component.js +0 -1298
- package/esm2015/lib/components/error-banner/error-banner.component.js +0 -30
- package/esm2015/lib/components/fee-summary/fee-summary.component.js +0 -482
- package/esm2015/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.js +0 -342
- package/esm2015/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.js +0 -436
- package/esm2015/lib/components/page-not-found.component.js +0 -15
- package/esm2015/lib/components/payment-list/payment-list.component.js +0 -75
- package/esm2015/lib/components/payment-view/payment-view.component.js +0 -514
- package/esm2015/lib/components/pba-details/pba-details.component.js +0 -30
- package/esm2015/lib/components/pba-payment/pba-payment.component.js +0 -205
- package/esm2015/lib/components/process-refund/process-refund.component.js +0 -455
- package/esm2015/lib/components/processed-payments/processed-payments.component.js +0 -72
- package/esm2015/lib/components/refund-list/refund-list.component.js +0 -127
- package/esm2015/lib/components/refund-status/refund-status.component.js +0 -497
- package/esm2015/lib/components/reports/reports.component.js +0 -357
- package/esm2015/lib/components/service-request/service-request.component.js +0 -626
- package/esm2015/lib/components/status-history/status-history.component.js +0 -68
- package/esm2015/lib/components/table/table.component.js +0 -196
- package/esm2015/lib/components/unprocessed-payments/unprocessed-payments.component.js +0 -385
- package/esm2015/lib/interfaces/AddRemissionRequest.js +0 -37
- package/esm2015/lib/interfaces/AddRetroRemissionRequest.js +0 -21
- package/esm2015/lib/interfaces/AllocatePaymentRequest.js +0 -68
- package/esm2015/lib/interfaces/IAllocationPaymentsRequest.js +0 -39
- package/esm2015/lib/interfaces/IBSPayments.js +0 -45
- package/esm2015/lib/interfaces/ICardDetails.js +0 -21
- package/esm2015/lib/interfaces/IFee.js +0 -53
- package/esm2015/lib/interfaces/IOrderReferenceFee.js +0 -25
- package/esm2015/lib/interfaces/IPatchRefundAction.js +0 -15
- package/esm2015/lib/interfaces/IPayment.js +0 -65
- package/esm2015/lib/interfaces/IPaymentGroup.js +0 -19
- package/esm2015/lib/interfaces/IPaymentStatus.js +0 -27
- package/esm2015/lib/interfaces/IPaymentView.js +0 -17
- package/esm2015/lib/interfaces/IPayments.js +0 -13
- package/esm2015/lib/interfaces/IRefundAction.js +0 -15
- package/esm2015/lib/interfaces/IRefundList.js +0 -29
- package/esm2015/lib/interfaces/IRefundReasons.js +0 -19
- package/esm2015/lib/interfaces/IRefundRejectReason.js +0 -15
- package/esm2015/lib/interfaces/IRefundStatus.js +0 -23
- package/esm2015/lib/interfaces/IRefundStatusHistory.js +0 -15
- package/esm2015/lib/interfaces/IRemission.js +0 -25
- package/esm2015/lib/interfaces/IResubmitRefundRequest.js +0 -21
- package/esm2015/lib/interfaces/IStatusHistories.js +0 -19
- package/esm2015/lib/interfaces/IStatusHistory.js +0 -21
- package/esm2015/lib/interfaces/IserviceRequestCardPayment.js +0 -23
- package/esm2015/lib/interfaces/IserviceRequestPbaPayment.js +0 -28
- package/esm2015/lib/interfaces/IssueRefundRequest.js +0 -25
- package/esm2015/lib/interfaces/PayhubAntennaRequest.js +0 -28
- package/esm2015/lib/interfaces/PaymentToPayhubRequest.js +0 -37
- package/esm2015/lib/interfaces/PostIssueRefundRetroRemission.js +0 -17
- package/esm2015/lib/interfaces/PostRefundRetroRemission.js +0 -21
- package/esm2015/lib/interfaces/RefundsRequest.js +0 -21
- package/esm2015/lib/interfaces/UnidentifiedPaymentsRequest.js +0 -31
- package/esm2015/lib/interfaces/UnsolicitedPaymentsRequest.js +0 -43
- package/esm2015/lib/payment-lib.component.js +0 -275
- package/esm2015/lib/payment-lib.module.js +0 -99
- package/esm2015/lib/payment-lib.service.js +0 -80
- package/esm2015/lib/pipes/capitalize.pipe.js +0 -24
- package/esm2015/lib/pipes/ccd-hyphens.pipe.js +0 -29
- package/esm2015/lib/pipes/key-value.pipe.js +0 -30
- package/esm2015/lib/pipes/sanitize-html.pipe.js +0 -36
- package/esm2015/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.js +0 -180
- package/esm2015/lib/services/card-details/card-details.service.js +0 -76
- package/esm2015/lib/services/case-transactions/case-transactions.service.js +0 -76
- package/esm2015/lib/services/orderslist.service.js +0 -403
- package/esm2015/lib/services/payment-list/payment-list.service.js +0 -79
- package/esm2015/lib/services/payment-view/payment-view.service.js +0 -285
- package/esm2015/lib/services/refunds/refunds.service.js +0 -203
- package/esm2015/lib/services/shared/error-handler.service.js +0 -108
- package/esm2015/lib/services/shared/httpclient/webcomponent.http.client.js +0 -124
- package/esm2015/lib/services/shared/logger/console-logger.service.js +0 -67
- package/esm2015/lib/services/shared/logger/logger.service.js +0 -49
- package/esm2015/lib/services/xl-file/xl-file.service.js +0 -181
- package/esm2015/public_api.js +0 -11
- package/esm5/hmcts-ccpay-web-component.js +0 -48
- package/esm5/lib/components/add-remission/add-remission.component.js +0 -1168
- package/esm5/lib/components/allocate-payments/allocate-payments.component.js +0 -745
- package/esm5/lib/components/card-details/card-details.component.js +0 -77
- package/esm5/lib/components/case-transactions/case-transactions.component.js +0 -1443
- package/esm5/lib/components/error-banner/error-banner.component.js +0 -36
- package/esm5/lib/components/fee-summary/fee-summary.component.js +0 -542
- package/esm5/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.js +0 -371
- package/esm5/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.js +0 -474
- package/esm5/lib/components/page-not-found.component.js +0 -17
- package/esm5/lib/components/payment-list/payment-list.component.js +0 -83
- package/esm5/lib/components/payment-view/payment-view.component.js +0 -602
- package/esm5/lib/components/pba-details/pba-details.component.js +0 -36
- package/esm5/lib/components/pba-payment/pba-payment.component.js +0 -222
- package/esm5/lib/components/process-refund/process-refund.component.js +0 -536
- package/esm5/lib/components/processed-payments/processed-payments.component.js +0 -83
- package/esm5/lib/components/refund-list/refund-list.component.js +0 -130
- package/esm5/lib/components/refund-status/refund-status.component.js +0 -558
- package/esm5/lib/components/reports/reports.component.js +0 -398
- package/esm5/lib/components/service-request/service-request.component.js +0 -702
- package/esm5/lib/components/status-history/status-history.component.js +0 -70
- package/esm5/lib/components/table/table.component.js +0 -229
- package/esm5/lib/components/unprocessed-payments/unprocessed-payments.component.js +0 -434
- package/esm5/lib/interfaces/AddRemissionRequest.js +0 -32
- package/esm5/lib/interfaces/AddRetroRemissionRequest.js +0 -19
- package/esm5/lib/interfaces/AllocatePaymentRequest.js +0 -63
- package/esm5/lib/interfaces/IAllocationPaymentsRequest.js +0 -34
- package/esm5/lib/interfaces/IBSPayments.js +0 -45
- package/esm5/lib/interfaces/ICardDetails.js +0 -21
- package/esm5/lib/interfaces/IFee.js +0 -53
- package/esm5/lib/interfaces/IOrderReferenceFee.js +0 -25
- package/esm5/lib/interfaces/IPatchRefundAction.js +0 -15
- package/esm5/lib/interfaces/IPayment.js +0 -65
- package/esm5/lib/interfaces/IPaymentGroup.js +0 -19
- package/esm5/lib/interfaces/IPaymentStatus.js +0 -31
- package/esm5/lib/interfaces/IPaymentView.js +0 -17
- package/esm5/lib/interfaces/IPayments.js +0 -13
- package/esm5/lib/interfaces/IRefundAction.js +0 -15
- package/esm5/lib/interfaces/IRefundList.js +0 -29
- package/esm5/lib/interfaces/IRefundReasons.js +0 -19
- package/esm5/lib/interfaces/IRefundRejectReason.js +0 -15
- package/esm5/lib/interfaces/IRefundStatus.js +0 -23
- package/esm5/lib/interfaces/IRefundStatusHistory.js +0 -15
- package/esm5/lib/interfaces/IRemission.js +0 -25
- package/esm5/lib/interfaces/IResubmitRefundRequest.js +0 -19
- package/esm5/lib/interfaces/IStatusHistories.js +0 -19
- package/esm5/lib/interfaces/IStatusHistory.js +0 -21
- package/esm5/lib/interfaces/IserviceRequestCardPayment.js +0 -22
- package/esm5/lib/interfaces/IserviceRequestPbaPayment.js +0 -25
- package/esm5/lib/interfaces/IssueRefundRequest.js +0 -22
- package/esm5/lib/interfaces/PayhubAntennaRequest.js +0 -25
- package/esm5/lib/interfaces/PaymentToPayhubRequest.js +0 -34
- package/esm5/lib/interfaces/PostIssueRefundRetroRemission.js +0 -16
- package/esm5/lib/interfaces/PostRefundRetroRemission.js +0 -19
- package/esm5/lib/interfaces/RefundsRequest.js +0 -19
- package/esm5/lib/interfaces/UnidentifiedPaymentsRequest.js +0 -28
- package/esm5/lib/interfaces/UnsolicitedPaymentsRequest.js +0 -37
- package/esm5/lib/payment-lib.component.js +0 -244
- package/esm5/lib/payment-lib.module.js +0 -103
- package/esm5/lib/payment-lib.service.js +0 -111
- package/esm5/lib/pipes/capitalize.pipe.js +0 -32
- package/esm5/lib/pipes/ccd-hyphens.pipe.js +0 -37
- package/esm5/lib/pipes/key-value.pipe.js +0 -37
- package/esm5/lib/pipes/sanitize-html.pipe.js +0 -39
- package/esm5/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.js +0 -218
- package/esm5/lib/services/card-details/card-details.service.js +0 -76
- package/esm5/lib/services/case-transactions/case-transactions.service.js +0 -76
- package/esm5/lib/services/orderslist.service.js +0 -531
- package/esm5/lib/services/payment-list/payment-list.service.js +0 -80
- package/esm5/lib/services/payment-view/payment-view.service.js +0 -385
- package/esm5/lib/services/refunds/refunds.service.js +0 -243
- package/esm5/lib/services/shared/error-handler.service.js +0 -119
- package/esm5/lib/services/shared/httpclient/webcomponent.http.client.js +0 -154
- package/esm5/lib/services/shared/logger/console-logger.service.js +0 -88
- package/esm5/lib/services/shared/logger/logger.service.js +0 -68
- package/esm5/lib/services/status-history/status-history.service.js +0 -80
- package/esm5/lib/services/xl-file/xl-file.service.js +0 -221
- package/esm5/public_api.js +0 -11
- package/fesm2015/hmcts-ccpay-web-component.js +0 -8525
- package/fesm2015/hmcts-ccpay-web-component.js.map +0 -1
- package/fesm5/hmcts-ccpay-web-component.js +0 -9773
- package/fesm5/hmcts-ccpay-web-component.js.map +0 -1
- package/hmcts-ccpay-web-component.d.ts +0 -43
- package/hmcts-ccpay-web-component.metadata.json +0 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { PaymentViewService } from '../../services/payment-view/payment-view.service';
|
|
3
|
-
import { PaymentLibComponent } from '../../payment-lib.component';
|
|
3
|
+
import type { PaymentLibComponent } from '../../payment-lib.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class PbaPaymentComponent implements OnInit {
|
|
5
6
|
private paymentLibComponent;
|
|
6
7
|
private paymentViewService;
|
|
@@ -16,13 +17,20 @@ export declare class PbaPaymentComponent implements OnInit {
|
|
|
16
17
|
isGetPBAAccountSucceed: boolean;
|
|
17
18
|
selectedPbaAccount: string;
|
|
18
19
|
pbaAccountRef: string;
|
|
20
|
+
isPbaAccountSelected: boolean;
|
|
21
|
+
isCardPaymentSelected: boolean;
|
|
22
|
+
isPBADropdownSelected: boolean;
|
|
19
23
|
isContinueButtondisabled: boolean;
|
|
20
24
|
isPBAAccountPaymentSuccess: boolean;
|
|
21
25
|
pbaAccountrPaymentResult: any;
|
|
26
|
+
orgName: string;
|
|
22
27
|
constructor(paymentLibComponent: PaymentLibComponent, paymentViewService: PaymentViewService);
|
|
23
28
|
ngOnInit(): void;
|
|
24
29
|
selectpbaaccount(args: any): void;
|
|
25
30
|
saveAndContinue(): void;
|
|
26
31
|
cardPayment(): void;
|
|
32
|
+
selectPaymentMethod(type: string): void;
|
|
27
33
|
gotoCasetransationPage(): void;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PbaPaymentComponent, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PbaPaymentComponent, "ccpay-pba-payment", never, { "pbaPayOrderRef": { "alias": "pbaPayOrderRef"; "required": false; }; }, {}, never, never, false, never>;
|
|
28
36
|
}
|
|
@@ -3,14 +3,21 @@ import { FormBuilder, FormGroup } from '@angular/forms';
|
|
|
3
3
|
import { RefundsService } from '../../services/refunds/refunds.service';
|
|
4
4
|
import { IRefundAction } from '../../interfaces/IRefundAction';
|
|
5
5
|
import { IRefundList } from '../../interfaces/IRefundList';
|
|
6
|
+
import { IPayment } from '../../interfaces/IPayment';
|
|
6
7
|
import { IRefundRejectReason } from '../../interfaces/IRefundRejectReason';
|
|
7
8
|
import { OrderslistService } from '../../services/orderslist.service';
|
|
8
|
-
import {
|
|
9
|
+
import { NotificationService } from '../../services/notification/notification.service';
|
|
10
|
+
import { PaymentViewService } from '../../services/payment-view/payment-view.service';
|
|
11
|
+
import type { PaymentLibComponent } from '../../payment-lib.component';
|
|
9
12
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
13
|
+
import { INotificationPreview } from '../../interfaces/INotificationPreview';
|
|
14
|
+
import * as i0 from "@angular/core";
|
|
10
15
|
export declare class ProcessRefundComponent implements OnInit {
|
|
11
16
|
private RefundsService;
|
|
17
|
+
private paymentViewService;
|
|
12
18
|
private formBuilder;
|
|
13
19
|
private OrderslistService;
|
|
20
|
+
private notificationService;
|
|
14
21
|
private paymentLibComponent;
|
|
15
22
|
private router;
|
|
16
23
|
private activeRoute;
|
|
@@ -42,10 +49,17 @@ export declare class ProcessRefundComponent implements OnInit {
|
|
|
42
49
|
navigationpage: string;
|
|
43
50
|
ccdCaseNumber: string;
|
|
44
51
|
isFromRefundListPage: boolean;
|
|
52
|
+
cpoDetails: any;
|
|
53
|
+
isCPODown: boolean;
|
|
45
54
|
isConfirmButtondisabled: boolean;
|
|
46
|
-
|
|
55
|
+
paymentObj: IPayment;
|
|
56
|
+
templateInstructionType: string;
|
|
57
|
+
notificationPreview: boolean;
|
|
58
|
+
notificationPreviewObj: INotificationPreview;
|
|
59
|
+
constructor(RefundsService: RefundsService, paymentViewService: PaymentViewService, formBuilder: FormBuilder, OrderslistService: OrderslistService, notificationService: NotificationService, paymentLibComponent: PaymentLibComponent, router: Router, activeRoute: ActivatedRoute);
|
|
47
60
|
ngOnInit(): void;
|
|
48
61
|
checkRefundActions(code: string): void;
|
|
62
|
+
getNotificationPreviewObj(notificationPreviewObj: INotificationPreview): void;
|
|
49
63
|
processRefundSubmit(): void;
|
|
50
64
|
getErrorMessage(isErrorExist: any, status: any, errorMsg: any, err: any): {
|
|
51
65
|
title: string;
|
|
@@ -55,6 +69,12 @@ export declare class ProcessRefundComponent implements OnInit {
|
|
|
55
69
|
loadRefundListPage(): void;
|
|
56
70
|
loadRefundsHomePage(): void;
|
|
57
71
|
redirecttoRefundListPage(): void;
|
|
72
|
+
loadCaseTransactionPage(): void;
|
|
58
73
|
resetForm(vals: any, field: any): void;
|
|
59
74
|
goToCaseReview(): void;
|
|
75
|
+
getTemplateInstructionType(payment: IPayment, paymentReference: string): void;
|
|
76
|
+
showNotificationPreview(): void;
|
|
77
|
+
hideNotificationPreview(): void;
|
|
78
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProcessRefundComponent, never>;
|
|
79
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProcessRefundComponent, "ccpay-process-refund", never, { "refundReference": { "alias": "refundReference"; "required": false; }; "refundlistsource": { "alias": "refundlistsource"; "required": false; }; }, {}, never, never, false, never>;
|
|
60
80
|
}
|
|
@@ -2,6 +2,7 @@ import { OnInit, EventEmitter } from '@angular/core';
|
|
|
2
2
|
import { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';
|
|
3
3
|
import { IPayment } from '../../interfaces/IPayment';
|
|
4
4
|
import { Router } from '@angular/router';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class ProcessedPaymentsComponent implements OnInit {
|
|
6
7
|
private router;
|
|
7
8
|
private bulkScaningPaymentService;
|
|
@@ -11,4 +12,6 @@ export declare class ProcessedPaymentsComponent implements OnInit {
|
|
|
11
12
|
ngOnInit(): void;
|
|
12
13
|
trimUnderscore(method: string): string;
|
|
13
14
|
redirectToPaymentViewPage(paymentGroupReference: string, paymentReference: string, paymentMethod: string): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProcessedPaymentsComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProcessedPaymentsComponent, "ccpay-app-processed-payments", never, { "NONPAYMENTS": { "alias": "NONPAYMENTS"; "required": false; }; }, { "goToPaymentViewComponent": "goToPaymentViewComponent"; }, never, never, false, never>;
|
|
14
17
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { RefundsService } from '../../services/refunds/refunds.service';
|
|
3
3
|
import { IRefundList } from '../../interfaces/IRefundList';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class RefundListComponent implements OnInit {
|
|
5
6
|
private refundService;
|
|
6
7
|
USERID: string;
|
|
@@ -20,4 +21,6 @@ export declare class RefundListComponent implements OnInit {
|
|
|
20
21
|
isAuthorized: boolean;
|
|
21
22
|
userLst: any;
|
|
22
23
|
ngOnInit(): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RefundListComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RefundListComponent, "ccpay-refund-list", never, { "USERID": { "alias": "USERID"; "required": false; }; "LOGGEDINUSERROLES": { "alias": "LOGGEDINUSERROLES"; "required": false; }; "LOGGEDINUSEREMAIL": { "alias": "LOGGEDINUSEREMAIL"; "required": false; }; }, {}, never, never, false, never>;
|
|
23
26
|
}
|
|
@@ -1,27 +1,35 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { RefundsService } from '../../services/refunds/refunds.service';
|
|
3
|
+
import { NotificationService } from '../../services/notification/notification.service';
|
|
3
4
|
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
4
5
|
import { IRefundList } from '../../interfaces/IRefundList';
|
|
5
|
-
import {
|
|
6
|
-
import { Router } from '@angular/router';
|
|
6
|
+
import { IRefundsNotifications } from '../../interfaces/IRefundsNotifications';
|
|
7
7
|
import { OrderslistService } from '../../services/orderslist.service';
|
|
8
|
+
import { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';
|
|
8
9
|
import { IRefundStatus } from '../../interfaces/IRefundStatus';
|
|
9
|
-
import { PaymentLibComponent } from '../../payment-lib.component';
|
|
10
|
+
import type { PaymentLibComponent } from '../../payment-lib.component';
|
|
11
|
+
import { PaymentViewService } from '../../services/payment-view/payment-view.service';
|
|
12
|
+
import { IPayment } from '../../interfaces/IPayment';
|
|
13
|
+
import { IFee } from '../../interfaces/IFee';
|
|
14
|
+
import { IRefundFee } from '../../interfaces/IRefundFee';
|
|
15
|
+
import * as i0 from "@angular/core";
|
|
10
16
|
export declare class RefundStatusComponent implements OnInit {
|
|
11
17
|
private formBuilder;
|
|
12
18
|
private refundService;
|
|
19
|
+
private notificationService;
|
|
13
20
|
private paymentLibComponent;
|
|
14
|
-
private paymentViewService;
|
|
15
|
-
private router;
|
|
16
21
|
private OrderslistService;
|
|
22
|
+
private paymentViewService;
|
|
17
23
|
LOGGEDINUSERROLES: string[];
|
|
18
|
-
|
|
19
|
-
isNewPcipalOff: boolean;
|
|
24
|
+
API_ROOT: string;
|
|
20
25
|
ccdCaseNumber: string;
|
|
21
26
|
isTurnOff: boolean;
|
|
27
|
+
orderParty: string;
|
|
22
28
|
refundStatusForm: FormGroup;
|
|
23
29
|
selectedRefundReason: string;
|
|
24
30
|
rejectedRefundList: IRefundList[];
|
|
31
|
+
notificationList: any;
|
|
32
|
+
notification: any;
|
|
25
33
|
approvalStatus: string;
|
|
26
34
|
rejectStatus: string;
|
|
27
35
|
errorMessage: any;
|
|
@@ -38,33 +46,65 @@ export declare class RefundStatusComponent implements OnInit {
|
|
|
38
46
|
refundHasError: boolean;
|
|
39
47
|
refundReasons: any[];
|
|
40
48
|
refundStatusHistories: IRefundStatus[];
|
|
49
|
+
refundNotifications: IRefundStatus[];
|
|
50
|
+
isResendOperationSuccess: boolean;
|
|
51
|
+
isEditDetailsClicked: boolean;
|
|
52
|
+
isEditAddressDeatilsClicked: boolean;
|
|
53
|
+
addressDetails: IRefundContactDetails;
|
|
41
54
|
refundReference: string;
|
|
42
55
|
refundAmount: string;
|
|
43
56
|
refundCode: string;
|
|
44
57
|
isRefundBtnDisabled: boolean;
|
|
58
|
+
isFromPayBubble: boolean;
|
|
45
59
|
oldRefundReason: string;
|
|
46
60
|
refundreason: string;
|
|
47
61
|
navigationpage: string;
|
|
48
62
|
isLastUpdatedByCurrentUser: boolean;
|
|
49
63
|
isProcessRefund: boolean;
|
|
50
64
|
changedAmount: number;
|
|
65
|
+
isRemissionsMatch: boolean;
|
|
66
|
+
payment: IPayment;
|
|
67
|
+
changeRefundReason: string;
|
|
68
|
+
fees: IFee[];
|
|
69
|
+
refundFees: IRefundFee[];
|
|
70
|
+
paymentObj: IPayment;
|
|
71
|
+
templateInstructionType: string;
|
|
72
|
+
notificationSentViewIndex: number;
|
|
73
|
+
notificationPreview: boolean;
|
|
74
|
+
notificationSentView: boolean;
|
|
51
75
|
allowedRolesToAccessRefund: string[];
|
|
52
|
-
constructor(formBuilder: FormBuilder, refundService: RefundsService,
|
|
76
|
+
constructor(formBuilder: FormBuilder, refundService: RefundsService, notificationService: NotificationService, paymentLibComponent: PaymentLibComponent, OrderslistService: OrderslistService, paymentViewService: PaymentViewService);
|
|
53
77
|
ngOnInit(): void;
|
|
54
|
-
check4AllowedRoles2AccessRefund: () => boolean;
|
|
55
78
|
getRefundsStatusHistoryList(): void;
|
|
79
|
+
getRefundsNotification(): void;
|
|
56
80
|
goToRefundView(refundlist: IRefundList, navigationpage: string): void;
|
|
57
81
|
loadCaseTransactionPage(): void;
|
|
58
82
|
loadRefundListPage(): void;
|
|
59
83
|
gotoReviewDetailsPage(event: any): void;
|
|
60
84
|
gotoReviewAndReSubmitPage(): void;
|
|
61
|
-
gotoRefundReasonPage(): void;
|
|
85
|
+
gotoRefundReasonPage(refundReason: string): void;
|
|
62
86
|
gotoAmountPage(): void;
|
|
63
87
|
goToReviewAndSubmitView(): void;
|
|
64
88
|
resetRemissionForm(val: any, field: any): void;
|
|
65
89
|
selectRadioButton(key: any, value: any): void;
|
|
66
90
|
getRefundListReason(refundListReason: any): void;
|
|
67
91
|
getRefundAmount(amount: number): void;
|
|
92
|
+
getRefundFees(fees: IFee[]): void;
|
|
68
93
|
gotoReviewRefundConfirmationPage(): void;
|
|
94
|
+
gotoEditAddressDetails(note: IRefundsNotifications): void;
|
|
95
|
+
getContactDetails(obj: IRefundContactDetails): void;
|
|
96
|
+
getContactDetailsForRefundList(obj: IRefundContactDetails): void;
|
|
97
|
+
gotoEditDetailsPage(note?: any, view?: string): void;
|
|
98
|
+
submitEditDetail(): void;
|
|
99
|
+
putResend(notification: IRefundsNotifications): void;
|
|
100
|
+
gotoRefundViewPageCancelBtnClicked(event: Event): void;
|
|
101
|
+
gotoRefundReviewAndSubmitViewPageCancelBtnClicked(event: Event): void;
|
|
69
102
|
goToRefundProcessComponent(refundReference: string, refundList: IRefundList): void;
|
|
103
|
+
getTemplateInstructionType(payment: IPayment, paymentReference: string): void;
|
|
104
|
+
showNotificationPreview(): void;
|
|
105
|
+
hideNotificationPreview(): void;
|
|
106
|
+
showNotificationSentView(index: number): void;
|
|
107
|
+
hideNotificationSentView(): void;
|
|
108
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RefundStatusComponent, never>;
|
|
109
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RefundStatusComponent, "ccpay-refund-status", never, { "LOGGEDINUSERROLES": { "alias": "LOGGEDINUSERROLES"; "required": false; }; "API_ROOT": { "alias": "API_ROOT"; "required": false; }; "ccdCaseNumber": { "alias": "ccdCaseNumber"; "required": false; }; "isTurnOff": { "alias": "isTurnOff"; "required": false; }; "orderParty": { "alias": "orderParty"; "required": false; }; }, {}, never, never, true, never>;
|
|
70
110
|
}
|
|
@@ -5,24 +5,26 @@ import { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/b
|
|
|
5
5
|
import { ErrorHandlerService } from '../../services/shared/error-handler.service';
|
|
6
6
|
import { PaymentViewService } from '../../services/payment-view/payment-view.service';
|
|
7
7
|
import { XlFileService } from '../../services/xl-file/xl-file.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class ReportsComponent implements OnInit {
|
|
9
10
|
private xlFileService;
|
|
10
11
|
private errorHandlerService;
|
|
11
12
|
private formBuilder;
|
|
12
13
|
private bulkScaningPaymentService;
|
|
13
14
|
private paymentViewService;
|
|
15
|
+
ISPAYMENTSTATUSENABLED: string;
|
|
16
|
+
fmt: string;
|
|
17
|
+
loc: string;
|
|
14
18
|
reportsForm: FormGroup;
|
|
15
19
|
startDate: string;
|
|
16
20
|
endDate: string;
|
|
21
|
+
errorMeaagse: string;
|
|
17
22
|
ccdCaseNumber: string;
|
|
18
23
|
isDownLoadButtondisabled: Boolean;
|
|
19
24
|
isStartDateLesthanEndDate: Boolean;
|
|
25
|
+
isDateBetwnMonth: Boolean;
|
|
20
26
|
isDateRangeBetnWeek: Boolean;
|
|
21
|
-
errorMessage:
|
|
22
|
-
title: string;
|
|
23
|
-
body: string;
|
|
24
|
-
showError: any;
|
|
25
|
-
};
|
|
27
|
+
errorMessage: any;
|
|
26
28
|
paymentGroups: IPaymentGroup[];
|
|
27
29
|
constructor(xlFileService: XlFileService, errorHandlerService: ErrorHandlerService, formBuilder: FormBuilder, bulkScaningPaymentService: BulkScaningPaymentService, paymentViewService: PaymentViewService);
|
|
28
30
|
ngOnInit(): void;
|
|
@@ -36,5 +38,8 @@ export declare class ReportsComponent implements OnInit {
|
|
|
36
38
|
getTwodigit(input: number): string;
|
|
37
39
|
getCamelCaseString(selectedOption: any): any;
|
|
38
40
|
applyDateFormat(res: any): any;
|
|
41
|
+
multiDateFormater(dateStr: any): any;
|
|
39
42
|
convertToFloatValue(amt: any): string;
|
|
43
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReportsComponent, never>;
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ReportsComponent, "ccpay-reports", never, { "ISPAYMENTSTATUSENABLED": { "alias": "ISPAYMENTSTATUSENABLED"; "required": false; }; }, {}, never, never, false, never>;
|
|
40
45
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { PaymentLibComponent } from '../../payment-lib.component';
|
|
1
|
+
import { OnInit, EventEmitter, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import type { PaymentLibComponent } from '../../payment-lib.component';
|
|
3
3
|
import { IPayment } from '../../interfaces/IPayment';
|
|
4
4
|
import { IRemission } from '../../interfaces/IRemission';
|
|
5
5
|
import { IPaymentView } from '../../interfaces/IPaymentView';
|
|
@@ -8,11 +8,16 @@ import { IFee } from '../../interfaces/IFee';
|
|
|
8
8
|
import { IPaymentGroup } from '../../interfaces/IPaymentGroup';
|
|
9
9
|
import { Router } from '@angular/router';
|
|
10
10
|
import { PaymentViewService } from '../../services/payment-view/payment-view.service';
|
|
11
|
+
import { NotificationService } from '../../services/notification/notification.service';
|
|
11
12
|
import { OrderslistService } from '../../services/orderslist.service';
|
|
13
|
+
import { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';
|
|
14
|
+
import * as i0 from "@angular/core";
|
|
12
15
|
export declare class ServiceRequestComponent implements OnInit {
|
|
13
16
|
private paymentLibComponent;
|
|
14
17
|
private paymentViewService;
|
|
15
18
|
private OrderslistService;
|
|
19
|
+
private notificationService;
|
|
20
|
+
private cd;
|
|
16
21
|
private router;
|
|
17
22
|
LOGGEDINUSERROLES: string[];
|
|
18
23
|
viewStatus: string;
|
|
@@ -25,17 +30,22 @@ export declare class ServiceRequestComponent implements OnInit {
|
|
|
25
30
|
orderFeesTotal: number;
|
|
26
31
|
orderTotalPayments: number;
|
|
27
32
|
orderRemissionTotal: number;
|
|
33
|
+
paymentGroupList: IPaymentGroup;
|
|
28
34
|
takePayment: boolean;
|
|
29
35
|
ccdCaseNumber: boolean;
|
|
30
36
|
isServiceRequest: string;
|
|
37
|
+
goToServiceRquestComponent: EventEmitter<any>;
|
|
38
|
+
viewCompStatus: any;
|
|
31
39
|
servicerequest: string;
|
|
40
|
+
paymentType: string;
|
|
32
41
|
excReference: string;
|
|
33
42
|
paymentGroups: any[];
|
|
34
43
|
payments: IPayment[];
|
|
35
44
|
nonPayments: IPayment[];
|
|
36
45
|
allPayments: IPayment[];
|
|
37
46
|
remissions: IRemission[];
|
|
38
|
-
|
|
47
|
+
paymentFees: IFee[];
|
|
48
|
+
fees: any;
|
|
39
49
|
errorMessage: string;
|
|
40
50
|
totalFees: number;
|
|
41
51
|
totalPayments: number;
|
|
@@ -45,9 +55,7 @@ export declare class ServiceRequestComponent implements OnInit {
|
|
|
45
55
|
dcnNumber: string;
|
|
46
56
|
paymentRef: string;
|
|
47
57
|
isTurnOff: boolean;
|
|
48
|
-
isNewPcipalOff: boolean;
|
|
49
58
|
isRefundRemission: boolean;
|
|
50
|
-
isOldPcipalOff: boolean;
|
|
51
59
|
isStrategicFixEnable: boolean;
|
|
52
60
|
isAddFeeBtnEnabled: boolean;
|
|
53
61
|
isExceptionRecord: boolean;
|
|
@@ -65,15 +73,21 @@ export declare class ServiceRequestComponent implements OnInit {
|
|
|
65
73
|
isGrpOutstandingAmtPositive: boolean;
|
|
66
74
|
totalRefundAmount: Number;
|
|
67
75
|
caseType: String;
|
|
76
|
+
isConfirmationBtnDisabled: boolean;
|
|
77
|
+
refundReference: string;
|
|
78
|
+
refundAmount: string;
|
|
68
79
|
payment: IPayment;
|
|
69
80
|
paymentGroup: IPaymentGroup;
|
|
70
81
|
paymentView: IPaymentView;
|
|
71
82
|
isAddRemissionEnable: boolean;
|
|
72
83
|
orderRemissionDetails: any[];
|
|
73
84
|
orderLevelFees: IOrderReferenceFee[];
|
|
74
|
-
cpoDetails: any;
|
|
85
|
+
cpoDetails: any[];
|
|
75
86
|
serviceRequestValue: string;
|
|
76
87
|
orderAddBtnEnable: boolean;
|
|
88
|
+
isFromPaymentDetailPage: boolean;
|
|
89
|
+
contactDetailsObj: IRefundContactDetails;
|
|
90
|
+
notification: any;
|
|
77
91
|
isCPODown: boolean;
|
|
78
92
|
test: boolean;
|
|
79
93
|
isPBA: boolean;
|
|
@@ -84,22 +98,36 @@ export declare class ServiceRequestComponent implements OnInit {
|
|
|
84
98
|
isFromServiceRequestPage: boolean;
|
|
85
99
|
navigationpage: string;
|
|
86
100
|
remissionFeeAmt: number;
|
|
87
|
-
|
|
101
|
+
isContinueBtnDisabled: boolean;
|
|
102
|
+
isFullyRefund: boolean;
|
|
103
|
+
templateInstructionType: string;
|
|
104
|
+
notificationPreview: boolean;
|
|
105
|
+
constructor(paymentLibComponent: PaymentLibComponent, paymentViewService: PaymentViewService, OrderslistService: OrderslistService, notificationService: NotificationService, cd: ChangeDetectorRef, router: Router);
|
|
88
106
|
ngOnInit(): void;
|
|
107
|
+
goToServiceRequestPage(): void;
|
|
89
108
|
goToCaseTransationPage(event: any): void;
|
|
90
|
-
chkForAddRemission(feeCode: string): boolean;
|
|
91
|
-
chkForPBAPayment(): boolean;
|
|
92
109
|
addRemission(fee: IFee): void;
|
|
93
110
|
addRefundForRemission(payment: IPayment, remission: IRemission[], fees: any): void;
|
|
94
111
|
cancelRemoval(): void;
|
|
95
112
|
removeFee(fee: any): void;
|
|
96
|
-
chkIssueRefundBtnEnable(payment: IPayment): boolean;
|
|
97
|
-
chkIsRefundRemissionBtnEnable(): boolean;
|
|
98
|
-
check4AllowedRoles2AccessRefund: () => boolean;
|
|
99
|
-
allowFurtherAccessAfter4Days: (payment: IPayment) => boolean;
|
|
100
113
|
issueRefund(payment: IPayment): void;
|
|
101
|
-
goToServiceRequestPage(event: any): void;
|
|
102
114
|
goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string): void;
|
|
103
115
|
goToPaymentViewComponent(paymentGroup: any): void;
|
|
116
|
+
chkIsIssueRefundBtnEnable(payment: IPayment): boolean;
|
|
117
|
+
chkIsAddRefundBtnEnable(remission: IRemission): boolean;
|
|
118
|
+
chkIsAddRemissionBtnEnable(fee: IFee): boolean;
|
|
104
119
|
resetOrderData(): void;
|
|
120
|
+
selectPymentOption(paymentType: string): void;
|
|
121
|
+
goToPaymentViewComp(): void;
|
|
122
|
+
continuePayment(paymentgrp: IPaymentGroup): void;
|
|
123
|
+
getContactDetails(obj: IRefundContactDetails): void;
|
|
124
|
+
gotoPaymentSelectPage(event: Event): void;
|
|
125
|
+
gotoAddressPage(note?: IRefundContactDetails): void;
|
|
126
|
+
processRefund(): void;
|
|
127
|
+
getOverPaymentValue(): number;
|
|
128
|
+
getTemplateInstructionType(payment: IPayment): void;
|
|
129
|
+
showNotificationPreview(): void;
|
|
130
|
+
hideNotificationPreview(): void;
|
|
131
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ServiceRequestComponent, never>;
|
|
132
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ServiceRequestComponent, "ccpay-service-request", never, { "LOGGEDINUSERROLES": { "alias": "LOGGEDINUSERROLES"; "required": false; }; "viewStatus": { "alias": "viewStatus"; "required": false; }; "orderDetail": { "alias": "orderDetail"; "required": false; }; "orderRef": { "alias": "orderRef"; "required": false; }; "orderStatus": { "alias": "orderStatus"; "required": false; }; "orderParty": { "alias": "orderParty"; "required": false; }; "orderCreated": { "alias": "orderCreated"; "required": false; }; "orderCCDEvent": { "alias": "orderCCDEvent"; "required": false; }; "orderFeesTotal": { "alias": "orderFeesTotal"; "required": false; }; "orderTotalPayments": { "alias": "orderTotalPayments"; "required": false; }; "orderRemissionTotal": { "alias": "orderRemissionTotal"; "required": false; }; "paymentGroupList": { "alias": "paymentGroupList"; "required": false; }; "takePayment": { "alias": "takePayment"; "required": false; }; "ccdCaseNumber": { "alias": "ccdCaseNumber"; "required": false; }; "isServiceRequest": { "alias": "isServiceRequest"; "required": false; }; }, { "goToServiceRquestComponent": "goToServiceRquestComponent"; }, never, never, true, never>;
|
|
105
133
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { IStatusHistories } from '../../interfaces/IStatusHistories';
|
|
3
3
|
import { StatusHistoryService } from '../../services/status-history/status-history.service';
|
|
4
|
-
import { PaymentLibComponent } from '../../payment-lib.component';
|
|
4
|
+
import type { PaymentLibComponent } from '../../payment-lib.component';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class StatusHistoryComponent implements OnInit {
|
|
6
7
|
private statusHistoryService;
|
|
7
8
|
private paymentLibComponent;
|
|
@@ -11,4 +12,6 @@ export declare class StatusHistoryComponent implements OnInit {
|
|
|
11
12
|
errorMessage: string;
|
|
12
13
|
constructor(statusHistoryService: StatusHistoryService, paymentLibComponent: PaymentLibComponent);
|
|
13
14
|
ngOnInit(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StatusHistoryComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StatusHistoryComponent, "ccpay-payment-statuses", never, { "isTakePayment": { "alias": "isTakePayment"; "required": false; }; }, {}, never, never, true, never>;
|
|
14
17
|
}
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { PaymentLibComponent } from '../../payment-lib.component';
|
|
2
|
+
import type { PaymentLibComponent } from '../../payment-lib.component';
|
|
3
3
|
import { MatTableDataSource } from '@angular/material/table';
|
|
4
4
|
import { MatSort } from '@angular/material/sort';
|
|
5
5
|
import { MatPaginator } from '@angular/material/paginator';
|
|
6
6
|
import { IRefundList } from '../../interfaces/IRefundList';
|
|
7
7
|
import { OrderslistService } from '../../services/orderslist.service';
|
|
8
8
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
9
10
|
export declare class TableComponent {
|
|
10
11
|
private paymentLibComponent;
|
|
11
12
|
private cdRef;
|
|
@@ -19,6 +20,7 @@ export declare class TableComponent {
|
|
|
19
20
|
displayedColumns: string[];
|
|
20
21
|
dataSource: MatTableDataSource<any>;
|
|
21
22
|
userLst: any;
|
|
23
|
+
serviceLst: any;
|
|
22
24
|
actualcount: number;
|
|
23
25
|
count: number;
|
|
24
26
|
refundList: IRefundList[];
|
|
@@ -36,4 +38,6 @@ export declare class TableComponent {
|
|
|
36
38
|
goToRefundProcessComponent(refundReference: string, refundData: IRefundList): void;
|
|
37
39
|
goToRefundViewComponent(refundReference: string, refundData: IRefundList): void;
|
|
38
40
|
goToCaseReview(ccdCaseNumber: string, refundData: IRefundList): void;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "ccpay-table", never, { "DATASOURCE": { "alias": "DATASOURCE"; "required": false; }; "STATUS": { "alias": "STATUS"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; }, {}, never, never, false, never>;
|
|
39
43
|
}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { OnInit, EventEmitter } from '@angular/core';
|
|
2
2
|
import { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';
|
|
3
|
-
import { PaymentLibComponent } from '../../payment-lib.component';
|
|
3
|
+
import type { PaymentLibComponent } from '../../payment-lib.component';
|
|
4
4
|
import { IBSPayments } from '../../interfaces/IBSPayments';
|
|
5
5
|
import { Router } from '@angular/router';
|
|
6
6
|
import { PaymentViewService } from '../../services/payment-view/payment-view.service';
|
|
7
7
|
import { OrderslistService } from '../../services/orderslist.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class UnprocessedPaymentsComponent implements OnInit {
|
|
9
10
|
private router;
|
|
10
11
|
private bulkScaningPaymentService;
|
|
@@ -16,8 +17,6 @@ export declare class UnprocessedPaymentsComponent implements OnInit {
|
|
|
16
17
|
ISTURNOFF: boolean;
|
|
17
18
|
IS_BUTTON_ENABLE: boolean;
|
|
18
19
|
IS_OS_AMT_AVAILABLE: boolean;
|
|
19
|
-
ISNEWPCIPALOFF: boolean;
|
|
20
|
-
ISOLDPCIPALOFF: boolean;
|
|
21
20
|
ISSFENABLE: boolean;
|
|
22
21
|
PAYMENTSLENGTH: Number;
|
|
23
22
|
LEVEL: Number;
|
|
@@ -38,8 +37,6 @@ export declare class UnprocessedPaymentsComponent implements OnInit {
|
|
|
38
37
|
isExceptionCase: boolean;
|
|
39
38
|
serviceId: string;
|
|
40
39
|
isBulkScanEnable: any;
|
|
41
|
-
isNewpcipaloff: any;
|
|
42
|
-
isOldpcipaloff: any;
|
|
43
40
|
isTurnOff: boolean;
|
|
44
41
|
isStFixEnable: any;
|
|
45
42
|
unassignedRecordSelectedList: IBSPayments;
|
|
@@ -59,4 +56,6 @@ export declare class UnprocessedPaymentsComponent implements OnInit {
|
|
|
59
56
|
validateButtons(): void;
|
|
60
57
|
unprocessedPaymentUnSelectEvent(event: any): void;
|
|
61
58
|
showDetailRow(event: any, obj: any, i: any): void;
|
|
59
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UnprocessedPaymentsComponent, never>;
|
|
60
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UnprocessedPaymentsComponent, "ccpay-app-unprocessed-payments", never, { "FEE_RECORDS_EXISTS": { "alias": "FEE_RECORDS_EXISTS"; "required": false; }; "PAYMENTREF": { "alias": "PAYMENTREF"; "required": false; }; "ISTURNOFF": { "alias": "ISTURNOFF"; "required": false; }; "IS_BUTTON_ENABLE": { "alias": "IS_BUTTON_ENABLE"; "required": false; }; "IS_OS_AMT_AVAILABLE": { "alias": "IS_OS_AMT_AVAILABLE"; "required": false; }; "ISSFENABLE": { "alias": "ISSFENABLE"; "required": false; }; "PAYMENTSLENGTH": { "alias": "PAYMENTSLENGTH"; "required": false; }; "LEVEL": { "alias": "LEVEL"; "required": false; }; }, { "selectedUnprocessedFeeEvent": "selectedUnprocessedFeeEvent"; "getUnprocessedFeeCount": "getUnprocessedFeeCount"; }, never, never, true, never>;
|
|
62
61
|
}
|
package/lib/interfaces/IFee.d.ts
CHANGED
|
@@ -20,4 +20,10 @@ export interface IFee {
|
|
|
20
20
|
date_updated?: string;
|
|
21
21
|
amount_due?: number;
|
|
22
22
|
remission_enable?: boolean;
|
|
23
|
+
add_remission?: boolean;
|
|
24
|
+
over_payment?: number;
|
|
25
|
+
refund_amount?: number;
|
|
26
|
+
updated_volume?: number;
|
|
27
|
+
selected?: any;
|
|
28
|
+
issue_refund_add_refund_add_remission: boolean;
|
|
23
29
|
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export interface INotificationPreview {
|
|
2
|
+
template_id: string;
|
|
3
|
+
template_type: string;
|
|
4
|
+
from: {
|
|
5
|
+
from_email_address: string;
|
|
6
|
+
from_mail_address: {
|
|
7
|
+
address_line: string;
|
|
8
|
+
city: string;
|
|
9
|
+
county: string;
|
|
10
|
+
country: string;
|
|
11
|
+
postal_code: String;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
recipient_contact: {
|
|
15
|
+
recipient_email_address: string;
|
|
16
|
+
recipient_mail_address: {
|
|
17
|
+
address_line: string;
|
|
18
|
+
city: string;
|
|
19
|
+
county: string;
|
|
20
|
+
country: string;
|
|
21
|
+
postal_code: String;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
subject: string;
|
|
25
|
+
body: string;
|
|
26
|
+
html: string;
|
|
27
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export interface IPaymentFailure {
|
|
2
|
+
additional_reference: string;
|
|
3
|
+
disputed_amount: number;
|
|
4
|
+
failure_event_date_time: string;
|
|
5
|
+
failure_reason: string;
|
|
6
|
+
failure_reference: string;
|
|
7
|
+
failure_type: string;
|
|
8
|
+
payment_reference: string;
|
|
9
|
+
representment_date: string;
|
|
10
|
+
representment_status: string;
|
|
11
|
+
has_amount_debited?: string;
|
|
12
|
+
status: string;
|
|
13
|
+
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IRefundContactDetails } from './IRefundContactDetails';
|
|
1
2
|
export interface IRefundList {
|
|
2
3
|
amount: number;
|
|
3
4
|
ccd_case_number: string;
|
|
@@ -5,10 +6,14 @@ export interface IRefundList {
|
|
|
5
6
|
date_updated: string;
|
|
6
7
|
payment_reference: string;
|
|
7
8
|
reason: string;
|
|
9
|
+
reason_code: string;
|
|
8
10
|
refund_reference: string;
|
|
9
11
|
refund_status: {
|
|
10
12
|
description: string;
|
|
11
13
|
name: string;
|
|
12
14
|
};
|
|
15
|
+
contact_details: IRefundContactDetails;
|
|
13
16
|
user_full_name: string;
|
|
17
|
+
service_type: string;
|
|
18
|
+
code: string;
|
|
14
19
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export interface IRefundsNotifications {
|
|
2
|
+
contact_details: {
|
|
3
|
+
address_line: string;
|
|
4
|
+
city: string;
|
|
5
|
+
country: string;
|
|
6
|
+
county: string;
|
|
7
|
+
date_created: string;
|
|
8
|
+
date_updated: string;
|
|
9
|
+
email: string;
|
|
10
|
+
postal_code: string;
|
|
11
|
+
};
|
|
12
|
+
date_created: string;
|
|
13
|
+
date_updated: string;
|
|
14
|
+
notification_type: string;
|
|
15
|
+
reference: string;
|
|
16
|
+
}
|
|
@@ -1,5 +1,9 @@
|
|
|
1
|
+
import { IFee } from "./IFee";
|
|
2
|
+
import { IRefundContactDetails } from "./IRefundContactDetails";
|
|
1
3
|
export declare class IResubmitRefundRequest {
|
|
2
4
|
refund_reason: string;
|
|
3
5
|
amount: number;
|
|
4
|
-
|
|
6
|
+
contact_details: IRefundContactDetails;
|
|
7
|
+
refund_fees: IFee[];
|
|
8
|
+
constructor(refund_reason: string, amount: number, contact_details: any, refund_fees: any[]);
|
|
5
9
|
}
|
|
@@ -3,5 +3,6 @@ export declare class IserviceRequestPbaPayment {
|
|
|
3
3
|
amount: string;
|
|
4
4
|
currency: string;
|
|
5
5
|
customer_reference: string;
|
|
6
|
-
|
|
6
|
+
organisation_name: string;
|
|
7
|
+
constructor(account_number: string, amount: string, customer_reference: string, orgName: string);
|
|
7
8
|
}
|