@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.
- package/esm2020/lib/components/accounting-report/accounting-report.component.mjs +24 -24
- 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 +67 -67
- package/fesm2015/sachin9822-reports-lib.mjs.map +1 -1
- package/fesm2020/sachin9822-reports-lib.mjs +43 -43
- package/fesm2020/sachin9822-reports-lib.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -3801,6 +3801,7 @@ class TransactionEnquiryComponent {
|
|
|
3801
3801
|
{ headerName: 'Send Client', field: 'sendAgent', flex: 1, minWidth: 120, tooltipField: 'sendAgent' },
|
|
3802
3802
|
{ headerName: 'Send Client Branch', field: 'sendAgtBranch', flex: 1, minWidth: 120, tooltipField: 'sendAgtBranch' },
|
|
3803
3803
|
{ headerName: 'Receive Client', field: 'recvAgent', flex: 1, minWidth: 120, tooltipField: 'recvAgent' },
|
|
3804
|
+
{ headerName: 'Receive Client Branch', field: 'rcvAgtBranch', flex: 1, minWidth: 120, tooltipField: 'rcvAgtBranch' },
|
|
3804
3805
|
{ headerName: 'Is Sender Corporate', field: 'senderType', flex: 1, minWidth: 80,
|
|
3805
3806
|
valueFormatter: (params) => {
|
|
3806
3807
|
if (!params.value)
|
|
@@ -3823,8 +3824,8 @@ class TransactionEnquiryComponent {
|
|
|
3823
3824
|
return '';
|
|
3824
3825
|
} },
|
|
3825
3826
|
{ headerName: 'Sender Name', field: 'sendName', flex: 1, minWidth: 120, tooltipField: 'sendName' },
|
|
3826
|
-
{ headerName: 'Receive Client Branch', field: 'rcvAgtBranch', flex: 1, minWidth: 120, tooltipField: 'rcvAgtBranch' },
|
|
3827
3827
|
{ headerName: 'Sender ID Type', field: 'sendIdType', flex: 1, minWidth: 90, tooltipField: 'sendIdType' },
|
|
3828
|
+
{ headerName: 'Sender ID Number', field: 'sendIdNumber', flex: 1, minWidth: 85, tooltipField: 'sendIdNumber' },
|
|
3828
3829
|
{ headerName: 'Is Beneficiary Corporate', field: 'beneficiaryType', flex: 1, minWidth: 80,
|
|
3829
3830
|
valueFormatter: (params) => {
|
|
3830
3831
|
if (!params.value)
|
|
@@ -3847,7 +3848,6 @@ class TransactionEnquiryComponent {
|
|
|
3847
3848
|
return '';
|
|
3848
3849
|
} },
|
|
3849
3850
|
{ headerName: 'Benf. Name', field: 'benName', flex: 1, minWidth: 100, tooltipField: 'benName' },
|
|
3850
|
-
{ headerName: 'Sender ID Number', field: 'sendIdNumber', flex: 1, minWidth: 85, tooltipField: 'sendIdNumber' },
|
|
3851
3851
|
{ headerName: 'Receive Currency', field: 'payOutCurrency', flex: 1, minWidth: 80, tooltipField: 'payOutCurrency' },
|
|
3852
3852
|
{ headerName: 'Receive Amount', field: 'payOutAmount', flex: 1, minWidth: 100, cellClass: 'ag-right-aligned-cell ', tooltipField: 'payOutAmount' },
|
|
3853
3853
|
{ headerName: 'Send Currency', field: 'payInCurrency', flex: 1, minWidth: 70, tooltipField: 'payInCurrency' },
|
|
@@ -4879,6 +4879,48 @@ class RevenuePerTransactionReportComponent {
|
|
|
4879
4879
|
{ field: 'receiveCountry', headerName: 'Receive Country', flex: 1, headerClass: 'ag-header-cell', minWidth: 80, wrapText: true, autoHeight: true, tooltipField: 'receiveCountry' },
|
|
4880
4880
|
{ field: 'receiveAgentName', headerName: 'ReceiveClient Name', flex: 1, headerClass: 'ag-header-cell', minWidth: 150, wrapText: true, autoHeight: true, tooltipField: 'receiveAgentName' },
|
|
4881
4881
|
{ field: 'receiveAgentCode', headerName: 'ReceiveClient Code', flex: 1, headerClass: 'ag-header-cell', minWidth: 90, wrapText: true, autoHeight: true, tooltipField: 'receiveAgentCode' },
|
|
4882
|
+
{ headerName: 'Is Sender Corporate', field: 'senderType', flex: 1, minWidth: 80,
|
|
4883
|
+
valueFormatter: (params) => {
|
|
4884
|
+
if (!params.value)
|
|
4885
|
+
return '';
|
|
4886
|
+
const value = params.value.toUpperCase();
|
|
4887
|
+
if (value === 'CORPORATE')
|
|
4888
|
+
return 'YES';
|
|
4889
|
+
if (value === 'INDIVIDUAL')
|
|
4890
|
+
return 'NO';
|
|
4891
|
+
return '';
|
|
4892
|
+
},
|
|
4893
|
+
tooltipValueGetter: (params) => {
|
|
4894
|
+
if (!params.value)
|
|
4895
|
+
return '';
|
|
4896
|
+
const value = params.value.toUpperCase();
|
|
4897
|
+
if (value === 'CORPORATE')
|
|
4898
|
+
return 'YES';
|
|
4899
|
+
if (value === 'INDIVIDUAL')
|
|
4900
|
+
return 'NO';
|
|
4901
|
+
return '';
|
|
4902
|
+
} },
|
|
4903
|
+
{ headerName: 'Is Beneficiary Corporate', field: 'beneficiaryType', flex: 1, minWidth: 80,
|
|
4904
|
+
valueFormatter: (params) => {
|
|
4905
|
+
if (!params.value)
|
|
4906
|
+
return '';
|
|
4907
|
+
const value = params.value.toUpperCase();
|
|
4908
|
+
if (value === 'CORPORATE')
|
|
4909
|
+
return 'YES';
|
|
4910
|
+
if (value === 'INDIVIDUAL')
|
|
4911
|
+
return 'NO';
|
|
4912
|
+
return '';
|
|
4913
|
+
},
|
|
4914
|
+
tooltipValueGetter: (params) => {
|
|
4915
|
+
if (!params.value)
|
|
4916
|
+
return '';
|
|
4917
|
+
const value = params.value.toUpperCase();
|
|
4918
|
+
if (value === 'CORPORATE')
|
|
4919
|
+
return 'YES';
|
|
4920
|
+
if (value === 'INDIVIDUAL')
|
|
4921
|
+
return 'NO';
|
|
4922
|
+
return '';
|
|
4923
|
+
} },
|
|
4882
4924
|
{ field: 'payInCurrency', headerName: 'Send CcyCode', flex: 1, headerClass: 'ag-header-cell', minWidth: 80, wrapText: true, autoHeight: true, tooltipField: 'payInCurrency' },
|
|
4883
4925
|
{ 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' },
|
|
4884
4926
|
{ 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' },
|
|
@@ -5885,14 +5927,14 @@ class AccountingReportComponent {
|
|
|
5885
5927
|
autoHeight: true
|
|
5886
5928
|
};
|
|
5887
5929
|
this.columnDefs = [
|
|
5888
|
-
{ headerName: 'BusinessDate', field: 'businessDate', tooltipField: 'businessDate' },
|
|
5930
|
+
{ headerName: 'BusinessDate', field: 'businessDate', minWidth: 95, tooltipField: 'businessDate' },
|
|
5889
5931
|
{ headerName: 'TxnDate&Time', field: 'transactionDateAndTime', tooltipField: 'transactionDateAndTime', minWidth: 110, },
|
|
5890
|
-
{ headerName: 'Transaction Number', field: 'transactionNumber', tooltipField: 'transactionNumber' },
|
|
5891
|
-
{ headerName: 'SendClient', field: 'sendClient', tooltipField: 'sendClient' },
|
|
5892
|
-
{ headerName: 'Principle SendClient (If Applicable)', field: 'principleSendClient', tooltipField: 'principleSendClient',
|
|
5893
|
-
{ headerName: 'ReceiveClient', field: 'receiveClient', tooltipField: 'receiveClient' },
|
|
5894
|
-
{ headerName: 'Principle ReceiveClient (If Applicable)', field: 'principleReceiveClient', tooltipField: 'principleReceiveClient',
|
|
5895
|
-
{ headerName: 'Is Sender Corporate', field: 'senderType',
|
|
5932
|
+
{ headerName: 'Transaction Number', field: 'transactionNumber', minWidth: 100, tooltipField: 'transactionNumber' },
|
|
5933
|
+
{ headerName: 'SendClient', field: 'sendClient', minWidth: 80, tooltipField: 'sendClient' },
|
|
5934
|
+
{ headerName: 'Principle SendClient (If Applicable)', field: 'principleSendClient', tooltipField: 'principleSendClient', minWidth: 90, },
|
|
5935
|
+
{ headerName: 'ReceiveClient', field: 'receiveClient', minWidth: 90, tooltipField: 'receiveClient' },
|
|
5936
|
+
{ headerName: 'Principle ReceiveClient (If Applicable)', field: 'principleReceiveClient', tooltipField: 'principleReceiveClient', minWidth: 90 },
|
|
5937
|
+
{ headerName: 'Is Sender Corporate', field: 'senderType', minWidth: 80,
|
|
5896
5938
|
valueFormatter: (params) => {
|
|
5897
5939
|
if (!params.value)
|
|
5898
5940
|
return '';
|
|
@@ -5913,7 +5955,7 @@ class AccountingReportComponent {
|
|
|
5913
5955
|
return 'NO';
|
|
5914
5956
|
return '';
|
|
5915
5957
|
} },
|
|
5916
|
-
{ headerName: 'Is Beneficiary Corporate', field: 'beneficiaryType',
|
|
5958
|
+
{ headerName: 'Is Beneficiary Corporate', field: 'beneficiaryType', minWidth: 80,
|
|
5917
5959
|
valueFormatter: (params) => {
|
|
5918
5960
|
if (!params.value)
|
|
5919
5961
|
return '';
|
|
@@ -5934,21 +5976,21 @@ class AccountingReportComponent {
|
|
|
5934
5976
|
return 'NO';
|
|
5935
5977
|
return '';
|
|
5936
5978
|
} },
|
|
5937
|
-
{ headerName: 'ReceiveCcy', field: 'receiveCurrency', tooltipField: 'receiveCurrency' },
|
|
5938
|
-
{ headerName: 'AmountPaid', field: 'amountPaid', tooltipField: 'amountPaid', cellClass: 'ag-right-aligned-cell' },
|
|
5939
|
-
{ headerName: 'SendCcy', field: 'sendCurrency', tooltipField: 'sendCurrency', },
|
|
5940
|
-
{ headerName: 'ServiceFee', field: 'serviceFee', tooltipField: 'serviceFee', cellClass: 'ag-right-aligned-cell' },
|
|
5941
|
-
{ headerName: 'Tax', field: 'tax', tooltipField: 'tax', cellClass: 'ag-right-aligned-cell' },
|
|
5942
|
-
{ headerName: 'PrincipleSend Amount', field: 'principleSendAmount', tooltipField: 'principleSendAmount', cellClass: 'ag-right-aligned-cell' },
|
|
5943
|
-
{ headerName: 'Transaction Status', field: 'transactionStatus', tooltipField: 'transactionStatus' },
|
|
5944
|
-
{ headerName: 'SettlementCcy', field: 'settlementCurrency', tooltipField: 'settlementCurrency', cellClass: 'ag-right-aligned-cell' },
|
|
5945
|
-
{ headerName: 'ClientSettl (in SCcy)', field: 'clientSettlementInSCcy', tooltipField: 'clientSettlementInSCcy', cellClass: 'ag-right-aligned-cell' },
|
|
5946
|
-
{ headerName: 'ClientSettl (in USD)', field: 'clientSettlementInUSD', tooltipField: 'clientSettlementInUSD', cellClass: 'ag-right-aligned-cell' },
|
|
5947
|
-
{ headerName: 'ShareType', field: 'shareType', tooltipField: 'shareType' },
|
|
5948
|
-
{ headerName: 'ShareValue', field: 'shareValue', tooltipField: 'shareValue', cellClass: 'ag-right-aligned-cell' },
|
|
5949
|
-
{ headerName: 'Send/Receive FeeCcy', field: 'sendReceiveFeeCcy', tooltipField: 'sendReceiveFeeCcy' },
|
|
5950
|
-
{ headerName: 'ShareAmt (in USD)', field: 'shareAmountInUSD', tooltipField: 'shareAmountInUSD', cellClass: 'ag-right-aligned-cell' },
|
|
5951
|
-
{ headerName: 'Settlement Rate', field: 'settlementRate', tooltipField: 'settlementRate', cellClass: 'ag-right-aligned-cell' },
|
|
5979
|
+
{ headerName: 'ReceiveCcy', field: 'receiveCurrency', minWidth: 80, tooltipField: 'receiveCurrency' },
|
|
5980
|
+
{ headerName: 'AmountPaid', field: 'amountPaid', minWidth: 85, tooltipField: 'amountPaid', cellClass: 'ag-right-aligned-cell' },
|
|
5981
|
+
{ headerName: 'SendCcy', field: 'sendCurrency', minWidth: 80, tooltipField: 'sendCurrency', },
|
|
5982
|
+
{ headerName: 'ServiceFee', field: 'serviceFee', minWidth: 80, tooltipField: 'serviceFee', cellClass: 'ag-right-aligned-cell' },
|
|
5983
|
+
{ headerName: 'Tax', field: 'tax', minWidth: 70, tooltipField: 'tax', cellClass: 'ag-right-aligned-cell' },
|
|
5984
|
+
{ headerName: 'PrincipleSend Amount', field: 'principleSendAmount', minWidth: 90, tooltipField: 'principleSendAmount', cellClass: 'ag-right-aligned-cell' },
|
|
5985
|
+
{ headerName: 'Transaction Status', field: 'transactionStatus', minWidth: 90, tooltipField: 'transactionStatus' },
|
|
5986
|
+
{ headerName: 'SettlementCcy', field: 'settlementCurrency', minWidth: 90, tooltipField: 'settlementCurrency', cellClass: 'ag-right-aligned-cell' },
|
|
5987
|
+
{ headerName: 'ClientSettl (in SCcy)', field: 'clientSettlementInSCcy', minWidth: 80, tooltipField: 'clientSettlementInSCcy', cellClass: 'ag-right-aligned-cell' },
|
|
5988
|
+
{ headerName: 'ClientSettl (in USD)', field: 'clientSettlementInUSD', minWidth: 80, tooltipField: 'clientSettlementInUSD', cellClass: 'ag-right-aligned-cell' },
|
|
5989
|
+
{ headerName: 'ShareType', field: 'shareType', minWidth: 85, tooltipField: 'shareType' },
|
|
5990
|
+
{ headerName: 'ShareValue', field: 'shareValue', minWidth: 85, tooltipField: 'shareValue', cellClass: 'ag-right-aligned-cell' },
|
|
5991
|
+
{ headerName: 'Send/Receive FeeCcy', field: 'sendReceiveFeeCcy', minWidth: 85, tooltipField: 'sendReceiveFeeCcy' },
|
|
5992
|
+
{ headerName: 'ShareAmt (in USD)', field: 'shareAmountInUSD', minWidth: 80, tooltipField: 'shareAmountInUSD', cellClass: 'ag-right-aligned-cell' },
|
|
5993
|
+
{ headerName: 'Settlement Rate', field: 'settlementRate', minWidth: 85, tooltipField: 'settlementRate', cellClass: 'ag-right-aligned-cell' },
|
|
5952
5994
|
];
|
|
5953
5995
|
this.gridApis = [];
|
|
5954
5996
|
this.gridColumnApis = [];
|
|
@@ -7467,48 +7509,6 @@ class BranchActivitySendSummaryReportComponent {
|
|
|
7467
7509
|
}
|
|
7468
7510
|
},
|
|
7469
7511
|
{ field: 'product', headerName: 'Product', flex: 1, wrapText: true, autoHeight: true, minWidth: 80, width: 120, tooltipField: 'product' },
|
|
7470
|
-
{ headerName: 'Is Sender Corporate', field: 'senderType', flex: 1, minWidth: 80,
|
|
7471
|
-
valueFormatter: (params) => {
|
|
7472
|
-
if (!params.value)
|
|
7473
|
-
return '';
|
|
7474
|
-
const value = params.value.toUpperCase();
|
|
7475
|
-
if (value === 'CORPORATE')
|
|
7476
|
-
return 'YES';
|
|
7477
|
-
if (value === 'INDIVIDUAL')
|
|
7478
|
-
return 'NO';
|
|
7479
|
-
return '';
|
|
7480
|
-
},
|
|
7481
|
-
tooltipValueGetter: (params) => {
|
|
7482
|
-
if (!params.value)
|
|
7483
|
-
return '';
|
|
7484
|
-
const value = params.value.toUpperCase();
|
|
7485
|
-
if (value === 'CORPORATE')
|
|
7486
|
-
return 'YES';
|
|
7487
|
-
if (value === 'INDIVIDUAL')
|
|
7488
|
-
return 'NO';
|
|
7489
|
-
return '';
|
|
7490
|
-
} },
|
|
7491
|
-
{ headerName: 'Is Beneficiary Corporate', field: 'beneficiaryType', flex: 1, minWidth: 80,
|
|
7492
|
-
valueFormatter: (params) => {
|
|
7493
|
-
if (!params.value)
|
|
7494
|
-
return '';
|
|
7495
|
-
const value = params.value.toUpperCase();
|
|
7496
|
-
if (value === 'CORPORATE')
|
|
7497
|
-
return 'YES';
|
|
7498
|
-
if (value === 'INDIVIDUAL')
|
|
7499
|
-
return 'NO';
|
|
7500
|
-
return '';
|
|
7501
|
-
},
|
|
7502
|
-
tooltipValueGetter: (params) => {
|
|
7503
|
-
if (!params.value)
|
|
7504
|
-
return '';
|
|
7505
|
-
const value = params.value.toUpperCase();
|
|
7506
|
-
if (value === 'CORPORATE')
|
|
7507
|
-
return 'YES';
|
|
7508
|
-
if (value === 'INDIVIDUAL')
|
|
7509
|
-
return 'NO';
|
|
7510
|
-
return '';
|
|
7511
|
-
} },
|
|
7512
7512
|
{ field: 'payoutCCcode', headerName: 'Receive Currency', flex: 1, wrapText: true, autoHeight: true, minWidth: 90, width: 110, tooltipField: 'payoutCCcode' },
|
|
7513
7513
|
{ field: 'payoutAmount', headerName: 'Receive Amount', flex: 1, wrapText: true, autoHeight: true, minWidth: 90, maxWidth: 120, cellClass: 'ag-right-aligned-cell compact-cell', tooltipField: 'payoutAmount' },
|
|
7514
7514
|
{ field: 'payinCCcode', headerName: 'Send Currency', flex: 1, wrapText: true, autoHeight: true, minWidth: 90, maxWidth: 90, tooltipField: 'payinCCcode' },
|