@hmcts/ccpay-web-component 6.2.10 → 6.3.0-beta1
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/lib/components/add-remission/add-remission.component.mjs +5 -54
- package/esm2022/lib/components/allocate-payments/allocate-payments.component.mjs +3 -3
- package/esm2022/lib/components/case-transactions/case-transactions.component.mjs +3 -3
- package/esm2022/lib/components/fee-summary/fee-summary.component.mjs +3 -3
- package/esm2022/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.mjs +3 -3
- package/esm2022/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.mjs +3 -3
- package/esm2022/lib/components/payment-view/payment-view.component.mjs +3 -4
- package/esm2022/lib/components/processed-payments/processed-payments.component.mjs +3 -3
- package/esm2022/lib/components/refund-status/refund-status.component.mjs +3 -3
- package/esm2022/lib/components/reports/reports.component.mjs +3 -3
- package/esm2022/lib/components/service-request/service-request.component.mjs +3 -5
- package/esm2022/lib/components/unprocessed-payments/unprocessed-payments.component.mjs +3 -3
- package/fesm2022/hmcts-ccpay-web-component.mjs +26 -78
- package/fesm2022/hmcts-ccpay-web-component.mjs.map +1 -1
- package/lib/components/add-remission/add-remission.component.d.ts +0 -7
- package/package.json +1 -1
|
@@ -154,7 +154,6 @@ export declare class AddRemissionComponent implements OnInit {
|
|
|
154
154
|
refundFeesList(): void;
|
|
155
155
|
get feesList(): FormArray<any>;
|
|
156
156
|
noneSelected(): boolean;
|
|
157
|
-
calculateRefundAmount(index: any, AppAmt: any): any;
|
|
158
157
|
check_en(i: any, v1: any, AppAmt: any, Volume: any): void;
|
|
159
158
|
addRemission(): void;
|
|
160
159
|
confirmRemission(): void;
|
|
@@ -196,12 +195,6 @@ export declare class AddRemissionComponent implements OnInit {
|
|
|
196
195
|
getRefundAmountToBeDisplayed(remission: IRemission): string;
|
|
197
196
|
getRefundAmountToBeDisplayedForContinueJourney(): string;
|
|
198
197
|
getRemissionAmountToBeDisplayed(remission: IRemission): string;
|
|
199
|
-
isRemissionEnabled(feeCode: string): boolean;
|
|
200
|
-
isRemissionEnabledForFeeCode(feeCode: string): boolean;
|
|
201
|
-
getRemissions(feeCode: string): IRemission;
|
|
202
|
-
getRemissionsHwfAmount(feeCode: string): string;
|
|
203
|
-
getNetAmountFee(hwfAmount: number, feeAmount: number): number;
|
|
204
|
-
getRemissionValueForFullyRefund(): number;
|
|
205
198
|
static ɵfac: i0.ɵɵFactoryDeclaration<AddRemissionComponent, never>;
|
|
206
199
|
static ɵcmp: i0.ɵɵComponentDeclaration<AddRemissionComponent, "ccpay-add-remission", never, { "fee": { "alias": "fee"; "required": false; }; "fees": { "alias": "fees"; "required": false; }; "payment": { "alias": "payment"; "required": false; }; "remission": { "alias": "remission"; "required": false; }; "ccdCaseNumber": { "alias": "ccdCaseNumber"; "required": false; }; "caseType": { "alias": "caseType"; "required": false; }; "viewCompStatus": { "alias": "viewCompStatus"; "required": false; }; "paymentGroupRef": { "alias": "paymentGroupRef"; "required": false; }; "isTurnOff": { "alias": "isTurnOff"; "required": false; }; "isRefundRemission": { "alias": "isRefundRemission"; "required": false; }; "isStrategicFixEnable": { "alias": "isStrategicFixEnable"; "required": false; }; "paidAmount": { "alias": "paidAmount"; "required": false; }; "isFromRefundListPage": { "alias": "isFromRefundListPage"; "required": false; }; "isFromPaymentDetailPage": { "alias": "isFromPaymentDetailPage"; "required": false; }; "isFromServiceRequestPage": { "alias": "isFromServiceRequestPage"; "required": false; }; "isFullyRefund": { "alias": "isFullyRefund"; "required": false; }; "feeamount": { "alias": "feeamount"; "required": false; }; "refundPaymentReference": { "alias": "refundPaymentReference"; "required": false; }; "isFromRefundStatusPage": { "alias": "isFromRefundStatusPage"; "required": false; }; "changeRefundReason": { "alias": "changeRefundReason"; "required": false; }; "isServiceRequest": { "alias": "isServiceRequest"; "required": false; }; "LOGGEDINUSERROLES": { "alias": "LOGGEDINUSERROLES"; "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; }; "takePayment": { "alias": "takepayment"; "required": false; }; "orderFeesTotal": { "alias": "orderFeesTotal"; "required": false; }; "orderTotalPayments": { "alias": "orderTotalPayments"; "required": false; }; "orderRemissionTotal": { "alias": "orderRemissionTotal"; "required": false; }; }, { "cancelRemission": "cancelRemission"; "refundListReason": "refundListReason"; "refundListAmount": "refundListAmount"; "refundFees": "refundFees"; }, never, never, true, never>;
|
|
207
200
|
}
|