Good afternoon, how do I get back to the view that fired the route without does it execute there ?? follow below the section ...
app.post('/atendimentos/pesquisa', home.loggedIn, function (req, res) {
var nome_pesquisa = req.body.cliente_pesquisa;
var placa_pesquisa = req.body.placa_pesquisa;
var sinistro_pesquisa = req.body.sinistro_pesquisa;
//--- AQUI É FEIO O TESTE DA CONDIÇÃO
if (nome_pesquisa == '' && placa_pesquisa == '' && sinistro_pesquisa == '') {
return; ///------- ASSIM NAO FUNCIONA!! COMO SERIA???
}
modelAtendimento.pesquisaPrincipalAtendimentos(nome_pesquisa, placa_pesquisa, sinistro_pesquisa).then(result => {
res.render('atendimentospesquisa', {
atendimentos: result,
nomepesquisado: nome_pesquisa,
placapesquisada: placa_pesquisa,
sinistropesquisado: sinistro_pesquisa,
results: true,
layout: 'layout'
});
});
});
If I have not filled in any of the fields, I want to return to the view, even if possible send the message to her .....
obg, people !!