mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-10 01:41:59 +00:00
149 lines
4.1 KiB
TypeScript
149 lines
4.1 KiB
TypeScript
import { Inject, Service } from 'typedi';
|
|
import { query } from 'express-validator';
|
|
import {
|
|
NextFunction,
|
|
Router,
|
|
Request,
|
|
Response,
|
|
ValidationChain,
|
|
} from 'express';
|
|
import BaseController from '@/api/controllers/BaseController';
|
|
import InventoryDetailsService from '@/services/FinancialStatements/InventoryDetails/InventoryDetailsService';
|
|
import InventoryDetailsTable from '@/services/FinancialStatements/InventoryDetails/InventoryDetailsTable';
|
|
import HasTenancyService from '@/services/Tenancy/TenancyService';
|
|
import { AbilitySubject, ReportsAction } from '@/interfaces';
|
|
import CheckPolicies from '@/api/middleware/CheckPolicies';
|
|
|
|
@Service()
|
|
export default class InventoryDetailsController extends BaseController {
|
|
@Inject()
|
|
inventoryDetailsService: InventoryDetailsService;
|
|
|
|
@Inject()
|
|
tenancy: HasTenancyService;
|
|
|
|
/**
|
|
* Router constructor.
|
|
*/
|
|
router() {
|
|
const router = Router();
|
|
|
|
router.get(
|
|
'/',
|
|
CheckPolicies(
|
|
ReportsAction.READ_INVENTORY_ITEM_DETAILS,
|
|
AbilitySubject.Report
|
|
),
|
|
this.validationSchema,
|
|
this.validationResult,
|
|
this.asyncMiddleware(this.inventoryDetails.bind(this))
|
|
);
|
|
return router;
|
|
}
|
|
|
|
/**
|
|
* Balance sheet validation schecma.
|
|
* @returns {ValidationChain[]}
|
|
*/
|
|
get validationSchema(): ValidationChain[] {
|
|
return [
|
|
query('number_format.precision')
|
|
.optional()
|
|
.isInt({ min: 0, max: 5 })
|
|
.toInt(),
|
|
query('number_format.divide_on_1000').optional().isBoolean().toBoolean(),
|
|
query('number_format.negative_format')
|
|
.optional()
|
|
.isIn(['parentheses', 'mines'])
|
|
.trim()
|
|
.escape(),
|
|
query('from_date').optional(),
|
|
query('to_date').optional(),
|
|
|
|
query('none_zero').optional().isBoolean().toBoolean(),
|
|
query('none_transactions').optional().isBoolean().toBoolean(),
|
|
|
|
query('items_ids').optional().isArray(),
|
|
query('items_ids.*').optional().isInt().toInt(),
|
|
|
|
// 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 cashflow statment to json response.
|
|
* @param {ICashFlowStatement} cashFlow -
|
|
*/
|
|
private transformJsonResponse(inventoryDetails) {
|
|
const { data, query, meta } = inventoryDetails;
|
|
|
|
return {
|
|
data: this.transfromToResponse(data),
|
|
query: this.transfromToResponse(query),
|
|
meta: this.transfromToResponse(meta),
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Transformes the report statement to table rows.
|
|
*/
|
|
private transformToTableRows(inventoryDetails, tenantId: number) {
|
|
const i18n = this.tenancy.i18n(tenantId);
|
|
const inventoryDetailsTable = new InventoryDetailsTable(
|
|
inventoryDetails,
|
|
i18n
|
|
);
|
|
|
|
return {
|
|
table: {
|
|
data: inventoryDetailsTable.tableData(),
|
|
columns: inventoryDetailsTable.tableColumns(),
|
|
},
|
|
query: this.transfromToResponse(inventoryDetails.query),
|
|
meta: this.transfromToResponse(inventoryDetails.meta),
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Retrieve the cash flow statment.
|
|
* @param {Request} req
|
|
* @param {Response} res
|
|
* @param {NextFunction} next
|
|
* @returns {Response}
|
|
*/
|
|
async inventoryDetails(req: Request, res: Response, next: NextFunction) {
|
|
const { tenantId, settings } = req;
|
|
const filter = {
|
|
...this.matchedQueryData(req),
|
|
};
|
|
|
|
try {
|
|
const inventoryDetails =
|
|
await this.inventoryDetailsService.inventoryDetails(tenantId, filter);
|
|
|
|
const accept = this.accepts(req);
|
|
const acceptType = accept.types(['json', 'application/json+table']);
|
|
|
|
switch (acceptType) {
|
|
case 'application/json+table':
|
|
return res
|
|
.status(200)
|
|
.send(this.transformToTableRows(inventoryDetails, tenantId));
|
|
case 'json':
|
|
default:
|
|
return res
|
|
.status(200)
|
|
.send(this.transformJsonResponse(inventoryDetails));
|
|
}
|
|
} catch (error) {
|
|
next(error);
|
|
}
|
|
}
|
|
}
|