@hmcts/ccpay-web-component 4.0.0-beta521 → 4.0.0-beta526
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/hmcts-ccpay-web-component.umd.js +2956 -6653
- package/bundles/hmcts-ccpay-web-component.umd.js.map +1 -1
- package/bundles/hmcts-ccpay-web-component.umd.min.js +1 -1
- package/bundles/hmcts-ccpay-web-component.umd.min.js.map +1 -1
- package/esm2015/hmcts-ccpay-web-component.js +26 -33
- package/esm2015/lib/components/add-remission/add-remission.component.js +144 -848
- package/esm2015/lib/components/allocate-payments/allocate-payments.component.js +276 -196
- package/esm2015/lib/components/card-details/card-details.component.js +34 -22
- package/esm2015/lib/components/case-transactions/case-transactions.component.js +537 -726
- package/esm2015/lib/components/error-banner/error-banner.component.js +17 -5
- package/esm2015/lib/components/fee-summary/fee-summary.component.js +257 -146
- package/esm2015/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.js +143 -86
- package/esm2015/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.js +162 -106
- package/esm2015/lib/components/page-not-found.component.js +4 -3
- package/esm2015/lib/components/payment-list/payment-list.component.js +80 -22
- package/esm2015/lib/components/payment-view/payment-view.component.js +137 -319
- package/esm2015/lib/components/pba-details/pba-details.component.js +32 -5
- package/esm2015/lib/components/processed-payments/processed-payments.component.js +41 -13
- package/esm2015/lib/components/reports/reports.component.js +116 -55
- package/esm2015/lib/components/status-history/status-history.component.js +42 -28
- package/esm2015/lib/components/unprocessed-payments/unprocessed-payments.component.js +113 -115
- package/esm2015/lib/interfaces/AddRemissionRequest.js +3 -2
- package/esm2015/lib/interfaces/AllocatePaymentRequest.js +3 -2
- package/esm2015/lib/interfaces/IAllocationPaymentsRequest.js +3 -2
- package/esm2015/lib/interfaces/IBSPayments.js +35 -38
- package/esm2015/lib/interfaces/ICardDetails.js +13 -14
- package/esm2015/lib/interfaces/IFee.js +43 -44
- package/esm2015/lib/interfaces/IPayment.js +55 -56
- package/esm2015/lib/interfaces/IPaymentGroup.js +11 -12
- package/esm2015/lib/interfaces/IPaymentStatus.js +3 -2
- package/esm2015/lib/interfaces/IPayments.js +5 -6
- package/esm2015/lib/interfaces/IRemission.js +17 -18
- package/esm2015/lib/interfaces/IStatusHistories.js +11 -12
- package/esm2015/lib/interfaces/IStatusHistory.js +13 -14
- package/esm2015/lib/interfaces/PayhubAntennaRequest.js +4 -3
- package/esm2015/lib/interfaces/PaymentToPayhubRequest.js +4 -3
- package/esm2015/lib/interfaces/UnidentifiedPaymentsRequest.js +3 -2
- package/esm2015/lib/interfaces/UnsolicitedPaymentsRequest.js +3 -2
- package/esm2015/lib/payment-lib.component.js +9 -71
- package/esm2015/lib/payment-lib.module.js +6 -29
- package/esm2015/lib/payment-lib.service.js +4 -18
- package/esm2015/lib/pipes/ccd-hyphens.pipe.js +4 -3
- package/esm2015/lib/pipes/key-value.pipe.js +4 -3
- package/esm2015/lib/pipes/sanitize-html.pipe.js +5 -7
- package/esm2015/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.js +14 -37
- package/esm2015/lib/services/card-details/card-details.service.js +8 -19
- package/esm2015/lib/services/case-transactions/case-transactions.service.js +8 -19
- package/esm2015/lib/services/payment-list/payment-list.service.js +8 -19
- package/esm2015/lib/services/payment-view/payment-view.service.js +10 -81
- package/esm2015/lib/services/shared/error-handler.service.js +4 -6
- package/esm2015/lib/services/shared/httpclient/webcomponent.http.client.js +9 -27
- package/esm2015/lib/services/shared/logger/console-logger.service.js +5 -7
- package/esm2015/lib/services/shared/logger/logger.service.js +5 -7
- package/esm2015/lib/services/status-history/status-history.service.js +8 -19
- package/esm2015/lib/services/xl-file/xl-file.service.js +51 -56
- package/esm2015/public_api.js +2 -1
- package/esm5/hmcts-ccpay-web-component.js +26 -33
- package/esm5/lib/components/add-remission/add-remission.component.js +51 -916
- package/esm5/lib/components/allocate-payments/allocate-payments.component.js +62 -205
- package/esm5/lib/components/card-details/card-details.component.js +7 -20
- package/esm5/lib/components/case-transactions/case-transactions.component.js +71 -797
- package/esm5/lib/components/error-banner/error-banner.component.js +4 -3
- package/esm5/lib/components/fee-summary/fee-summary.component.js +44 -149
- package/esm5/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.js +29 -84
- package/esm5/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.js +40 -104
- package/esm5/lib/components/page-not-found.component.js +4 -3
- package/esm5/lib/components/payment-list/payment-list.component.js +8 -21
- package/esm5/lib/components/payment-view/payment-view.component.js +21 -379
- package/esm5/lib/components/pba-details/pba-details.component.js +4 -3
- package/esm5/lib/components/processed-payments/processed-payments.component.js +6 -11
- package/esm5/lib/components/reports/reports.component.js +25 -54
- package/esm5/lib/components/status-history/status-history.component.js +9 -27
- package/esm5/lib/components/unprocessed-payments/unprocessed-payments.component.js +24 -126
- package/esm5/lib/interfaces/AddRemissionRequest.js +3 -2
- package/esm5/lib/interfaces/AllocatePaymentRequest.js +3 -2
- package/esm5/lib/interfaces/IAllocationPaymentsRequest.js +3 -2
- package/esm5/lib/interfaces/IBSPayments.js +35 -38
- package/esm5/lib/interfaces/ICardDetails.js +13 -14
- package/esm5/lib/interfaces/IFee.js +43 -44
- package/esm5/lib/interfaces/IPayment.js +55 -56
- package/esm5/lib/interfaces/IPaymentGroup.js +11 -12
- package/esm5/lib/interfaces/IPaymentStatus.js +3 -2
- package/esm5/lib/interfaces/IPayments.js +5 -6
- package/esm5/lib/interfaces/IRemission.js +17 -18
- package/esm5/lib/interfaces/IStatusHistories.js +11 -12
- package/esm5/lib/interfaces/IStatusHistory.js +13 -14
- package/esm5/lib/interfaces/PayhubAntennaRequest.js +4 -3
- package/esm5/lib/interfaces/PaymentToPayhubRequest.js +4 -3
- package/esm5/lib/interfaces/UnidentifiedPaymentsRequest.js +3 -2
- package/esm5/lib/interfaces/UnsolicitedPaymentsRequest.js +3 -2
- package/esm5/lib/payment-lib.component.js +7 -58
- package/esm5/lib/payment-lib.module.js +6 -29
- package/esm5/lib/payment-lib.service.js +4 -25
- package/esm5/lib/pipes/ccd-hyphens.pipe.js +4 -3
- package/esm5/lib/pipes/key-value.pipe.js +4 -3
- package/esm5/lib/pipes/sanitize-html.pipe.js +5 -7
- package/esm5/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.js +14 -37
- package/esm5/lib/services/card-details/card-details.service.js +8 -19
- package/esm5/lib/services/case-transactions/case-transactions.service.js +8 -19
- package/esm5/lib/services/payment-list/payment-list.service.js +8 -19
- package/esm5/lib/services/payment-view/payment-view.service.js +10 -112
- package/esm5/lib/services/shared/error-handler.service.js +4 -6
- package/esm5/lib/services/shared/httpclient/webcomponent.http.client.js +9 -27
- package/esm5/lib/services/shared/logger/console-logger.service.js +5 -7
- package/esm5/lib/services/shared/logger/logger.service.js +5 -7
- package/esm5/lib/services/status-history/status-history.service.js +8 -19
- package/esm5/lib/services/xl-file/xl-file.service.js +51 -62
- package/esm5/public_api.js +2 -1
- package/fesm2015/hmcts-ccpay-web-component.js +2190 -3845
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +2869 -6754
- package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
- package/hmcts-ccpay-web-component.d.ts +23 -31
- package/hmcts-ccpay-web-component.metadata.json +1 -1
- package/lib/components/add-remission/add-remission.component.d.ts +2 -72
- package/lib/components/allocate-payments/allocate-payments.component.d.ts +4 -16
- package/lib/components/case-transactions/case-transactions.component.d.ts +1 -52
- package/lib/components/fee-summary/fee-summary.component.d.ts +1 -3
- package/lib/components/payment-view/payment-view.component.d.ts +1 -37
- package/lib/components/status-history/status-history.component.d.ts +0 -1
- package/lib/components/unprocessed-payments/unprocessed-payments.component.d.ts +4 -15
- package/lib/interfaces/IBSPayments.d.ts +0 -1
- package/lib/payment-lib.component.d.ts +1 -18
- package/lib/payment-lib.service.d.ts +0 -3
- package/lib/services/payment-view/payment-view.service.d.ts +0 -12
- package/lib/services/xl-file/xl-file.service.d.ts +6 -6
- package/package.json +1 -1
- package/esm2015/lib/components/process-refund/process-refund.component.js +0 -380
- package/esm2015/lib/components/refund-list/refund-list.component.js +0 -140
- package/esm2015/lib/components/refund-status/refund-status.component.js +0 -509
- package/esm2015/lib/components/refunds/refunds.component.js +0 -23
- package/esm2015/lib/components/table/table.component.js +0 -171
- package/esm2015/lib/interfaces/AddRetroRemissionRequest.js +0 -21
- package/esm2015/lib/interfaces/IOrderReferenceFee.js +0 -25
- package/esm2015/lib/interfaces/IPatchRefundAction.js +0 -15
- package/esm2015/lib/interfaces/IPaymentView.js +0 -17
- 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/IResubmitRefundRequest.js +0 -21
- package/esm2015/lib/interfaces/IssueRefundRequest.js +0 -25
- 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/pipes/capitalize.pipe.js +0 -24
- package/esm2015/lib/services/orderslist.service.js +0 -211
- package/esm2015/lib/services/refunds/refunds.service.js +0 -203
- package/esm5/lib/components/process-refund/process-refund.component.js +0 -456
- package/esm5/lib/components/refund-list/refund-list.component.js +0 -143
- package/esm5/lib/components/refund-status/refund-status.component.js +0 -568
- package/esm5/lib/components/refunds/refunds.component.js +0 -29
- package/esm5/lib/components/table/table.component.js +0 -201
- package/esm5/lib/interfaces/AddRetroRemissionRequest.js +0 -19
- package/esm5/lib/interfaces/IOrderReferenceFee.js +0 -25
- package/esm5/lib/interfaces/IPatchRefundAction.js +0 -15
- package/esm5/lib/interfaces/IPaymentView.js +0 -17
- 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/IResubmitRefundRequest.js +0 -19
- package/esm5/lib/interfaces/IssueRefundRequest.js +0 -22
- 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/pipes/capitalize.pipe.js +0 -32
- package/esm5/lib/services/orderslist.service.js +0 -276
- package/esm5/lib/services/refunds/refunds.service.js +0 -243
- package/lib/components/process-refund/process-refund.component.d.ts +0 -53
- package/lib/components/refund-list/refund-list.component.d.ts +0 -23
- package/lib/components/refund-status/refund-status.component.d.ts +0 -68
- package/lib/components/refunds/refunds.component.d.ts +0 -5
- package/lib/components/table/table.component.d.ts +0 -35
- package/lib/interfaces/AddRetroRemissionRequest.d.ts +0 -5
- package/lib/interfaces/IOrderReferenceFee.d.ts +0 -9
- package/lib/interfaces/IPatchRefundAction.d.ts +0 -4
- package/lib/interfaces/IPaymentView.d.ts +0 -5
- package/lib/interfaces/IRefundAction.d.ts +0 -4
- package/lib/interfaces/IRefundList.d.ts +0 -14
- package/lib/interfaces/IRefundReasons.d.ts +0 -6
- package/lib/interfaces/IRefundRejectReason.d.ts +0 -4
- package/lib/interfaces/IRefundStatus.d.ts +0 -8
- package/lib/interfaces/IRefundStatusHistory.d.ts +0 -5
- package/lib/interfaces/IResubmitRefundRequest.d.ts +0 -5
- package/lib/interfaces/IssueRefundRequest.d.ts +0 -6
- package/lib/interfaces/PostIssueRefundRetroRemission.d.ts +0 -4
- package/lib/interfaces/PostRefundRetroRemission.d.ts +0 -5
- package/lib/interfaces/RefundsRequest.d.ts +0 -5
- package/lib/pipes/capitalize.pipe.d.ts +0 -5
- package/lib/services/orderslist.service.d.ts +0 -40
- package/lib/services/refunds/refunds.service.d.ts +0 -30
|
@@ -4,52 +4,20 @@ import { IFee } from '../../interfaces/IFee';
|
|
|
4
4
|
import { Router } from '@angular/router';
|
|
5
5
|
import { PaymentViewService } from '../../services/payment-view/payment-view.service';
|
|
6
6
|
import { PaymentLibComponent } from '../../payment-lib.component';
|
|
7
|
-
import { IPayment } from '../../interfaces/IPayment';
|
|
8
|
-
import { RefundsService } from '../../services/refunds/refunds.service';
|
|
9
|
-
import { IRefundReasons } from '../../interfaces/IRefundReasons';
|
|
10
|
-
import { ChangeDetectorRef } from '@angular/core';
|
|
11
|
-
import { IRemission } from '../../interfaces/IRemission';
|
|
12
|
-
import { OrderslistService } from '../../services/orderslist.service';
|
|
13
7
|
export declare class AddRemissionComponent implements OnInit {
|
|
14
8
|
private formBuilder;
|
|
15
9
|
private router;
|
|
16
10
|
private paymentViewService;
|
|
17
11
|
private paymentLibComponent;
|
|
18
|
-
private refundService;
|
|
19
|
-
private cd;
|
|
20
|
-
private OrderslistService;
|
|
21
12
|
fee: IFee;
|
|
22
|
-
payment: IPayment;
|
|
23
|
-
remission: IRemission;
|
|
24
13
|
ccdCaseNumber: string;
|
|
25
14
|
caseType: string;
|
|
26
|
-
viewCompStatus: string;
|
|
27
15
|
paymentGroupRef: string;
|
|
28
16
|
isTurnOff: boolean;
|
|
29
|
-
isRefundRemission: boolean;
|
|
30
17
|
isOldPcipalOff: boolean;
|
|
31
18
|
isNewPcipalOff: boolean;
|
|
32
19
|
isStrategicFixEnable: boolean;
|
|
33
|
-
orderStatus: string;
|
|
34
|
-
paidAmount: any;
|
|
35
|
-
isFromRefundListPage: boolean;
|
|
36
|
-
isFromPaymentDetailPage: boolean;
|
|
37
|
-
isFromServiceRequestPage: boolean;
|
|
38
|
-
feeamount: number;
|
|
39
20
|
cancelRemission: EventEmitter<void>;
|
|
40
|
-
refundListReason: EventEmitter<{
|
|
41
|
-
reason: string;
|
|
42
|
-
code: string;
|
|
43
|
-
}>;
|
|
44
|
-
refundListAmount: EventEmitter<string>;
|
|
45
|
-
refund: {
|
|
46
|
-
reason: {
|
|
47
|
-
duplicate: string;
|
|
48
|
-
humanerror: string;
|
|
49
|
-
caseWithdrawn: string;
|
|
50
|
-
other: string;
|
|
51
|
-
};
|
|
52
|
-
};
|
|
53
21
|
remissionForm: FormGroup;
|
|
54
22
|
hasErrors: boolean;
|
|
55
23
|
viewStatus: string;
|
|
@@ -57,53 +25,15 @@ export declare class AddRemissionComponent implements OnInit {
|
|
|
57
25
|
option: string;
|
|
58
26
|
isConfirmationBtnDisabled: boolean;
|
|
59
27
|
bsPaymentDcnNumber: string;
|
|
60
|
-
selectedValue: string;
|
|
61
|
-
amount: any;
|
|
62
|
-
retroRemission: boolean;
|
|
63
|
-
remissionReference: string;
|
|
64
|
-
refundReference: string;
|
|
65
|
-
refundAmount: string;
|
|
66
|
-
paymentExplanationHasError: boolean;
|
|
67
|
-
refundReason: string;
|
|
68
|
-
selectedRefundReason: string;
|
|
69
|
-
refundCode: string;
|
|
70
|
-
remessionPayment: IPayment;
|
|
71
28
|
isRemissionCodeEmpty: boolean;
|
|
72
29
|
remissionCodeHasError: boolean;
|
|
73
30
|
isAmountEmpty: boolean;
|
|
74
|
-
isReasonEmpty: boolean;
|
|
75
31
|
amountHasError: boolean;
|
|
76
32
|
isRemissionLessThanFeeError: boolean;
|
|
77
|
-
|
|
78
|
-
isPaymentSuccess: boolean;
|
|
79
|
-
isRemissionApplied: boolean;
|
|
80
|
-
remissionamt: number;
|
|
81
|
-
commonRefundReasons: any[];
|
|
82
|
-
showReasonText: boolean;
|
|
83
|
-
isRefundReasonsSelected: boolean;
|
|
84
|
-
default: string;
|
|
85
|
-
reasonLength: number;
|
|
86
|
-
refundReasons: IRefundReasons[];
|
|
87
|
-
constructor(formBuilder: FormBuilder, router: Router, paymentViewService: PaymentViewService, paymentLibComponent: PaymentLibComponent, refundService: RefundsService, cd: ChangeDetectorRef, OrderslistService: OrderslistService);
|
|
33
|
+
constructor(formBuilder: FormBuilder, router: Router, paymentViewService: PaymentViewService, paymentLibComponent: PaymentLibComponent);
|
|
88
34
|
ngOnInit(): void;
|
|
89
35
|
addRemission(): void;
|
|
90
|
-
confirmRemission(): void;
|
|
91
36
|
resetRemissionForm(val: any, field: any): void;
|
|
92
|
-
|
|
93
|
-
gotoAddRetroRemissionCodePage(): void;
|
|
94
|
-
gotoCheckRetroRemissionPage(payment: IPayment): void;
|
|
95
|
-
gotoProcessRetroRemissionPage(): void;
|
|
96
|
-
confirmRetroRemission(): void;
|
|
97
|
-
processRefund(): void;
|
|
98
|
-
gotoIssueRefundConfirmation(payment: IPayment): void;
|
|
99
|
-
gotoIssueRefundPage(): void;
|
|
100
|
-
changeIssueRefundReason(): void;
|
|
101
|
-
confirmIssueRefund(): void;
|
|
102
|
-
confirmRetroRefund(): void;
|
|
103
|
-
selectRadioButton(key: any, value: any): void;
|
|
104
|
-
selectchange(args: any): void;
|
|
105
|
-
gotoServiceRequestPage(event: any): void;
|
|
37
|
+
confirmRemission(): void;
|
|
106
38
|
gotoCasetransationPage(): void;
|
|
107
|
-
gotoCasetransationPageCancelBtnClicked(): void;
|
|
108
|
-
getFormattedCurrency(currency: number): string | number;
|
|
109
39
|
}
|
|
@@ -7,8 +7,6 @@ import { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/b
|
|
|
7
7
|
import { ErrorHandlerService } from '../../services/shared/error-handler.service';
|
|
8
8
|
import { IPaymentGroup } from '../../interfaces/IPaymentGroup';
|
|
9
9
|
import { IBSPayments } from '../../interfaces/IBSPayments';
|
|
10
|
-
import { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';
|
|
11
|
-
import { OrderslistService } from '../../services/orderslist.service';
|
|
12
10
|
export declare class AllocatePaymentsComponent implements OnInit {
|
|
13
11
|
private errorHandlerService;
|
|
14
12
|
private caseTransactionsService;
|
|
@@ -16,14 +14,12 @@ export declare class AllocatePaymentsComponent implements OnInit {
|
|
|
16
14
|
private paymentViewService;
|
|
17
15
|
private paymentLibComponent;
|
|
18
16
|
private bulkScaningPaymentService;
|
|
19
|
-
private OrderslistService;
|
|
20
17
|
isTurnOff: boolean;
|
|
21
18
|
caseType: string;
|
|
22
19
|
overUnderPaymentForm: FormGroup;
|
|
23
20
|
viewStatus: string;
|
|
24
21
|
ccdCaseNumber: string;
|
|
25
22
|
bspaymentdcn: string;
|
|
26
|
-
recordId: string;
|
|
27
23
|
feedbackUrlLabel: string;
|
|
28
24
|
unAllocatedPayment: IBSPayments;
|
|
29
25
|
siteID: string;
|
|
@@ -61,7 +57,9 @@ export declare class AllocatePaymentsComponent implements OnInit {
|
|
|
61
57
|
paymentSectionLabel: any;
|
|
62
58
|
paymentRef: string;
|
|
63
59
|
isStrategicFixEnable: boolean;
|
|
64
|
-
|
|
60
|
+
cookieUserName: string[];
|
|
61
|
+
enCookieUserName: any;
|
|
62
|
+
userNameField: string;
|
|
65
63
|
reasonList: {
|
|
66
64
|
[key: string]: {
|
|
67
65
|
[key: string]: string;
|
|
@@ -80,15 +78,7 @@ export declare class AllocatePaymentsComponent implements OnInit {
|
|
|
80
78
|
other: string;
|
|
81
79
|
};
|
|
82
80
|
};
|
|
83
|
-
|
|
84
|
-
reason: {
|
|
85
|
-
duplicate: string;
|
|
86
|
-
humanerror: string;
|
|
87
|
-
caseWithdrawn: string;
|
|
88
|
-
other: string;
|
|
89
|
-
};
|
|
90
|
-
};
|
|
91
|
-
constructor(errorHandlerService: ErrorHandlerService, caseTransactionsService: CaseTransactionsService, formBuilder: FormBuilder, paymentViewService: PaymentViewService, paymentLibComponent: PaymentLibComponent, bulkScaningPaymentService: BulkScaningPaymentService, OrderslistService: OrderslistService);
|
|
81
|
+
constructor(errorHandlerService: ErrorHandlerService, caseTransactionsService: CaseTransactionsService, formBuilder: FormBuilder, paymentViewService: PaymentViewService, paymentLibComponent: PaymentLibComponent, bulkScaningPaymentService: BulkScaningPaymentService);
|
|
92
82
|
ngOnInit(): void;
|
|
93
83
|
getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number;
|
|
94
84
|
getPaymentGroupDetails(): void;
|
|
@@ -102,6 +92,4 @@ export declare class AllocatePaymentsComponent implements OnInit {
|
|
|
102
92
|
saveAndContinue(): void;
|
|
103
93
|
getUnassignedPayment(): void;
|
|
104
94
|
selectRadioButton(key: any, type: any): void;
|
|
105
|
-
OrderListSelectEvent(orderef: any): void;
|
|
106
|
-
redirectToOrderFeeSearchPage(): void;
|
|
107
95
|
}
|
|
@@ -4,12 +4,9 @@ import { IPaymentGroup } from '../../interfaces/IPaymentGroup';
|
|
|
4
4
|
import { CaseTransactionsService } from '../../services/case-transactions/case-transactions.service';
|
|
5
5
|
import { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';
|
|
6
6
|
import { PaymentViewService } from '../../services/payment-view/payment-view.service';
|
|
7
|
-
import { OrderslistService } from '../../services/orderslist.service';
|
|
8
7
|
import { IFee } from '../../interfaces/IFee';
|
|
9
8
|
import { IPayment } from '../../interfaces/IPayment';
|
|
10
9
|
import { IRemission } from '../../interfaces/IRemission';
|
|
11
|
-
import { IPaymentView } from '../../interfaces/IPaymentView';
|
|
12
|
-
import { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';
|
|
13
10
|
import { Router } from '@angular/router';
|
|
14
11
|
export declare class CaseTransactionsComponent implements OnInit {
|
|
15
12
|
private router;
|
|
@@ -17,10 +14,7 @@ export declare class CaseTransactionsComponent implements OnInit {
|
|
|
17
14
|
private bulkScaningPaymentService;
|
|
18
15
|
private caseTransactionsService;
|
|
19
16
|
private paymentLibComponent;
|
|
20
|
-
private OrderslistService;
|
|
21
|
-
LOGGEDINUSERROLES: string[];
|
|
22
17
|
takePayment: boolean;
|
|
23
|
-
servicerequest: string;
|
|
24
18
|
ccdCaseNumber: string;
|
|
25
19
|
excReference: string;
|
|
26
20
|
paymentGroups: any[];
|
|
@@ -39,7 +33,6 @@ export declare class CaseTransactionsComponent implements OnInit {
|
|
|
39
33
|
paymentRef: string;
|
|
40
34
|
isTurnOff: boolean;
|
|
41
35
|
isNewPcipalOff: boolean;
|
|
42
|
-
isRefundRemission: boolean;
|
|
43
36
|
isOldPcipalOff: boolean;
|
|
44
37
|
isStrategicFixEnable: boolean;
|
|
45
38
|
isAddFeeBtnEnabled: boolean;
|
|
@@ -60,52 +53,15 @@ export declare class CaseTransactionsComponent implements OnInit {
|
|
|
60
53
|
totalRefundAmount: Number;
|
|
61
54
|
caseType: String;
|
|
62
55
|
lsCcdNumber: any;
|
|
63
|
-
|
|
64
|
-
paymentGroup: IPaymentGroup;
|
|
65
|
-
paymentView: IPaymentView;
|
|
66
|
-
orderDetail: any[];
|
|
67
|
-
isAddRemissionEnable: boolean;
|
|
68
|
-
orderRemissionDetails: any[];
|
|
69
|
-
orderLevelFees: IOrderReferenceFee[];
|
|
70
|
-
cpoDetails: any;
|
|
71
|
-
orderRef: string;
|
|
72
|
-
orderStatus: string;
|
|
73
|
-
orderParty: string;
|
|
74
|
-
orderCreated: Date;
|
|
75
|
-
orderCCDEvent: string;
|
|
76
|
-
serviveRequestValue: string;
|
|
77
|
-
orderAddBtnEnable: boolean;
|
|
78
|
-
orderFeesTotal: number;
|
|
79
|
-
orderRemissionTotal: number;
|
|
80
|
-
orderTotalPayments: number;
|
|
81
|
-
orderPendingPayments: number;
|
|
82
|
-
isCPODown: boolean;
|
|
83
|
-
test: boolean;
|
|
84
|
-
isPBA: boolean;
|
|
85
|
-
isIssueRefunfBtnEnable: boolean;
|
|
86
|
-
isAddRemissionBtnEnabled: boolean;
|
|
87
|
-
isRefundRemissionBtnEnable: boolean;
|
|
88
|
-
allowedRolesToAccessRefund: string[];
|
|
89
|
-
isFromServiceRequestPage: boolean;
|
|
90
|
-
navigationpage: string;
|
|
91
|
-
remissionFeeAmt: number;
|
|
92
|
-
constructor(router: Router, paymentViewService: PaymentViewService, bulkScaningPaymentService: BulkScaningPaymentService, caseTransactionsService: CaseTransactionsService, paymentLibComponent: PaymentLibComponent, OrderslistService: OrderslistService);
|
|
56
|
+
constructor(router: Router, paymentViewService: PaymentViewService, bulkScaningPaymentService: BulkScaningPaymentService, caseTransactionsService: CaseTransactionsService, paymentLibComponent: PaymentLibComponent);
|
|
93
57
|
ngOnInit(): void;
|
|
94
58
|
setDefaults(): void;
|
|
95
59
|
getAllocationStatus(payments: any): any;
|
|
96
60
|
checkForExceptionRecord(): void;
|
|
97
|
-
calculateOrderFeesAmounts(): void;
|
|
98
|
-
resetOrderVariables(): void;
|
|
99
|
-
goToOrderViewDetailSection(orderReferenceObj: any): void;
|
|
100
|
-
redirectToOrderFeeSearchPage(event: any, orderef: any): void;
|
|
101
|
-
goToCaseTransationPage(event: any): void;
|
|
102
61
|
calculateAmounts(): void;
|
|
103
62
|
calculateRefundAmount(): number;
|
|
104
63
|
getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number;
|
|
105
64
|
redirectToFeeSearchPage(event: any): void;
|
|
106
|
-
addRemission(fee: IFee): void;
|
|
107
|
-
addRefundForRemission(payment: IPayment, remission: IRemission[], fees: any): void;
|
|
108
|
-
redirectToremissionPage(event: any): void;
|
|
109
65
|
redirectToReportsPage(event: any): void;
|
|
110
66
|
loadFeeSummaryPage(paymentGroup: IPaymentGroup): void;
|
|
111
67
|
goToPaymentViewComponent(paymentGroup: any): void;
|
|
@@ -117,11 +73,4 @@ export declare class CaseTransactionsComponent implements OnInit {
|
|
|
117
73
|
cancelRemoval(): void;
|
|
118
74
|
removeFee(fee: any): void;
|
|
119
75
|
isCheckAmountdueExist(amountDue: any): boolean;
|
|
120
|
-
issueRefund(payment: IPayment): void;
|
|
121
|
-
chkForAddRemission(feeCode: string): boolean;
|
|
122
|
-
chkForPBAPayment(): boolean;
|
|
123
|
-
chkIssueRefundBtnEnable(payment: IPayment): boolean;
|
|
124
|
-
chkIsRefundRemissionBtnEnable(): boolean;
|
|
125
|
-
check4AllowedRoles2AccessRefund: () => boolean;
|
|
126
|
-
allowFurtherAccessAfter4Days: (payment: IPayment) => boolean;
|
|
127
76
|
}
|
|
@@ -8,14 +8,12 @@ import { IFee } from '../../interfaces/IFee';
|
|
|
8
8
|
import { SafeHtml } from '@angular/platform-browser';
|
|
9
9
|
import { Router } from '@angular/router';
|
|
10
10
|
import { Location } from '@angular/common';
|
|
11
|
-
import { OrderslistService } from '../../services/orderslist.service';
|
|
12
11
|
export declare class FeeSummaryComponent implements OnInit {
|
|
13
12
|
private router;
|
|
14
13
|
private bulkScaningPaymentService;
|
|
15
14
|
private location;
|
|
16
15
|
private paymentViewService;
|
|
17
16
|
private paymentLibComponent;
|
|
18
|
-
private OrderslistService;
|
|
19
17
|
paymentGroupRef: string;
|
|
20
18
|
ccdCaseNumber: string;
|
|
21
19
|
isTurnOff: string;
|
|
@@ -43,7 +41,7 @@ export declare class FeeSummaryComponent implements OnInit {
|
|
|
43
41
|
isRemissionsExist: Boolean;
|
|
44
42
|
isRemissionsMatch: boolean;
|
|
45
43
|
isStrategicFixEnable: boolean;
|
|
46
|
-
constructor(router: Router, bulkScaningPaymentService: BulkScaningPaymentService, location: Location, paymentViewService: PaymentViewService, paymentLibComponent: PaymentLibComponent
|
|
44
|
+
constructor(router: Router, bulkScaningPaymentService: BulkScaningPaymentService, location: Location, paymentViewService: PaymentViewService, paymentLibComponent: PaymentLibComponent);
|
|
47
45
|
ngOnInit(): void;
|
|
48
46
|
getUnassignedPaymentlist(): void;
|
|
49
47
|
getRemissionByFeeCode(feeCode: string): IRemission;
|
|
@@ -2,26 +2,10 @@ import { OnInit } from '@angular/core';
|
|
|
2
2
|
import { PaymentViewService } from '../../services/payment-view/payment-view.service';
|
|
3
3
|
import { PaymentLibComponent } from '../../payment-lib.component';
|
|
4
4
|
import { IPaymentGroup } from '../../interfaces/IPaymentGroup';
|
|
5
|
-
import { IFee } from '../../interfaces/IFee';
|
|
6
|
-
import { IPayment } from '../../interfaces/IPayment';
|
|
7
|
-
import { IRemission } from '../../interfaces/IRemission';
|
|
8
|
-
import { ChangeDetectorRef } from '@angular/core';
|
|
9
|
-
import { OrderslistService } from '../../services/orderslist.service';
|
|
10
5
|
export declare class PaymentViewComponent implements OnInit {
|
|
11
6
|
private paymentViewService;
|
|
12
7
|
private paymentLibComponent;
|
|
13
|
-
private cd;
|
|
14
|
-
private OrderslistService;
|
|
15
8
|
isTurnOff: boolean;
|
|
16
|
-
isTakePayment: boolean;
|
|
17
|
-
caseType: boolean;
|
|
18
|
-
isNewPcipalOff: boolean;
|
|
19
|
-
isOldPcipalOff: boolean;
|
|
20
|
-
orderRef: boolean;
|
|
21
|
-
orderStatus: boolean;
|
|
22
|
-
orderTotalPayments: boolean;
|
|
23
|
-
payment: IPayment;
|
|
24
|
-
LOGGEDINUSERROLES: string[];
|
|
25
9
|
paymentGroup: IPaymentGroup;
|
|
26
10
|
errorMessage: string;
|
|
27
11
|
ccdCaseNumber: string;
|
|
@@ -29,30 +13,10 @@ export declare class PaymentViewComponent implements OnInit {
|
|
|
29
13
|
dcnNumber: string;
|
|
30
14
|
isStatusAllocated: boolean;
|
|
31
15
|
isRemissionsMatch: boolean;
|
|
32
|
-
|
|
33
|
-
viewStatus: string;
|
|
34
|
-
isRefundRemission: boolean;
|
|
35
|
-
isStrategicFixEnable: boolean;
|
|
36
|
-
isAddFeeBtnEnabled: boolean;
|
|
37
|
-
isIssueRefunfBtnEnable: boolean;
|
|
38
|
-
allowedRolesToAccessRefund: string[];
|
|
39
|
-
remissions: IRemission[];
|
|
40
|
-
remissionFeeAmt: number;
|
|
41
|
-
isRefundRemissionBtnEnable: boolean;
|
|
42
|
-
constructor(paymentViewService: PaymentViewService, paymentLibComponent: PaymentLibComponent, cd: ChangeDetectorRef, OrderslistService: OrderslistService);
|
|
16
|
+
constructor(paymentViewService: PaymentViewService, paymentLibComponent: PaymentLibComponent);
|
|
43
17
|
ngOnInit(): void;
|
|
44
18
|
readonly isCardPayment: boolean;
|
|
45
19
|
readonly isTelephonyPayment: boolean;
|
|
46
20
|
goToPaymentList(): void;
|
|
47
21
|
goToCaseTransationPage(event: any): void;
|
|
48
|
-
addRemission(fee: IFee): void;
|
|
49
|
-
addRefundForRemission(payment: IPayment, remission: IRemission[], fees: any): void;
|
|
50
|
-
chkIsRefundRemissionBtnEnable(): boolean;
|
|
51
|
-
issueRefund(paymentgrp: IPaymentGroup): void;
|
|
52
|
-
getRemissionByFeeCode(feeCode: string, remissions: IRemission[]): IRemission;
|
|
53
|
-
chkIssueRefundBtnEnable(payment: IPayment): boolean;
|
|
54
|
-
chkForPBAPayment(): boolean;
|
|
55
|
-
chkForAddRemission(feeCode: string): boolean;
|
|
56
|
-
check4AllowedRoles2AccessRefund: () => boolean;
|
|
57
|
-
allowFurtherAccessAfter4Days: (payment: IPayment) => boolean;
|
|
58
22
|
}
|
|
@@ -5,7 +5,6 @@ import { PaymentLibComponent } from '../../payment-lib.component';
|
|
|
5
5
|
export declare class StatusHistoryComponent implements OnInit {
|
|
6
6
|
private statusHistoryService;
|
|
7
7
|
private paymentLibComponent;
|
|
8
|
-
isTakePayment: boolean;
|
|
9
8
|
pageTitle: string;
|
|
10
9
|
statuses: IStatusHistories;
|
|
11
10
|
errorMessage: string;
|
|
@@ -3,14 +3,10 @@ import { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/b
|
|
|
3
3
|
import { PaymentLibComponent } from '../../payment-lib.component';
|
|
4
4
|
import { IBSPayments } from '../../interfaces/IBSPayments';
|
|
5
5
|
import { Router } from '@angular/router';
|
|
6
|
-
import { PaymentViewService } from '../../services/payment-view/payment-view.service';
|
|
7
|
-
import { OrderslistService } from '../../services/orderslist.service';
|
|
8
6
|
export declare class UnprocessedPaymentsComponent implements OnInit {
|
|
9
7
|
private router;
|
|
10
8
|
private bulkScaningPaymentService;
|
|
11
9
|
private paymentLibComponent;
|
|
12
|
-
private paymentViewService;
|
|
13
|
-
private OrderslistService;
|
|
14
10
|
FEE_RECORDS_EXISTS: boolean;
|
|
15
11
|
PAYMENTREF: string;
|
|
16
12
|
ISTURNOFF: boolean;
|
|
@@ -19,8 +15,6 @@ export declare class UnprocessedPaymentsComponent implements OnInit {
|
|
|
19
15
|
ISNEWPCIPALOFF: boolean;
|
|
20
16
|
ISOLDPCIPALOFF: boolean;
|
|
21
17
|
ISSFENABLE: boolean;
|
|
22
|
-
PAYMENTSLENGTH: Number;
|
|
23
|
-
LEVEL: Number;
|
|
24
18
|
selectedUnprocessedFeeEvent: EventEmitter<string>;
|
|
25
19
|
getUnprocessedFeeCount: EventEmitter<string>;
|
|
26
20
|
viewStatus: string;
|
|
@@ -42,21 +36,16 @@ export declare class UnprocessedPaymentsComponent implements OnInit {
|
|
|
42
36
|
isOldpcipaloff: any;
|
|
43
37
|
isTurnOff: boolean;
|
|
44
38
|
isStFixEnable: any;
|
|
45
|
-
|
|
46
|
-
unassignedRecordListLength: number;
|
|
47
|
-
showContent: boolean;
|
|
48
|
-
constructor(router: Router, bulkScaningPaymentService: BulkScaningPaymentService, paymentLibComponent: PaymentLibComponent, paymentViewService: PaymentViewService, OrderslistService: OrderslistService);
|
|
39
|
+
constructor(router: Router, bulkScaningPaymentService: BulkScaningPaymentService, paymentLibComponent: PaymentLibComponent);
|
|
49
40
|
ngOnInit(): void;
|
|
50
41
|
getUnassignedPaymentlist(): void;
|
|
51
42
|
setValuesForUnassignedRecord(unassignedPayments: any): void;
|
|
52
43
|
formatUnassignedRecordId(ID: Number): string;
|
|
53
44
|
trimUnderscore(method: string): string;
|
|
54
|
-
redirectToFeeSearchPage(event: any
|
|
55
|
-
loadUnsolicitedPage(viewName: string
|
|
45
|
+
redirectToFeeSearchPage(event: any): void;
|
|
46
|
+
loadUnsolicitedPage(viewName: string): void;
|
|
56
47
|
unprocessedPaymentSelectEvent(selectedRecordReference: any): void;
|
|
57
|
-
|
|
58
|
-
goToAllocatePage(dcn_reference: any): void;
|
|
48
|
+
goToAllocatePage(): void;
|
|
59
49
|
validateButtons(): void;
|
|
60
50
|
unprocessedPaymentUnSelectEvent(event: any): void;
|
|
61
|
-
showDetailRow(event: any, obj: any, i: any): void;
|
|
62
51
|
}
|
|
@@ -5,48 +5,31 @@ export declare class PaymentLibComponent implements OnInit {
|
|
|
5
5
|
private paymentLibService;
|
|
6
6
|
API_ROOT: string;
|
|
7
7
|
BULKSCAN_API_ROOT: string;
|
|
8
|
-
REFUNDS_API_ROOT: string;
|
|
9
8
|
CCD_CASE_NUMBER: string;
|
|
10
9
|
EXC_REFERENCE: string;
|
|
11
10
|
PAYMENT_METHOD: string;
|
|
12
11
|
VIEW: string;
|
|
13
|
-
VIEWSERVICE: string;
|
|
14
12
|
PAYMENT_GROUP_REF?: string;
|
|
15
13
|
TAKEPAYMENT: boolean;
|
|
16
|
-
SERVICEREQUEST: string;
|
|
17
14
|
DCN_NUMBER: string;
|
|
18
15
|
SELECTED_OPTION: string;
|
|
19
16
|
ISBSENABLE: Boolean;
|
|
20
17
|
ISSFENABLE: boolean;
|
|
21
18
|
ISTURNOFF: boolean;
|
|
22
|
-
CASETYPE:
|
|
19
|
+
CASETYPE: String;
|
|
23
20
|
ISOLDPCIPALOFF: boolean;
|
|
24
21
|
ISNEWPCIPALOFF: boolean;
|
|
25
|
-
rootUrl: boolean;
|
|
26
|
-
REFUNDLIST: string;
|
|
27
|
-
USERID: string;
|
|
28
|
-
LOGGEDINUSERROLES: any[];
|
|
29
|
-
LOGGEDINUSEREMAIL: string;
|
|
30
|
-
isFromServiceRequestPage: boolean;
|
|
31
22
|
paymentMethod: string;
|
|
32
23
|
bspaymentdcn: string;
|
|
33
24
|
unProcessedPaymentServiceId: string;
|
|
34
25
|
paymentGroupReference: string;
|
|
35
26
|
paymentReference: string;
|
|
36
|
-
refundReference: string;
|
|
37
|
-
refundlistsource: any;
|
|
38
27
|
viewName: string;
|
|
39
28
|
isTurnOff: boolean;
|
|
40
29
|
caseType: string;
|
|
41
30
|
isOldPcipalOff: boolean;
|
|
42
31
|
isNewPcipalOff: boolean;
|
|
43
32
|
unProcessedPayment: IBSPayments;
|
|
44
|
-
isRefundStatusView: boolean;
|
|
45
|
-
isRedirectFromCaseTransactionPage: string;
|
|
46
|
-
isCallFromRefundList: boolean;
|
|
47
|
-
isFromRefundStatusPage: boolean;
|
|
48
|
-
iscancelClicked: boolean;
|
|
49
|
-
isFromPaymentDetailPage: boolean;
|
|
50
33
|
constructor(paymentLibService: PaymentLibService);
|
|
51
34
|
ngOnInit(): void;
|
|
52
35
|
}
|
|
@@ -1,12 +1,9 @@
|
|
|
1
1
|
export declare class PaymentLibService {
|
|
2
2
|
API_ROOT: string;
|
|
3
3
|
BULKSCAN_API_ROOT: string;
|
|
4
|
-
REFUNDS_API_ROOT: string;
|
|
5
4
|
constructor();
|
|
6
5
|
setApiRootUrl(apiRoot: string): void;
|
|
7
6
|
getApiRootUrl(): string;
|
|
8
7
|
setBulkScanApiRootUrl(bulkscanapiRoot: string): void;
|
|
9
8
|
getBulkScanApiRootUrl(): string;
|
|
10
|
-
setRefundndsApiRootUrl(refundsapiRoot: string): void;
|
|
11
|
-
getRefundsApiRootUrl(): string;
|
|
12
9
|
}
|
|
@@ -13,18 +13,12 @@ import { UnidentifiedPaymentsRequest } from '../../interfaces/UnidentifiedPaymen
|
|
|
13
13
|
import { UnsolicitedPaymentsRequest } from '../../interfaces/UnsolicitedPaymentsRequest';
|
|
14
14
|
import { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';
|
|
15
15
|
import { IAllocationPaymentsRequest } from '../../interfaces/IAllocationPaymentsRequest';
|
|
16
|
-
import { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';
|
|
17
|
-
import { BehaviorSubject } from 'rxjs';
|
|
18
|
-
import { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';
|
|
19
|
-
import { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';
|
|
20
|
-
import { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';
|
|
21
16
|
export declare class PaymentViewService {
|
|
22
17
|
private http;
|
|
23
18
|
private https;
|
|
24
19
|
private logger;
|
|
25
20
|
private errorHandlerService;
|
|
26
21
|
private paymentLibService;
|
|
27
|
-
private ordersList;
|
|
28
22
|
private meta;
|
|
29
23
|
constructor(http: HttpClient, https: WebComponentHttpClient, logger: LoggerService, errorHandlerService: ErrorHandlerService, paymentLibService: PaymentLibService);
|
|
30
24
|
getPaymentDetails(paymentReference: string, paymentMethod: string): Observable<IPayment>;
|
|
@@ -41,10 +35,4 @@ export declare class PaymentViewService {
|
|
|
41
35
|
downloadSelectedReport(reportName: string, startDate: string, endDate: string): Observable<any>;
|
|
42
36
|
getBSfeature(): Observable<any>;
|
|
43
37
|
getSiteID(): Observable<any>;
|
|
44
|
-
getPartyDetails(caseNumber: string): Observable<any>;
|
|
45
|
-
setOrdersList(orderLevelFees: IOrderReferenceFee[]): void;
|
|
46
|
-
getOrdersList(): BehaviorSubject<IOrderReferenceFee[]>;
|
|
47
|
-
postRefundsReason(body: PostRefundRetroRemission): Observable<any>;
|
|
48
|
-
postPaymentGroupWithRetroRemissions(paymentGroupReference: string, feeId: number, body: AddRetroRemissionRequest): Observable<any>;
|
|
49
|
-
postRefundRetroRemission(body: PostIssueRefundRetroRemission): Observable<any>;
|
|
50
38
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export declare class XlFileService {
|
|
2
2
|
constructor();
|
|
3
3
|
exportAsExcelFile(json: any[], excelFileName: string): void;
|
|
4
|
-
private autoFitColumns;
|
|
5
|
-
private setDataLossReportHeaders;
|
|
6
|
-
private setUnprocessedReportHeaders;
|
|
7
|
-
private setProcessedUnallocatedReportHeaders;
|
|
8
|
-
private setShortFallReportHeaders;
|
|
9
|
-
private saveAsExcelFile;
|
|
4
|
+
private autoFitColumns(worksheet, json);
|
|
5
|
+
private setDataLossReportHeaders(worksheet);
|
|
6
|
+
private setUnprocessedReportHeaders(worksheet);
|
|
7
|
+
private setProcessedUnallocatedReportHeaders(worksheet);
|
|
8
|
+
private setShortFallReportHeaders(worksheet);
|
|
9
|
+
private saveAsExcelFile(buffer, fileName);
|
|
10
10
|
}
|