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

Is it possible to set read only access at fields level? For example in project.task object, I want users to be able to be able to edit some parts of it, but other parts not. Like for example they can see tags in task, but can't change it. Although they can change stage of task.

So if I make project.task object read only, then users won't be able to change anything. I didn't see option to add groups in specific fields, only to those fields objects (models).

Is it possible somehow to do this?

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

If you want to set readonly to fields there are some ways:

In the client:

  1. activate debug mode
  2. open "manage views" from the new Dropdown on top
  3. choose active view and push "Edit" on bottom
  4. find your field and edit it
  5. activate "readonly"

In the view (when writing addons):

<field name="FIELDNAME" readonly="1">

or maybe not static:

<field name="FIELDNAME" attrs={(any condition)}

view: https://accounts.openerp.com/forum/Help-1/question/13042

In the model:

_columns={
    'fieldname': fields.[any](string="", readonly=True)
}
Ảnh đại diện
Huỷ bỏ
Tác giả

But doing this it will make readonly for every user I suppose. I only want to make it readonly for users that belongs in particular group.

So take a look to the link. There is a possibility to make it readonly / invisible for specific groups / conditions. If you don't get it, come back to me and I'll give you an example here again.

Bài viết liên quan Trả lời Lượt xem Hoạt động
0
thg 3 24
3187
2
thg 5 20
6236
2
thg 12 23
9894
3
thg 10 16
6882
1
thg 3 15
7152