70 lines
1.9 KiB
TypeScript
70 lines
1.9 KiB
TypeScript
import { Service, Inject } from 'typedi';
|
|
import { Router, Request, Response, NextFunction } from 'express';
|
|
import { query } from 'express-validator';
|
|
import BaseController from '../BaseController';
|
|
import { ServiceError } from '@/exceptions';
|
|
import CheckPolicies from '@/api/middleware/CheckPolicies';
|
|
import { AbilitySubject, CashflowAction } from '@/interfaces';
|
|
import { CashflowApplication } from '@/services/Cashflow/CashflowApplication';
|
|
|
|
@Service()
|
|
export default class GetCashflowAccounts extends BaseController {
|
|
@Inject()
|
|
private cashflowApplication: CashflowApplication;
|
|
|
|
/**
|
|
* Controller router.
|
|
*/
|
|
public router() {
|
|
const router = Router();
|
|
|
|
router.get(
|
|
'/accounts',
|
|
CheckPolicies(CashflowAction.View, AbilitySubject.Cashflow),
|
|
[
|
|
query('stringified_filter_roles').optional().isJSON(),
|
|
|
|
query('column_sort_by').optional(),
|
|
query('sort_order').optional().isIn(['desc', 'asc']),
|
|
|
|
query('inactive_mode').optional().isBoolean().toBoolean(),
|
|
query('search_keyword').optional({ nullable: true }).isString().trim(),
|
|
],
|
|
this.asyncMiddleware(this.getCashflowAccounts),
|
|
);
|
|
return router;
|
|
}
|
|
|
|
/**
|
|
* Retrieve the cashflow accounts.
|
|
* @param {Request} req
|
|
* @param {Response} res
|
|
* @param {NextFunction} next
|
|
*/
|
|
private getCashflowAccounts = async (
|
|
req: Request,
|
|
res: Response,
|
|
next: NextFunction
|
|
) => {
|
|
const { tenantId } = req;
|
|
// Filter query.
|
|
const filter = {
|
|
sortOrder: 'desc',
|
|
columnSortBy: 'created_at',
|
|
inactiveMode: false,
|
|
...this.matchedQueryData(req),
|
|
};
|
|
|
|
try {
|
|
const cashflowAccounts =
|
|
await this.cashflowApplication.getCashflowAccounts(tenantId, filter);
|
|
|
|
return res.status(200).send({
|
|
cashflow_accounts: this.transfromToResponse(cashflowAccounts),
|
|
});
|
|
} catch (error) {
|
|
next(error);
|
|
}
|
|
};
|
|
}
|