콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
4 답글
35329 화면

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 )

아바타
취소

Thank you, this help me a lot !

베스트 답변

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

아바타
취소
작성자 베스트 답변

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

아바타
취소

excellent!