How to inherit and add Action menu in odoo

1.1k Views Asked by At

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')
1

There are 1 best solutions below

0
On

See this

Or:

To add the button inside the action button we need to add the code below.

 <act_window name="You Action"
        id="update_state_action"
        res_model="update.state"
        binding_model="sale.order"
        binding_views="form"
        view_mode="form"
        target="new"
    />

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