odoo16
I added field one2many named 
location_id in product.template but why the value disappear when i select it and click on save?
class ProductTemplate(models.Model):
    _inherit = 'product.template'
location_id = fields.Many2one('stock.location', string="Default location ")


