Files
old-web/app/controllers/prices.js
2019-05-29 11:03:01 +02:00

39 lines
701 B
JavaScript

const { currentRERequest } = require('../helpers/url');
const getPrice = (req,res) => {
const rangeFrom = {
min : 0,
max : 250000,
value : 0,
step : 1000
}
const rangeTo = {
min : 0,
max : 250000,
value : 50000,
step : 1000
}
res.render('price', {rangeFrom, rangeTo });
};
const postPrice = async (req, res) => {
const request = await currentRERequest(req);
const nextStepPage = req.query.nextStep || 'pregled';
const nextStepUrl = `/${nextStepPage}/${request.uniqueId}`;
request.price = req.body.from;
request.priceRange = req.body.to;
await request.save();
res.redirect(nextStepUrl);
};
module.exports = {
getPrice,
postPrice
};