mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-11 02:10:30 +00:00
90 lines
2.8 KiB
TypeScript
90 lines
2.8 KiB
TypeScript
import { Router, Request, Response, NextFunction } from 'express';
|
|
import { query, ValidationChain } from 'express-validator';
|
|
import { Inject, Service } from 'typedi';
|
|
import asyncMiddleware from '@/api/middleware/asyncMiddleware';
|
|
import BaseFinancialReportController from './BaseFinancialReportController';
|
|
import InventoryValuationService from '@/services/FinancialStatements/InventoryValuationSheet/InventoryValuationSheetService';
|
|
import { AbilitySubject, ReportsAction } from '@/interfaces';
|
|
import CheckPolicies from '@/api/middleware/CheckPolicies';
|
|
|
|
@Service()
|
|
export default class InventoryValuationReportController extends BaseFinancialReportController {
|
|
@Inject()
|
|
inventoryValuationService: InventoryValuationService;
|
|
|
|
/**
|
|
* Router constructor.
|
|
*/
|
|
router() {
|
|
const router = Router();
|
|
|
|
router.get(
|
|
'/',
|
|
CheckPolicies(
|
|
ReportsAction.READ_INVENTORY_VALUATION_SUMMARY,
|
|
AbilitySubject.Report
|
|
),
|
|
this.validationSchema,
|
|
this.validationResult,
|
|
asyncMiddleware(this.inventoryValuation.bind(this))
|
|
);
|
|
return router;
|
|
}
|
|
|
|
/**
|
|
* Validation schema.
|
|
*/
|
|
get validationSchema(): ValidationChain[] {
|
|
return [
|
|
query('from_date').optional().isISO8601(),
|
|
query('to_date').optional().isISO8601(),
|
|
|
|
query('items_ids').optional().isArray(),
|
|
query('items_ids.*').optional().isInt().toInt(),
|
|
|
|
query('number_format.no_cents').optional().isBoolean().toBoolean(),
|
|
query('number_format.divide_1000').optional().isBoolean().toBoolean(),
|
|
|
|
query('none_transactions').default(true).isBoolean().toBoolean(),
|
|
query('none_zero').default(false).isBoolean().toBoolean(),
|
|
query('only_active').default(false).isBoolean().toBoolean(),
|
|
|
|
query('orderBy').optional().isIn(['created_at', 'name', 'code']),
|
|
query('order').optional().isIn(['desc', 'asc']),
|
|
|
|
// Filtering by branches.
|
|
query('branches_ids').optional().toArray().isArray({ min: 1 }),
|
|
query('branches_ids.*').isNumeric().toInt(),
|
|
|
|
// Filtering by warehouses.
|
|
query('warehouses_ids').optional().toArray().isArray({ min: 1 }),
|
|
query('warehouses_ids.*').isNumeric().toInt(),
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Retrieve the general ledger financial statement.
|
|
* @param {Request} req -
|
|
* @param {Response} res -
|
|
*/
|
|
async inventoryValuation(req: Request, res: Response, next: NextFunction) {
|
|
const { tenantId } = req;
|
|
const filter = this.matchedQueryData(req);
|
|
|
|
try {
|
|
const { data, query, meta } =
|
|
await this.inventoryValuationService.inventoryValuationSheet(
|
|
tenantId,
|
|
filter
|
|
);
|
|
return res.status(200).send({
|
|
meta: this.transfromToResponse(meta),
|
|
data: this.transfromToResponse(data),
|
|
query: this.transfromToResponse(query),
|
|
});
|
|
} catch (error) {
|
|
next(error);
|
|
}
|
|
}
|
|
}
|