Odoo Help
Odoo is the world's easiest all-in-one management software. It includes hundreds of business apps:
CRM
|
e-Commerce
|
Accounting
|
Inventory
|
PoS
|
Project management
|
MRP
|
etc.
readonly access to specific fields
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?
If you want to set readonly to fields there are some ways:
In the client:
- activate debug mode
- open "manage views" from the new Dropdown on top
- choose active view and push "Edit" on bottom
- find your field and edit it
- 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)
}
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.
About This Community
This platform is for beginners and experts willing to share their Odoo knowledge. It's not a forum to discuss ideas, but a knowledge base of questions and their answers.
RegisterOdoo Training Center
Access to our E-learning platform and experience all Odoo Apps through learning videos, exercises and Quizz.
Test it nowQuestion tools
Stats
Asked: 5/29/13, 10:53 AM |
Seen: 2010 times |
Last updated: 3/16/15, 8:10 AM |