This update introduces several utility functions in `utils.js` to improve the handling of ObjectId paths, schema types, and filtering logic. Key additions include `isObjectIdPath`, `getBaseProperty`, and `getFilterFieldKind`, which enhance the flexibility of property handling. Additionally, all route handlers in the finance and inventory modules have been refactored to support asynchronous operations, ensuring better performance and responsiveness when processing requests.
75 lines
2.3 KiB
JavaScript
75 lines
2.3 KiB
JavaScript
import express from 'express';
|
|
import { isAuthenticated } from '../../keycloak.js';
|
|
|
|
const router = express.Router();
|
|
|
|
const listAllowedFilters = [
|
|
'_id',
|
|
'job._id',
|
|
'printer._id',
|
|
'_reference',
|
|
'state',
|
|
'createdAt',
|
|
'updatedAt'
|
|
];
|
|
const propertiesAllowedFilters = ['job'];
|
|
import {
|
|
listSubJobsRouteHandler,
|
|
listSubJobsByPropertiesRouteHandler,
|
|
getSubJobRouteHandler,
|
|
getSubJobStatsRouteHandler,
|
|
getSubJobHistoryRouteHandler,
|
|
searchSubJobsRouteHandler,
|
|
getSubJobPropertyValuesRouteHandler,
|
|
getSubJobNeighborsRouteHandler,
|
|
} from '../../services/production/subjobs.js';
|
|
import { getFilter, convertPropertiesString } from '../../utils.js';
|
|
|
|
// list of sub jobs
|
|
router.get('/', isAuthenticated, async (req, res) => {
|
|
const { page, limit, property, search, sort, order } = req.query;
|
|
const filter = await getFilter(req.query, listAllowedFilters);
|
|
listSubJobsRouteHandler(req, res, page, limit, property, filter, search, sort, order);
|
|
});
|
|
|
|
router.get('/properties', isAuthenticated, async (req, res) => {
|
|
let properties = convertPropertiesString(req.query.properties);
|
|
const filter = await getFilter(req.query, propertiesAllowedFilters, false);
|
|
var masterFilter = {};
|
|
if (req.query.masterFilter) {
|
|
masterFilter = JSON.parse(req.query.masterFilter);
|
|
}
|
|
listSubJobsByPropertiesRouteHandler(req, res, properties, filter, masterFilter);
|
|
});
|
|
|
|
router.get('/values', isAuthenticated, async (req, res) => {
|
|
const { property } = req.query;
|
|
getSubJobPropertyValuesRouteHandler(req, res, property);
|
|
});
|
|
router.get('/search', isAuthenticated, async (req, res) => {
|
|
const { search } = req.query;
|
|
searchSubJobsRouteHandler(req, res, search);
|
|
});
|
|
|
|
// get sub job stats
|
|
router.get('/stats', isAuthenticated, async (req, res) => {
|
|
getSubJobStatsRouteHandler(req, res);
|
|
});
|
|
|
|
// get sub job history
|
|
router.get('/history', isAuthenticated, async (req, res) => {
|
|
getSubJobHistoryRouteHandler(req, res);
|
|
});
|
|
|
|
router.get('/neighbors', isAuthenticated, async (req, res) => {
|
|
const { property, search, sort, order, id } = req.query;
|
|
const filter = await getFilter(req.query, listAllowedFilters);
|
|
getSubJobNeighborsRouteHandler(req, res, property, filter, search, sort, order, id);
|
|
});
|
|
|
|
router.get('/:id', isAuthenticated, async (req, res) => {
|
|
getSubJobRouteHandler(req, res);
|
|
});
|
|
|
|
export default router;
|