You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
280 B

const nome = _req.getString('nome')
const servicoUID = _req.getString('servico_uid')
const dbServico = _db.get('servico', servicoUID)
_db.insert('encomenda', {
nome,
servico_id: dbServico.getInt('id'),
momento: _db.timestamp()
})
_out.json({
result: true
})