跳至内容
菜单
此问题已终结
1 回复
4833 查看

I have a model with 2 actions. The 2 actions have a domain depends of the memberType field.


When I create a new record, I want to the field memberType take the value defined on the domain of the current action. Is it possible?

形象
丢弃
最佳答案

Hello ,


Please study this steps, I hope will find solution for your actions.


<record model="ir.actions.act_window" id="my_action_one">

    <field name="name">Action One</field>

    <field name="type">ir.actions.act_window</field>

    <field name="res_model">my.model</field>

    <field name="view_mode">tree,form</field>

    <field name="domain">[('memberType', '=', 'A')]</field>

    <field name="context">{'default_memberType': 'A'}</field>

</record>


<record model="ir.actions.act_window" id="my_action_two">

    <field name="name">Action Two</field>

    <field name="type">ir.actions.act_window</field>

    <field name="res_model">my.model</field>

    <field name="view_mode">tree,form</field>

    <field name="domain">[('memberType', '=', 'B')]</field>

    <field name="context">{'default_memberType': 'B'}</field>

</record>

Regards,




Email:      odoo@aktivsoftware.com  

Skype: kalpeshmaheshwari

   

形象
丢弃
相关帖文 回复 查看 活动
1
2月 16
3556
1
3月 15
15804
1
3月 15
8430
0
3月 15
3466
2
8月 20
9044