Skip to Content
Menu
This question has been flagged
2 Replies
3279 Views

Hello, i have 2 views for same model, i want to remove create button from one of them, i tried to make 2 tree views and 2 form views, but didn't work
so for example i have a model and 2 menu items each menu item linked with action and each of the actions is linked with the model, so how can i remove create button from one of the views ?

thanks.

Avatar
Discard
Author Best Answer


<record id="tree_view_customer_linked1234" model="ir.actions.act_window.view">

<field eval="31" name="sequence"/>

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

<field name="view_id" ref="tree_id"/>

<field name="act_window_id" ref="action_id"/>

</record>

Avatar
Discard
Best Answer

I think having 2 different Tree Views, linked with 2 different split-Action will achieve what you are trying to do.


In one of Tree View, set an attribute as create=false.


P.S. In case you don't want to have an split-Action or separate menu, then in fields_view_get ORM method control the views which are being loaded. In that you probably with the help of a flag, you can decide which Tree View to be loaded i.e a Tree View with Create Access and another one without it.

 

Avatar
Discard
Related Posts Replies Views Activity
4
Apr 24
57463
4
Jun 22
13253
0
Mar 21
1311
0
May 18
2283
1
Nov 17
3947