@sachin9822/reports-lib 0.0.216 → 0.0.217
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/transaction-enquiry-report/transaction-enquiry-report.component.mjs +2 -2
- package/fesm2015/sachin9822-reports-lib.mjs +1 -1
- package/fesm2015/sachin9822-reports-lib.mjs.map +1 -1
- package/fesm2020/sachin9822-reports-lib.mjs +1 -1
- package/fesm2020/sachin9822-reports-lib.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -3774,7 +3774,6 @@ 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: 'Sender Name', field: 'sendName', flex: 1, minWidth: 120, tooltipField: 'sendName' },
|
|
3778
3777
|
{ headerName: 'Is Sender Corporate', field: 'senderType', flex: 1, minWidth: 80,
|
|
3779
3778
|
valueFormatter: (params) => { if (!params.value)
|
|
3780
3779
|
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
@@ -3784,6 +3783,7 @@ class TransactionEnquiryComponent {
|
|
|
3784
3783
|
return ''; const value = params.value.toUpperCase(); if (value === 'CORPORATE')
|
|
3785
3784
|
return 'YES'; if (value === 'INDIVIDUAL')
|
|
3786
3785
|
return 'NO'; return ''; } },
|
|
3786
|
+
{ headerName: 'Sender Name', field: 'sendName', flex: 1, minWidth: 120, tooltipField: 'sendName' },
|
|
3787
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
3789
|
{ headerName: 'Is Beneficiary Corporate', field: 'beneficiaryType', flex: 1, minWidth: 80,
|