import { Inject, Service } from 'typedi'; import { TableSheet } from '@/lib/Xlsx/TableSheet'; import { ARAgingSummaryTableInjectable } from './ARAgingSummaryTableInjectable'; import { IARAgingSummaryQuery } from '@/interfaces'; @Service() export class ARAgingSummaryExportInjectable { @Inject() private ARAgingSummaryTable: ARAgingSummaryTableInjectable; /** * Retrieves the A/R aging summary sheet in XLSX format. * @param {number} tenantId * @param {IARAgingSummaryQuery} query * @returns {Promise} */ public async xlsx( tenantId: number, query: IARAgingSummaryQuery ): Promise { const table = await this.ARAgingSummaryTable.table(tenantId, query); const tableSheet = new TableSheet(table.table); const tableCsv = tableSheet.convertToXLSX(); return tableSheet.convertToBuffer(tableCsv, 'xlsx'); } /** * Retrieves the A/R aging summary sheet in CSV format. * @param {number} tenantId * @param {ICashFlowStatementQuery} query * @returns {Promise} */ public async csv( tenantId: number, query: IARAgingSummaryQuery ): Promise { const table = await this.ARAgingSummaryTable.table(tenantId, query); const tableSheet = new TableSheet(table.table); const tableCsv = tableSheet.convertToCSV(); return tableCsv; } }