Files
bigcapital/packages/server/src/services/FinancialStatements/FinancialReportService.ts
2023-02-03 11:57:50 +02:00

9 lines
208 B
TypeScript

export default class FinancialReportService {
transformOrganizationMeta(tenant) {
return {
organizationName: tenant.metadata?.name,
baseCurrency: tenant.metadata?.baseCurrency,
};
}
}