Hello,
I'm trying to modify the "description" column. I want to convert it in "no translatable". I use the belower code but it doesn't work. Am I doing anything wrong? Is this the best way to do it?
class CustomProduct(orm.Model):
_inherit = 'product.template'
_columns = {
'description': fields.text('Description',translate=False, help="..."),
}