fix: broken transactions by vendor report

This commit is contained in:
Ahmed Bouhuolia
2024-02-25 13:20:34 +02:00
parent dd072f8585
commit 6ea870edb2
7 changed files with 47 additions and 25 deletions

View File

@@ -2,6 +2,7 @@ import { Inject, Service } from 'typedi';
import { ITransactionsByVendorsFilter } from '@/interfaces';
import { TableSheetPdf } from '../TableSheetPdf';
import { TransactionsByVendorTableInjectable } from './TransactionsByVendorTableInjectable';
import { HtmlTableCustomCss } from './constants';
@Service()
export class TransactionsByVendorsPdf {
@@ -27,7 +28,8 @@ export class TransactionsByVendorsPdf {
tenantId,
table.table,
table.meta.sheetName,
table.meta.formattedDateRange
table.meta.formattedDateRange,
HtmlTableCustomCss
);
}
}