Hi, I would like to know if there is a way to include this code in the Odoo user interface, and exactly where to put it because I would like to implement it.
def name_get(self):
marcas_list = []
for record in self:
name = record.x_name + record.x_desc
marcas_list.append((record.id, name))
return marcas_list