32 lines
1.4 KiB
JavaScript
32 lines
1.4 KiB
JavaScript
import { getLotOccupantTypes, getLotStatuses, getLotTypes, getOccupancyTypePrintsById, getOccupancyTypes, getWorkOrderTypes } from '../../helpers/functions.cache.js';
|
|
import * as configFunctions from '../../helpers/functions.config.js';
|
|
import { getLotOccupancy } from '../../helpers/lotOccupancyDB/getLotOccupancy.js';
|
|
import { getMaps } from '../../helpers/lotOccupancyDB/getMaps.js';
|
|
export const handler = (request, response) => {
|
|
const lotOccupancy = getLotOccupancy(request.params.lotOccupancyId);
|
|
if (!lotOccupancy) {
|
|
response.redirect(`${configFunctions.getProperty('reverseProxy.urlPrefix')}/lotOccupancies/?error=lotOccupancyIdNotFound`);
|
|
return;
|
|
}
|
|
const occupancyTypePrints = getOccupancyTypePrintsById(lotOccupancy.occupancyTypeId);
|
|
const occupancyTypes = getOccupancyTypes();
|
|
const lotOccupantTypes = getLotOccupantTypes();
|
|
const lotTypes = getLotTypes();
|
|
const lotStatuses = getLotStatuses();
|
|
const maps = getMaps();
|
|
const workOrderTypes = getWorkOrderTypes();
|
|
response.render('lotOccupancy-edit', {
|
|
headTitle: `${configFunctions.getProperty('aliases.occupancy')} Update`,
|
|
lotOccupancy,
|
|
occupancyTypePrints,
|
|
occupancyTypes,
|
|
lotOccupantTypes,
|
|
lotTypes,
|
|
lotStatuses,
|
|
maps,
|
|
workOrderTypes,
|
|
isCreate: false
|
|
});
|
|
};
|
|
export default handler;
|