コンテンツへスキップ
メニュー
この質問にフラグが付けられました
3 返信
17648 ビュー

How to hide the edit and create buttons conditionally in a form view of a model?

For example i want to hide these buttons if the state for the model is 'Done', if it is not then they should appear.

Thanks in advance.

アバター
破棄

you can restrict the edit button by extending the formview js

最善の回答

Hi Santos,

You can hide the edit and create buttons conditionally using record rule. You need to set a domain in record rule.

 

<record model="ir.rule" id="reference_id">

<field name="name">reference name</field>

<field name="model_id" ref="model_model_name"/>

<field eval="0" name="perm_unlink"/>

<field eval="0" name="perm_write"/>

<field eval="1" name="perm_read"/>

<field eval="0" name="perm_create"/>

<field name="domain_force">[ ('state','in',['open','paid'])]</field>

</record>

 

アバター
破棄

Can you elaborate more on this?

最善の回答

this module will help.

https://github.com/faniska/odoo-addons/tree/10.0/hide_action_buttons

It is for Odoo 10, but code is simple to port for latest versions.

アバター
破棄
関連投稿 返信 ビュー 活動
2
3月 19
2732
2
10月 18
4821
2
3月 23
9085
2
3月 23
1665
2
7月 22
8226