I have created and upgraded a custom module successfully. My module especially inherits & adds new fields in Products for e-commerce. Now I am facing an issue that could not add an action button at the action button dropdown in the website setting->product->select product .. this is how I extend and add a field
from odoo import models, fields, API
class ProductTemplate(models.Model):
_inherit = 'product.template'
isOffered = fields.Boolean('isOffered')
See this
Or:
To add the button inside the action button we need to add the code below.
Where binding_model is the model to bind the action to. and res_model is like a wizard that performs an action
Check this for details