Zum Inhalt springen
Menü
Sie müssen registriert sein, um mit der Community zu interagieren.
Diese Frage wurde gekennzeichnet
4 Antworten
35235 Ansichten

Hi ,

Would like to find out , if i have a form view and tree view , e.g. Product form view , if we click the existing "More" button there are submenu such as Inventory moves , future Stock moves etc

how can i add "my dialog"(a new submenu) to the "More" button ? ( the new submenu will call another wizard )

Avatar
Verwerfen

Thank you, this help me a lot !

Beste Antwort

Hi ,

use key2="client_action_multi" in act_window to add submenu to "More" button .

<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" />

see doc openerp Action creation.

and Linking events to action

Avatar
Verwerfen
Autor Beste Antwort

thanks Borni ,

but that is not very clear , i solved myself , here is the summary,

   <record id="action_asset_contract_prn_contract" model="ir.actions.act_window">
        <field name="name">Print Contract</field>
        <field name="type">ir.actions.act_window</field>
        <field name="res_model">asset.print.contract</field>
        <field name="view_type">form</field>
        <field name="view_mode">form</field>
        <field name="view_id" ref="view_asset_contract_prn_contract"/>
        <field name="target">new</field>
        <!--field name="multi">True</field-->
    </record>

where res_model = asset.print.contract is my form /wizard .

  1. Regarding the code you used for the 3 records, I have tried to remove "<field name="multi">True</field>" on the 2nd record, and then reinstall the module, the "print contract" immediately appears on both form and tree.

  2. To control the new function to appear on either "Print" or "More", change the "key2" part, where "client_action_multi" will make the function to show in "more", and "client_print_multi" will make the function to show in "print".

Avatar
Verwerfen

excellent!