mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
import { Exportable } from '../Export/Exportable';
|
|
import { ExpensesApplication } from './ExpensesApplication.service';
|
|
import { EXPORT_SIZE_LIMIT } from '../Export/constants';
|
|
import { Injectable } from '@nestjs/common';
|
|
import { IExpensesFilter } from './Expenses.types';
|
|
import { ExportableService } from '../Export/decorators/ExportableModel.decorator';
|
|
import { Expense } from './models/Expense.model';
|
|
|
|
@Injectable()
|
|
@ExportableService({ name: Expense.name })
|
|
export class ExpensesExportable extends Exportable {
|
|
constructor(
|
|
private readonly expensesApplication: ExpensesApplication,
|
|
) {
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Retrieves the accounts data to exportable sheet.
|
|
*/
|
|
public exportable(query: IExpensesFilter) {
|
|
const filterQuery = (query) => {
|
|
query.withGraphFetched('branch');
|
|
};
|
|
const parsedQuery = {
|
|
sortOrder: 'desc',
|
|
columnSortBy: 'created_at',
|
|
...query,
|
|
page: 1,
|
|
pageSize: EXPORT_SIZE_LIMIT,
|
|
filterQuery,
|
|
} as IExpensesFilter;
|
|
|
|
return this.expensesApplication
|
|
.getExpenses(parsedQuery)
|
|
.then((output) => output.expenses);
|
|
}
|
|
}
|