@sachin9822/reports-lib 0.0.221 → 0.0.223
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/esm2020/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.mjs +2 -2
- package/esm2020/lib/components/accounting-report/accounting-report.component.mjs +3 -19
- package/esm2020/lib/components/branch-activity-send-report/branch-activity-send-report.component.mjs +3 -19
- package/esm2020/lib/components/cancellation-transaction-report/cancellation-transaction-report.component.mjs +3 -19
- package/esm2020/lib/components/revenue-per-transaction-report/revenue-per-transaction-report.component.mjs +3 -19
- package/esm2020/lib/components/transaction-enquiry-report/transaction-enquiry-report.component.mjs +3 -19
- package/fesm2015/sachin9822-reports-lib.mjs +12 -211
- package/fesm2015/sachin9822-reports-lib.mjs.map +1 -1
- package/fesm2020/sachin9822-reports-lib.mjs +11 -91
- package/fesm2020/sachin9822-reports-lib.mjs.map +1 -1
- package/lib/components/cancellation-transaction-report/cancellation-transaction-report.component.d.ts +1 -6
- package/package.json +1 -1
|
@@ -3603,7 +3603,7 @@ class AccGlDetailsEnquiryReportComponent {
|
|
|
3603
3603
|
};
|
|
3604
3604
|
this.rowData = formattedEntries;
|
|
3605
3605
|
this.companyName = data.companyName;
|
|
3606
|
-
this.reportUser = data.reportUser
|
|
3606
|
+
this.reportUser = data.reportUser?.toLowerCase();
|
|
3607
3607
|
this.reportTime = formatDate(new Date(), 'dd/MM/yyyy hh:mm a', 'en-US');
|
|
3608
3608
|
this.currentReportValueOrPostDate = formatDate(data.date, 'dd/MM/yyyy', 'en-US');
|
|
3609
3609
|
const DateType = this.dateType === 'VD' ? 'Value Date' : 'Posting Date';
|
|
@@ -3775,27 +3775,11 @@ class TransactionEnquiryComponent {
|
|
|
3775
3775
|
{ headerName: 'Send Client Branch', field: 'sendAgtBranch', flex: 1, minWidth: 120, tooltipField: 'sendAgtBranch' },
|
|
3776
3776
|
{ headerName: 'Receive Client', field: 'recvAgent', flex: 1, minWidth: 120, tooltipField: 'recvAgent' },
|
|
3777
3777
|
{ headerName: 'Receive Client Branch', field: 'rcvAgtBranch', flex: 1, minWidth: 120, tooltipField: 'rcvAgtBranch' },
|
|
3778
|
-
{ headerName: 'Is Sender Corporate', field: '
|
|
3779
|
-
valueFormatter: (params) => { if (!params.value)
|
|
3780
|
-
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
3781
|
-
return 'YES'; if (value === 'INDIVIDUAL')
|
|
3782
|
-
return 'NO'; return ''; },
|
|
3783
|
-
tooltipValueGetter: (params) => { if (!params.value)
|
|
3784
|
-
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
3785
|
-
return 'YES'; if (value === 'INDIVIDUAL')
|
|
3786
|
-
return 'NO'; return ''; } },
|
|
3778
|
+
{ headerName: 'Is Sender Corporate', field: 'isSenderCorporate', flex: 1, minWidth: 80 },
|
|
3787
3779
|
{ headerName: 'Sender Name', field: 'sendName', flex: 1, minWidth: 120, tooltipField: 'sendName' },
|
|
3788
3780
|
{ headerName: 'Sender ID Type', field: 'sendIdType', flex: 1, minWidth: 90, tooltipField: 'sendIdType' },
|
|
3789
3781
|
{ headerName: 'Sender ID Number', field: 'sendIdNumber', flex: 1, minWidth: 85, tooltipField: 'sendIdNumber' },
|
|
3790
|
-
{ headerName: 'Is Beneficiary Corporate', field: '
|
|
3791
|
-
valueFormatter: (params) => { if (!params.value)
|
|
3792
|
-
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
3793
|
-
return 'YES'; if (value === 'INDIVIDUAL')
|
|
3794
|
-
return 'NO'; return ''; },
|
|
3795
|
-
tooltipValueGetter: (params) => { if (!params.value)
|
|
3796
|
-
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
3797
|
-
return 'YES'; if (value === 'INDIVIDUAL')
|
|
3798
|
-
return 'NO'; return ''; } },
|
|
3782
|
+
{ headerName: 'Is Beneficiary Corporate', field: 'isBeneficiaryCorporate', flex: 1, minWidth: 80 },
|
|
3799
3783
|
{ headerName: 'Benf. Name', field: 'benName', flex: 1, minWidth: 100, tooltipField: 'benName' },
|
|
3800
3784
|
{ headerName: 'Receive Currency', field: 'payOutCurrency', flex: 1, minWidth: 80, tooltipField: 'payOutCurrency' },
|
|
3801
3785
|
{ headerName: 'Receive Amount', field: 'payOutAmount', flex: 1, minWidth: 100, cellClass: 'ag-right-aligned-cell ', tooltipField: 'payOutAmount' },
|
|
@@ -4046,25 +4030,9 @@ class BranchActivitySendReportComponent {
|
|
|
4046
4030
|
{ field: 'product', headerName: 'Product', flex: 0.5, wrapText: true, autoHeight: true, minWidth: 80, width: 120, tooltipField: 'product' },
|
|
4047
4031
|
{ field: 'sendAgentBranchCode', headerName: 'SendClient BranchCode', flex: 1, wrapText: true, autoHeight: true, minWidth: 90, width: 120, tooltipField: 'sendAgentBranchCode' },
|
|
4048
4032
|
{ field: 'receiveAgentCode', headerName: 'Receive ClientCode', flex: 1, wrapText: true, autoHeight: true, minWidth: 90, width: 70, tooltipField: 'receiveAgentCode' },
|
|
4049
|
-
{ headerName: 'Is Sender Corporate', field: '
|
|
4050
|
-
valueFormatter: (params) => { if (!params.value)
|
|
4051
|
-
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
4052
|
-
return 'YES'; if (value === 'INDIVIDUAL')
|
|
4053
|
-
return 'NO'; return ''; },
|
|
4054
|
-
tooltipValueGetter: (params) => { if (!params.value)
|
|
4055
|
-
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
4056
|
-
return 'YES'; if (value === 'INDIVIDUAL')
|
|
4057
|
-
return 'NO'; return ''; } },
|
|
4033
|
+
{ headerName: 'Is Sender Corporate', field: 'isSenderCorporate', flex: 1, minWidth: 80 },
|
|
4058
4034
|
{ headerName: 'Sender Name', field: 'senderName', flex: 1, minWidth: 120, tooltipField: 'senderName' },
|
|
4059
|
-
{ headerName: 'Is Beneficiary Corporate', field: '
|
|
4060
|
-
valueFormatter: (params) => { if (!params.value)
|
|
4061
|
-
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
4062
|
-
return 'YES'; if (value === 'INDIVIDUAL')
|
|
4063
|
-
return 'NO'; return ''; },
|
|
4064
|
-
tooltipValueGetter: (params) => { if (!params.value)
|
|
4065
|
-
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
4066
|
-
return 'YES'; if (value === 'INDIVIDUAL')
|
|
4067
|
-
return 'NO'; return ''; } },
|
|
4035
|
+
{ headerName: 'Is Beneficiary Corporate', field: 'isBeneficiaryCorporate', flex: 1, minWidth: 80 },
|
|
4068
4036
|
{ headerName: 'Beneficiary Name', field: 'beneficiaryName', flex: 1, minWidth: 100, tooltipField: 'beneficiaryName' },
|
|
4069
4037
|
{ field: 'payoutCCcode', headerName: 'ReceiveCcy Code', flex: 1, wrapText: true, autoHeight: true, minWidth: 90, width: 110, tooltipField: 'payoutCCcode' },
|
|
4070
4038
|
{ field: 'payoutAmount', headerName: 'Receive Amount', flex: 1, wrapText: true, autoHeight: true, minWidth: 90, maxWidth: 120, cellClass: 'ag-right-aligned-cell compact-cell', tooltipField: 'payoutAmount' },
|
|
@@ -4514,25 +4482,9 @@ class CancellationTransactionReportComponent {
|
|
|
4514
4482
|
{ headerName: 'Send Client Branch Code', field: 'sendAgentBranchCode', flex: 1, minWidth: 90, tooltipField: 'sendAgentBranchCode' },
|
|
4515
4483
|
{ headerName: 'Send Principal Client Code (If Applicable)', field: 'sendPrincipalAgentCode', flex: 1, minWidth: 90, tooltipField: 'sendPrincipalAgentCode' },
|
|
4516
4484
|
{ headerName: 'Receive Client Code', field: 'recvAGTcode', flex: 1, minWidth: 80, tooltipField: 'recvAGTcode' },
|
|
4517
|
-
{ headerName: 'Is Sender Corporate', field: '
|
|
4518
|
-
valueFormatter: (params) => { if (!params.value)
|
|
4519
|
-
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
4520
|
-
return 'YES'; if (value === 'INDIVIDUAL')
|
|
4521
|
-
return 'NO'; return ''; },
|
|
4522
|
-
tooltipValueGetter: (params) => { if (!params.value)
|
|
4523
|
-
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
4524
|
-
return 'YES'; if (value === 'INDIVIDUAL')
|
|
4525
|
-
return 'NO'; return ''; } },
|
|
4485
|
+
{ headerName: 'Is Sender Corporate', field: 'isSenderCorporate', flex: 1, minWidth: 80 },
|
|
4526
4486
|
{ headerName: 'Sender Name', field: 'senderName', flex: 1, minWidth: 120, tooltipField: 'senderName' },
|
|
4527
|
-
{ headerName: 'Is Beneficiary Corporate', field: '
|
|
4528
|
-
valueFormatter: (params) => { if (!params.value)
|
|
4529
|
-
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
4530
|
-
return 'YES'; if (value === 'INDIVIDUAL')
|
|
4531
|
-
return 'NO'; return ''; },
|
|
4532
|
-
tooltipValueGetter: (params) => { if (!params.value)
|
|
4533
|
-
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
4534
|
-
return 'YES'; if (value === 'INDIVIDUAL')
|
|
4535
|
-
return 'NO'; return ''; } },
|
|
4487
|
+
{ headerName: 'Is Beneficiary Corporate', field: 'isBeneficiaryCorporate', flex: 1, minWidth: 80 },
|
|
4536
4488
|
{ headerName: 'Beneficiary Name', field: 'beneficiaryName', flex: 1, minWidth: 100, tooltipField: 'beneficiaryName' },
|
|
4537
4489
|
{ headerName: 'Receive CcyCode', field: 'payoutCCcode', flex: 1, minWidth: 65, tooltipField: 'payoutCCcode' },
|
|
4538
4490
|
{ headerName: 'Receive Amount', field: 'payOutAmount', flex: 1, minWidth: 82, cellClass: 'ag-right-aligned-cell', tooltipField: 'payOutAmount' },
|
|
@@ -4775,24 +4727,8 @@ class RevenuePerTransactionReportComponent {
|
|
|
4775
4727
|
{ field: 'receiveCountry', headerName: 'Receive Country', flex: 1, headerClass: 'ag-header-cell', minWidth: 80, wrapText: true, autoHeight: true, tooltipField: 'receiveCountry' },
|
|
4776
4728
|
{ field: 'receiveAgentName', headerName: 'ReceiveClient Name', flex: 1, headerClass: 'ag-header-cell', minWidth: 150, wrapText: true, autoHeight: true, tooltipField: 'receiveAgentName' },
|
|
4777
4729
|
{ field: 'receiveAgentCode', headerName: 'ReceiveClient Code', flex: 1, headerClass: 'ag-header-cell', minWidth: 90, wrapText: true, autoHeight: true, tooltipField: 'receiveAgentCode' },
|
|
4778
|
-
{ headerName: 'Is Sender Corporate', field: '
|
|
4779
|
-
|
|
4780
|
-
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
4781
|
-
return 'YES'; if (value === 'INDIVIDUAL')
|
|
4782
|
-
return 'NO'; return ''; },
|
|
4783
|
-
tooltipValueGetter: (params) => { if (!params.value)
|
|
4784
|
-
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
4785
|
-
return 'YES'; if (value === 'INDIVIDUAL')
|
|
4786
|
-
return 'NO'; return ''; } },
|
|
4787
|
-
{ headerName: 'Is Beneficiary Corporate', field: 'beneficiaryType', flex: 1, minWidth: 80,
|
|
4788
|
-
valueFormatter: (params) => { if (!params.value)
|
|
4789
|
-
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
4790
|
-
return 'YES'; if (value === 'INDIVIDUAL')
|
|
4791
|
-
return 'NO'; return ''; },
|
|
4792
|
-
tooltipValueGetter: (params) => { if (!params.value)
|
|
4793
|
-
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
4794
|
-
return 'YES'; if (value === 'INDIVIDUAL')
|
|
4795
|
-
return 'NO'; return ''; } },
|
|
4730
|
+
{ headerName: 'Is Sender Corporate', field: 'isSenderCorporate', flex: 1, minWidth: 80 },
|
|
4731
|
+
{ headerName: 'Is Beneficiary Corporate', field: 'isBeneficiaryCorporate', flex: 1, minWidth: 80 },
|
|
4796
4732
|
{ field: 'payInCurrency', headerName: 'Send CcyCode', flex: 1, headerClass: 'ag-header-cell', minWidth: 80, wrapText: true, autoHeight: true, tooltipField: 'payInCurrency' },
|
|
4797
4733
|
{ field: 'payInAmount', headerName: 'Send Amount', flex: 1, headerClass: 'ag-header-cell', minWidth: 80, wrapText: true, autoHeight: true, cellClass: 'ag-right-aligned-cell compact-cell', tooltipField: 'payInAmount' },
|
|
4798
4734
|
{ field: 'transactionCommission', headerName: 'Service Fee', flex: 1, headerClass: 'ag-header-cell', minWidth: 80, wrapText: true, autoHeight: true, cellClass: 'ag-right-aligned-cell compact-cell', tooltipField: 'transactionCommission' },
|
|
@@ -5792,24 +5728,8 @@ class AccountingReportComponent {
|
|
|
5792
5728
|
{ headerName: 'Principle SendClient (If Applicable)', field: 'principleSendClient', tooltipField: 'principleSendClient', minWidth: 90, },
|
|
5793
5729
|
{ headerName: 'ReceiveClient', field: 'receiveClient', minWidth: 90, tooltipField: 'receiveClient' },
|
|
5794
5730
|
{ headerName: 'Principle ReceiveClient (If Applicable)', field: 'principleReceiveClient', tooltipField: 'principleReceiveClient', minWidth: 90 },
|
|
5795
|
-
{ headerName: 'Is Sender Corporate', field: '
|
|
5796
|
-
|
|
5797
|
-
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
5798
|
-
return 'YES'; if (value === 'INDIVIDUAL')
|
|
5799
|
-
return 'NO'; return ''; },
|
|
5800
|
-
tooltipValueGetter: (params) => { if (!params.value)
|
|
5801
|
-
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
5802
|
-
return 'YES'; if (value === 'INDIVIDUAL')
|
|
5803
|
-
return 'NO'; return ''; } },
|
|
5804
|
-
{ headerName: 'Is Beneficiary Corporate', field: 'beneficiaryType', minWidth: 80,
|
|
5805
|
-
valueFormatter: (params) => { if (!params.value)
|
|
5806
|
-
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
5807
|
-
return 'YES'; if (value === 'INDIVIDUAL')
|
|
5808
|
-
return 'NO'; return ''; },
|
|
5809
|
-
tooltipValueGetter: (params) => { if (!params.value)
|
|
5810
|
-
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
5811
|
-
return 'YES'; if (value === 'INDIVIDUAL')
|
|
5812
|
-
return 'NO'; return ''; } },
|
|
5731
|
+
{ headerName: 'Is Sender Corporate', field: 'isSenderCorporate', minWidth: 80 },
|
|
5732
|
+
{ headerName: 'Is Beneficiary Corporate', field: 'isBeneficiaryCorporate', minWidth: 80 },
|
|
5813
5733
|
{ headerName: 'ReceiveCcy', field: 'receiveCurrency', minWidth: 80, tooltipField: 'receiveCurrency' },
|
|
5814
5734
|
{ headerName: 'AmountPaid', field: 'amountPaid', minWidth: 85, tooltipField: 'amountPaid', cellClass: 'ag-right-aligned-cell' },
|
|
5815
5735
|
{ headerName: 'SendCcy', field: 'sendCurrency', minWidth: 80, tooltipField: 'sendCurrency', },
|