Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
3842 Lượt xem

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 ???

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

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

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
2
thg 7 25
4624
2
thg 12 24
7773
2
thg 11 24
28540
2
thg 5 24
7481
3
thg 3 24
6913