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

I have tried Access control and record rules. It works perfectly.

But i cant control field level access.

For example i want to control access to product name field alone.

And is it possible from UI like access control and record rules. ?

i refereed here https://www.odoo.com/documentation/8.0/reference/security.html

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

I think this example will helpful to you

<field name="company_id" groups="base.group_multi_company"> 
<field name="groups_id" eval="[(4, ref('event.group_event_user'))]"/>
Ảnh đại diện
Huỷ bỏ
Tác giả Câu trả lời hay nhất

Thanks for your reply . let me try. how set access like read,write,create,delete.


  Is it possible control from UI like access control and record rules. ?


Instead Editing code. i need in UI just like ACL or Record Rules

Thanks @ Ankit Gauri . But this is not im asking . . asking UI like adding ACL to some group.

Let say. the group should list all fields . i have to assign which field are read only and write only from  UI

Ảnh đại diện
Huỷ bỏ

yes, enable developer mode and edit your form view such that you can change the form view at UI itself

Câu trả lời hay nhất

hello Sankar

you can make a field readonnly for particular group of user like this in Ui


<record id="view_readonly" model="ir.ui.view">

<field name="name">model.form.readonly manager</field>

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

<field name="groups_id" eval="[(6, 0, [ref(groups')])]"/>

<field name="arch" type="xml">

<field name="field" position="attributes">

<attribute name="readonly" >0</attribute>

</field>

</field>

</record>

it works perfectly i have used in my Ui and make a field readonly for user


Thank you

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
Prevent Deletion Đã xử lý
2
thg 5 24
2501
1
thg 7 17
5352
2
thg 8 25
2507
1
thg 7 25
947
1
thg 8 25
1151