-7

I want to add new button in action

enter image description here

ChesuCR
  • 9,352
  • 5
  • 51
  • 114
KAKA RECARDO
  • 115
  • 9
  • Look for it in [the documentation](https://www.odoo.com/documentation/11.0/) please or [here](https://doc.odoo.com/v6.0/developer/2_4_module_development/action_creation.html) – ChesuCR Dec 18 '17 at 20:32

1 Answers1

1

Use key2="client_action_multi" in act_window to add submenu to "Action" button ("More" in previous Odoo versions). Reference here

<act_window name="New Sub menu"
    res_model="product.product"
    src_model="product.product"
    key2="client_action_multi" 
    view_mode="form" target="new" 
    view_type="form"
    id="act_new_sub_menu" />
ChesuCR
  • 9,352
  • 5
  • 51
  • 114