import { TableSheetPdf } from '../../common/TableSheetPdf'; import { ICashFlowStatementQuery } from './Cashflow.types'; import { CashflowTableInjectable } from './CashflowTableInjectable'; import { HtmlTableCustomCss } from './constants'; export class CashflowTablePdfInjectable { constructor( private readonly cashflowTable: CashflowTableInjectable, private readonly tableSheetPdf: TableSheetPdf, ) {} /** * Converts the given cashflow sheet table to pdf. * @param {number} tenantId - Tenant ID. * @param {IBalanceSheetQuery} query - Balance sheet query. * @returns {Promise} */ public async pdf(query: ICashFlowStatementQuery): Promise { const table = await this.cashflowTable.table(query); return this.tableSheetPdf.convertToPdf( table.table, table.meta.sheetName, table.meta.formattedDateRange, HtmlTableCustomCss, ); } }