Reputation: 788
In previous versions of odoo, you could add an item to the 'more' drop down menu by creating an ir.values record.
This new option then became visible in tree views and within records.
This does not appear to work in V11.
How do you add an item to what is now called the 'action' drop down menu.
Upvotes: 1
Views: 1723
Reputation: 788
It appears that there may be a new field against actions to allow this link to be created directly on the action itself.
field: binding_model_id
e.g. within an ir.actions.server record:
<field name="binding_model_id" ref="sale.model_sale_order_line"/>
Upvotes: 1