27 lines
867 B
TypeScript
27 lines
867 B
TypeScript
import type { RequestHandler } from "express";
|
|
|
|
import {
|
|
moveOccupancyTypePrintDown,
|
|
moveOccupancyTypePrintDownToBottom
|
|
} from "../../helpers/lotOccupancyDB/moveOccupancyTypePrintDown.js";
|
|
|
|
import { getAllOccupancyTypeFields, getOccupancyTypes } from "../../helpers/functions.cache.js";
|
|
|
|
export const handler: RequestHandler = async (request, response) => {
|
|
const success =
|
|
request.body.moveToBottom === "1"
|
|
? moveOccupancyTypePrintDownToBottom(request.body.occupancyTypeId, request.body.printEJS)
|
|
: moveOccupancyTypePrintDown(request.body.occupancyTypeId, request.body.printEJS);
|
|
|
|
const occupancyTypes = getOccupancyTypes();
|
|
const allOccupancyTypeFields = getAllOccupancyTypeFields();
|
|
|
|
response.json({
|
|
success,
|
|
occupancyTypes,
|
|
allOccupancyTypeFields
|
|
});
|
|
};
|
|
|
|
export default handler;
|