24 lines
742 B
TypeScript
24 lines
742 B
TypeScript
import type { RequestHandler } from "express";
|
|
|
|
import * as configFunctions from "../../helpers/functions.config.js";
|
|
import { getReportData, getScreenPrintConfig } from "../../helpers/functions.print.js";
|
|
|
|
export const handler: RequestHandler = (request, response) => {
|
|
const printName = request.params.printName;
|
|
|
|
const printConfig = getScreenPrintConfig(printName);
|
|
|
|
if (!printConfig) {
|
|
return response.redirect(
|
|
configFunctions.getProperty("reverseProxy.urlPrefix") +
|
|
"/dashboard/?error=printConfigNotFound"
|
|
);
|
|
}
|
|
|
|
const reportData = getReportData(printConfig, request.query);
|
|
|
|
return response.render("print/screen/" + printName, reportData);
|
|
};
|
|
|
|
export default handler;
|