Hello,
I tried to add a custom field to the model product.product but it doesn't work.
There is no error when i push but the field is not created
See my code below in file product.py :
from odoo import fields, models, api
class Product(models.Model):
_inherit = 'product.product'
s_gabarit_1_pp = fields.Char()
Same code for any model works but not for product.product !?! Is there something special for this model ? I precise that i need to add fields in this model to manage special values for each variant
Hope someone could help me
Vincent