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

how to make  for one all fileds  should read only or hidden expect one field . that field should be writable.


how to achieve this ??

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

You could try to get your desired output by making few changes in fields_view_get().  (It is similar to a hack) 

 from lxml import etree
 from openerp.osv.orm import setup_modifiers
 class product_template(orm.Model):
    _inherit = "product.template"
    def fields_view_get(self, cr, uid, view_id=None, view_type=False, context=None, toolbar=False, submenu=False):
           if context is None:
               context = {}
           res = super(product_template, self).fields_view_get(cr, uid, view_id=view_id, view_type=view_type, context=context, toolbar=toolbar, submenu=submenu)
           if view_type == 'form' and self.pool.get('res.users').has_group(cr, uid, 'YOUR_GROUP_ID'):
               doc = etree.XML(res['arch'])
               method_nodes = doc.xpath("//field")
               for node in method_nodes:
                   node.set('readonly', "1")
                   if node.get('name', False) and node.get('name', False) not in ['name','image_medium']:  #Add fields to skip readonly
                       setup_modifiers(node, res['fields'][node.get('name', False)])
               res['arch'] = etree.tostring(doc)
           return res

CREATE 3 groups YOUR_GROUP_ID YOUR_GROUP_CHILD1_ID --> inherits YOUR_GROUP_ID group YOUR_GROUP_CHILD2_ID --> inherits YOUR_GROUP_ID group
You can check whether the user has access for a particular group by doing this self.pool.get('res.users').has_group(cr, uid, 'YOUR_GROUP_CHILD1_ID')
Ảnh đại diện
Huỷ bỏ

I have edited my code to help you in case of having different groups with different field edit access

Tác giả

Nice idea. .And By using this function is it possible to control one2many or many2many fields too ?

I didn't have an opportunity to check whether this works for one2many or many2many. I'll let you know if it works for these 2 fields.

Tác giả

getting KeyError: 'product.product'

then add product module as a dependent module in your __openerp__.py file

Tác giả

Thanks it works and it throws NameError: global name 'etree' is not defined error

add this import statement: from lxml import etree

Tác giả

You rocks it works. . product.product did not worked for me. so i used product.template. What about security ? is it a just view modification ?

Yes, you need to use product.template for v8 and you need to create security.xml file with security records in it and add it to __openerp__.py

Tác giả

It it possible to make UI for this instead hard coding groups and field name. ?

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

You can make whole model readonly and add a button "Edit FIELD", which would launch wizard to modify field you need to be writable. That wizard will update a record as SUPERUSER_ID 

Ảnh đại diện
Huỷ bỏ
Tác giả

Thanks Ivan, I want to make multiple groups. each groups has write access to specific fields only and other fields should be readonly. Thats why i asked how to make write access to specific fields only and other fields readonly. is it possible make a fine access control like ACL or Record Rules. so it can be applied to any model.

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

As far as i m concerned, either in front of every field you make readonly=True for those you need to make readonly and those you need them writable, dont put anything or you can make a function that transform your fields either readonly or writable.

Regards!!

Ảnh đại diện
Huỷ bỏ
Tác giả

HI , Can you tell how to make a function that transform fields either readonly or writable.

Tác giả Câu trả lời hay nhất

Thanks for your tip. @ Dress Far. readonly makes a field read  only to all groups. i need it for specific group only.


can you give example to make a function that transform fields either readonly or writable.

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

Hello,

If you'd like to add a readonly attribute to specific group you can inherit that view, 
kindly check this , also you can give a group a read access right . BTW the question is not clear also the title is ambiguous.

Regards .... 

Ảnh đại diện
Huỷ bỏ
Tác giả

Since the question not clear for you . let me explain. lets take products. i want to make a group that is allowed only edit the title of the product. other than title all fields should be read only. hope you can help me.

So I think the first link is helpful, You'll need to inherit the product's view then specify the groups_id the change the attribute of the field that you want to change ...

Tác giả

Sorry i cant get you. . how it will make only one field writable. because . odoo applies Access rights for all fields (whole model ). if you can please explain me.

Bài viết liên quan Trả lời Lượt xem Hoạt động
1
thg 12 19
27732
0
thg 9 15
3507
1
thg 4 21
6647
1
thg 1 20
4889
1
thg 12 16
4641