@sachin9822/reports-lib 0.0.217 → 0.0.218
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/branch-activity-send-summary-report/branch-activity-send-summary-report.component.mjs +1 -19
- package/esm2020/lib/components/revenue-per-transaction-report/revenue-per-transaction-report.component.mjs +19 -1
- package/esm2020/lib/components/transaction-enquiry-report/transaction-enquiry-report.component.mjs +3 -3
- package/fesm2015/sachin9822-reports-lib.mjs +44 -44
- package/fesm2015/sachin9822-reports-lib.mjs.map +1 -1
- package/fesm2020/sachin9822-reports-lib.mjs +20 -20
- package/fesm2020/sachin9822-reports-lib.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -3774,6 +3774,7 @@ class TransactionEnquiryComponent {
|
|
|
3774
3774
|
{ headerName: 'Send Client', field: 'sendAgent', flex: 1, minWidth: 120, tooltipField: 'sendAgent' },
|
|
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
|
+
{ headerName: 'Receive Client Branch', field: 'rcvAgtBranch', flex: 1, minWidth: 120, tooltipField: 'rcvAgtBranch' },
|
|
3777
3778
|
{ headerName: 'Is Sender Corporate', field: 'senderType', flex: 1, minWidth: 80,
|
|
3778
3779
|
valueFormatter: (params) => { if (!params.value)
|
|
3779
3780
|
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
@@ -3784,8 +3785,8 @@ class TransactionEnquiryComponent {
|
|
|
3784
3785
|
return 'YES'; if (value === 'INDIVIDUAL')
|
|
3785
3786
|
return 'NO'; return ''; } },
|
|
3786
3787
|
{ headerName: 'Sender Name', field: 'sendName', flex: 1, minWidth: 120, tooltipField: 'sendName' },
|
|
3787
|
-
{ headerName: 'Receive Client Branch', field: 'rcvAgtBranch', flex: 1, minWidth: 120, tooltipField: 'rcvAgtBranch' },
|
|
3788
3788
|
{ headerName: 'Sender ID Type', field: 'sendIdType', flex: 1, minWidth: 90, tooltipField: 'sendIdType' },
|
|
3789
|
+
{ headerName: 'Sender ID Number', field: 'sendIdNumber', flex: 1, minWidth: 85, tooltipField: 'sendIdNumber' },
|
|
3789
3790
|
{ headerName: 'Is Beneficiary Corporate', field: 'beneficiaryType', flex: 1, minWidth: 80,
|
|
3790
3791
|
valueFormatter: (params) => { if (!params.value)
|
|
3791
3792
|
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
@@ -3796,7 +3797,6 @@ class TransactionEnquiryComponent {
|
|
|
3796
3797
|
return 'YES'; if (value === 'INDIVIDUAL')
|
|
3797
3798
|
return 'NO'; return ''; } },
|
|
3798
3799
|
{ headerName: 'Benf. Name', field: 'benName', flex: 1, minWidth: 100, tooltipField: 'benName' },
|
|
3799
|
-
{ headerName: 'Sender ID Number', field: 'sendIdNumber', flex: 1, minWidth: 85, tooltipField: 'sendIdNumber' },
|
|
3800
3800
|
{ headerName: 'Receive Currency', field: 'payOutCurrency', flex: 1, minWidth: 80, tooltipField: 'payOutCurrency' },
|
|
3801
3801
|
{ headerName: 'Receive Amount', field: 'payOutAmount', flex: 1, minWidth: 100, cellClass: 'ag-right-aligned-cell ', tooltipField: 'payOutAmount' },
|
|
3802
3802
|
{ headerName: 'Send Currency', field: 'payInCurrency', flex: 1, minWidth: 70, tooltipField: 'payInCurrency' },
|
|
@@ -4775,6 +4775,24 @@ class RevenuePerTransactionReportComponent {
|
|
|
4775
4775
|
{ field: 'receiveCountry', headerName: 'Receive Country', flex: 1, headerClass: 'ag-header-cell', minWidth: 80, wrapText: true, autoHeight: true, tooltipField: 'receiveCountry' },
|
|
4776
4776
|
{ field: 'receiveAgentName', headerName: 'ReceiveClient Name', flex: 1, headerClass: 'ag-header-cell', minWidth: 150, wrapText: true, autoHeight: true, tooltipField: 'receiveAgentName' },
|
|
4777
4777
|
{ 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: 'senderType', flex: 1, minWidth: 80,
|
|
4779
|
+
valueFormatter: (params) => { if (!params.value)
|
|
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 ''; } },
|
|
4778
4796
|
{ field: 'payInCurrency', headerName: 'Send CcyCode', flex: 1, headerClass: 'ag-header-cell', minWidth: 80, wrapText: true, autoHeight: true, tooltipField: 'payInCurrency' },
|
|
4779
4797
|
{ 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' },
|
|
4780
4798
|
{ 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' },
|
|
@@ -7348,24 +7366,6 @@ class BranchActivitySendSummaryReportComponent {
|
|
|
7348
7366
|
}
|
|
7349
7367
|
},
|
|
7350
7368
|
{ field: 'product', headerName: 'Product', flex: 1, wrapText: true, autoHeight: true, minWidth: 80, width: 120, tooltipField: 'product' },
|
|
7351
|
-
{ headerName: 'Is Sender Corporate', field: 'senderType', flex: 1, minWidth: 80,
|
|
7352
|
-
valueFormatter: (params) => { if (!params.value)
|
|
7353
|
-
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
7354
|
-
return 'YES'; if (value === 'INDIVIDUAL')
|
|
7355
|
-
return 'NO'; return ''; },
|
|
7356
|
-
tooltipValueGetter: (params) => { if (!params.value)
|
|
7357
|
-
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
7358
|
-
return 'YES'; if (value === 'INDIVIDUAL')
|
|
7359
|
-
return 'NO'; return ''; } },
|
|
7360
|
-
{ headerName: 'Is Beneficiary Corporate', field: 'beneficiaryType', flex: 1, minWidth: 80,
|
|
7361
|
-
valueFormatter: (params) => { if (!params.value)
|
|
7362
|
-
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
7363
|
-
return 'YES'; if (value === 'INDIVIDUAL')
|
|
7364
|
-
return 'NO'; return ''; },
|
|
7365
|
-
tooltipValueGetter: (params) => { if (!params.value)
|
|
7366
|
-
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
7367
|
-
return 'YES'; if (value === 'INDIVIDUAL')
|
|
7368
|
-
return 'NO'; return ''; } },
|
|
7369
7369
|
{ field: 'payoutCCcode', headerName: 'Receive Currency', flex: 1, wrapText: true, autoHeight: true, minWidth: 90, width: 110, tooltipField: 'payoutCCcode' },
|
|
7370
7370
|
{ field: 'payoutAmount', headerName: 'Receive Amount', flex: 1, wrapText: true, autoHeight: true, minWidth: 90, maxWidth: 120, cellClass: 'ag-right-aligned-cell compact-cell', tooltipField: 'payoutAmount' },
|
|
7371
7371
|
{ field: 'payinCCcode', headerName: 'Send Currency', flex: 1, wrapText: true, autoHeight: true, minWidth: 90, maxWidth: 90, tooltipField: 'payinCCcode' },
|