update details wallet statement
This commit is contained in:
@ -245,7 +245,7 @@ const ShowDetailWalletDialog = () => {
|
|||||||
[''],
|
[''],
|
||||||
['Wallet Statement Details'],
|
['Wallet Statement Details'],
|
||||||
[`Export Date: ${format(new Date(), 'dd MMM yyyy HH:mm:ss')}`],
|
[`Export Date: ${format(new Date(), 'dd MMM yyyy HH:mm:ss')}`],
|
||||||
[`Wallet ID: ${selectedWallet?.ID || '-'}`],
|
[`Wallet Name: ${selectedWallet?.name || '-'}`],
|
||||||
['']
|
['']
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -579,7 +579,7 @@ const ShowDetailWalletDialog = () => {
|
|||||||
pdf.setFontSize(10);
|
pdf.setFontSize(10);
|
||||||
pdf.setFont('helvetica', 'normal');
|
pdf.setFont('helvetica', 'normal');
|
||||||
pdf.text(`Export Date: ${format(new Date(), 'dd MMM yyyy HH:mm:ss')}`, 20, currentY);
|
pdf.text(`Export Date: ${format(new Date(), 'dd MMM yyyy HH:mm:ss')}`, 20, currentY);
|
||||||
pdf.text(`Wallet ID: ${selectedWallet?.ID || '-'}`, 20, currentY + 6);
|
pdf.text(`Wallet Name: ${selectedWallet?.name || '-'}`, 20, currentY + 6);
|
||||||
|
|
||||||
currentY += 20;
|
currentY += 20;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user