Good afternoon,
I'm working with the web module in odoo 11 and I have the following question.
How from a <form action = "/webdemo/cpe"> can I send the value of a parameter to the method of a cotrolador?
For example I have the following urls:
URL 01
http://localhost:8068/webdemo/webdemo
Which contains a text box (name=color_id) and a button
URL 02
http://localhost:8068/webdemo/cpe?color_id=3
I want to know how is it done so that when I press the button, it will generate the second URL? since until now it only generates me in this way
http://localhost:8068/webdemo/cpe
PD: The controller /webdemo/cpe receives as parameter color_id
Odoo Web Controller
Reference 1: https://goo.gl/gPjPas
Reference 2: https://goo.gl/SEHNbA