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

I have this issue in odoo10(not testing in previous version).

I have a model, and the record rule (only one record rule) for this model is without writing righ, xml definition as following :

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

      <field name="name">rule1</field>

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

      <field name="domain_force">[('create_uid','!=',user.id)]</field>

      <field name="groups" eval="[(4,ref('base.group_user'))]"/>

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

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

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

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

</record>

Under such condition, I am able to modify the record which meeting the domain.

To avoid this, I have to add one anther record rule (different domain and perm_write=True )to make previous record un-writable, which is as following:

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

      <field name="name">rule2</field>

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

      <field name="domain_force">[('create_uid','=',user.id)]</field>

      <field name="groups" eval="[(4,ref('base.group_user'))]"/>

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

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

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

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

</record>

 

Is this behavior as per design?If so, I have to add at least one another perm_xxxx=True rule for relevant rule which is perm_xxxx=False.

This really doesn't make sense. Do i misunderstand something ???

アバター
破棄
最善の回答

Hi Jiaxin,
This is little bit confusing the way it is presented.

It is stated that you tested the first record rule that doesn't have write permission, and it is not working properly. Make sure that you done testing with users other than the admin.

Thank you

アバター
破棄
関連投稿 返信 ビュー 活動
2
7月 25
4604
2
12月 24
7763
2
11月 24
28522
2
5月 24
7470
3
3月 24
6906