Hello, so basically I am new to Odoo any kind of help would be awesome, I am using Odoo 16, and so basically I want the field "Expected Arrival" that is in purchase order model and view, i want it to be displayed with the same value in Product.template and precisely in the "purchase" page in the product.template model.
How can I do that ?
Thanks !
I tried something like that : but I think I messed up something
-----------------
Model Inherit
-----------
class ProductTemplate(models.Model):
_inherit = "product.template"
date_planned = fields.Datetime(
string='Expected Arrival', index=True, copy=False, store=True, readonly=False,)
and in view in used xpath after the vendor field in the table (in purchase page in product.template)