@sachin9822/reports-lib 0.0.217 → 0.0.219

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.
@@ -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' },
@@ -5767,14 +5785,14 @@ class AccountingReportComponent {
5767
5785
  autoHeight: true
5768
5786
  };
5769
5787
  this.columnDefs = [
5770
- { headerName: 'BusinessDate', field: 'businessDate', tooltipField: 'businessDate' },
5788
+ { headerName: 'BusinessDate', field: 'businessDate', minWidth: 95, tooltipField: 'businessDate' },
5771
5789
  { headerName: 'TxnDate&Time', field: 'transactionDateAndTime', tooltipField: 'transactionDateAndTime', minWidth: 110, },
5772
- { headerName: 'Transaction Number', field: 'transactionNumber', tooltipField: 'transactionNumber' },
5773
- { headerName: 'SendClient', field: 'sendClient', tooltipField: 'sendClient' },
5774
- { headerName: 'Principle SendClient (If Applicable)', field: 'principleSendClient', tooltipField: 'principleSendClient', width: 90, minWidth: 80, maxWidth: 110 },
5775
- { headerName: 'ReceiveClient', field: 'receiveClient', tooltipField: 'receiveClient' },
5776
- { headerName: 'Principle ReceiveClient (If Applicable)', field: 'principleReceiveClient', tooltipField: 'principleReceiveClient', width: 100, minWidth: 90, maxWidth: 120 },
5777
- { headerName: 'Is Sender Corporate', field: 'senderType', flex: 1, minWidth: 80,
5790
+ { headerName: 'Transaction Number', field: 'transactionNumber', minWidth: 100, tooltipField: 'transactionNumber' },
5791
+ { headerName: 'SendClient', field: 'sendClient', minWidth: 80, tooltipField: 'sendClient' },
5792
+ { headerName: 'Principle SendClient (If Applicable)', field: 'principleSendClient', tooltipField: 'principleSendClient', minWidth: 90, },
5793
+ { headerName: 'ReceiveClient', field: 'receiveClient', minWidth: 90, tooltipField: 'receiveClient' },
5794
+ { headerName: 'Principle ReceiveClient (If Applicable)', field: 'principleReceiveClient', tooltipField: 'principleReceiveClient', minWidth: 90 },
5795
+ { headerName: 'Is Sender Corporate', field: 'senderType', minWidth: 80,
5778
5796
  valueFormatter: (params) => { if (!params.value)
5779
5797
  return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
5780
5798
  return 'YES'; if (value === 'INDIVIDUAL')
@@ -5783,7 +5801,7 @@ class AccountingReportComponent {
5783
5801
  return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
5784
5802
  return 'YES'; if (value === 'INDIVIDUAL')
5785
5803
  return 'NO'; return ''; } },
5786
- { headerName: 'Is Beneficiary Corporate', field: 'beneficiaryType', flex: 1, minWidth: 80,
5804
+ { headerName: 'Is Beneficiary Corporate', field: 'beneficiaryType', minWidth: 80,
5787
5805
  valueFormatter: (params) => { if (!params.value)
5788
5806
  return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
5789
5807
  return 'YES'; if (value === 'INDIVIDUAL')
@@ -5792,21 +5810,21 @@ class AccountingReportComponent {
5792
5810
  return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
5793
5811
  return 'YES'; if (value === 'INDIVIDUAL')
5794
5812
  return 'NO'; return ''; } },
5795
- { headerName: 'ReceiveCcy', field: 'receiveCurrency', tooltipField: 'receiveCurrency' },
5796
- { headerName: 'AmountPaid', field: 'amountPaid', tooltipField: 'amountPaid', cellClass: 'ag-right-aligned-cell' },
5797
- { headerName: 'SendCcy', field: 'sendCurrency', tooltipField: 'sendCurrency', },
5798
- { headerName: 'ServiceFee', field: 'serviceFee', tooltipField: 'serviceFee', cellClass: 'ag-right-aligned-cell' },
5799
- { headerName: 'Tax', field: 'tax', tooltipField: 'tax', cellClass: 'ag-right-aligned-cell' },
5800
- { headerName: 'PrincipleSend Amount', field: 'principleSendAmount', tooltipField: 'principleSendAmount', cellClass: 'ag-right-aligned-cell' },
5801
- { headerName: 'Transaction Status', field: 'transactionStatus', tooltipField: 'transactionStatus' },
5802
- { headerName: 'SettlementCcy', field: 'settlementCurrency', tooltipField: 'settlementCurrency', cellClass: 'ag-right-aligned-cell' },
5803
- { headerName: 'ClientSettl (in SCcy)', field: 'clientSettlementInSCcy', tooltipField: 'clientSettlementInSCcy', cellClass: 'ag-right-aligned-cell' },
5804
- { headerName: 'ClientSettl (in USD)', field: 'clientSettlementInUSD', tooltipField: 'clientSettlementInUSD', cellClass: 'ag-right-aligned-cell' },
5805
- { headerName: 'ShareType', field: 'shareType', tooltipField: 'shareType' },
5806
- { headerName: 'ShareValue', field: 'shareValue', tooltipField: 'shareValue', cellClass: 'ag-right-aligned-cell' },
5807
- { headerName: 'Send/Receive FeeCcy', field: 'sendReceiveFeeCcy', tooltipField: 'sendReceiveFeeCcy' },
5808
- { headerName: 'ShareAmt (in USD)', field: 'shareAmountInUSD', tooltipField: 'shareAmountInUSD', cellClass: 'ag-right-aligned-cell' },
5809
- { headerName: 'Settlement Rate', field: 'settlementRate', tooltipField: 'settlementRate', cellClass: 'ag-right-aligned-cell' },
5813
+ { headerName: 'ReceiveCcy', field: 'receiveCurrency', minWidth: 80, tooltipField: 'receiveCurrency' },
5814
+ { headerName: 'AmountPaid', field: 'amountPaid', minWidth: 85, tooltipField: 'amountPaid', cellClass: 'ag-right-aligned-cell' },
5815
+ { headerName: 'SendCcy', field: 'sendCurrency', minWidth: 80, tooltipField: 'sendCurrency', },
5816
+ { headerName: 'ServiceFee', field: 'serviceFee', minWidth: 80, tooltipField: 'serviceFee', cellClass: 'ag-right-aligned-cell' },
5817
+ { headerName: 'Tax', field: 'tax', minWidth: 70, tooltipField: 'tax', cellClass: 'ag-right-aligned-cell' },
5818
+ { headerName: 'PrincipleSend Amount', field: 'principleSendAmount', minWidth: 90, tooltipField: 'principleSendAmount', cellClass: 'ag-right-aligned-cell' },
5819
+ { headerName: 'Transaction Status', field: 'transactionStatus', minWidth: 90, tooltipField: 'transactionStatus' },
5820
+ { headerName: 'SettlementCcy', field: 'settlementCurrency', minWidth: 90, tooltipField: 'settlementCurrency', cellClass: 'ag-right-aligned-cell' },
5821
+ { headerName: 'ClientSettl (in SCcy)', field: 'clientSettlementInSCcy', minWidth: 80, tooltipField: 'clientSettlementInSCcy', cellClass: 'ag-right-aligned-cell' },
5822
+ { headerName: 'ClientSettl (in USD)', field: 'clientSettlementInUSD', minWidth: 80, tooltipField: 'clientSettlementInUSD', cellClass: 'ag-right-aligned-cell' },
5823
+ { headerName: 'ShareType', field: 'shareType', minWidth: 85, tooltipField: 'shareType' },
5824
+ { headerName: 'ShareValue', field: 'shareValue', minWidth: 85, tooltipField: 'shareValue', cellClass: 'ag-right-aligned-cell' },
5825
+ { headerName: 'Send/Receive FeeCcy', field: 'sendReceiveFeeCcy', minWidth: 85, tooltipField: 'sendReceiveFeeCcy' },
5826
+ { headerName: 'ShareAmt (in USD)', field: 'shareAmountInUSD', minWidth: 80, tooltipField: 'shareAmountInUSD', cellClass: 'ag-right-aligned-cell' },
5827
+ { headerName: 'Settlement Rate', field: 'settlementRate', minWidth: 85, tooltipField: 'settlementRate', cellClass: 'ag-right-aligned-cell' },
5810
5828
  ];
5811
5829
  this.gridApis = [];
5812
5830
  this.gridColumnApis = [];
@@ -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' },