I have a custom module I am trying to port from openERP 6.1 to openERP 7.
In this module I have defined several new actions that point to wizards in the product.product model. In openERP 6.1 these action links appear in the sidebar in the product tree view, allowing me to use a selection of products, and in the form view, using only the currently shown product.
However, in openERP 7 my action links appear under the "More" button only in the form view, not in the tree view. Since I need to be able to use my actions on multiple products at once, this is a problem.
Here is my action definition:
<act_window id="action_my_id"
name="my name"
res_model="my_model.function"
src_model="product.product"
view_mode="form" target="new" view_type="form" />
How do I make this and my other actions show under the "More" button in tree view as well as form view?