Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
7874 Widoki

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?

Awatar
Odrzuć
Najlepsza odpowiedź

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)
}
Awatar
Odrzuć
Autor

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.

Powiązane posty Odpowiedzi Widoki Czynność
0
mar 24
3311
2
maj 20
6312
2
gru 23
9969
3
paź 16
6953
1
mar 15
7242