跳至内容
菜单
此问题已终结
19 回复
12198 查看

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


how to achieve this ??

形象
丢弃
最佳答案

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')
形象
丢弃

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

编写者

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.

编写者

getting KeyError: 'product.product'

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

编写者

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

add this import statement: from lxml import etree

编写者

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

编写者

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

最佳答案

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 

形象
丢弃
编写者

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.

最佳答案

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!!

形象
丢弃
编写者

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

编写者 最佳答案

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.

形象
丢弃
最佳答案

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 .... 

形象
丢弃
编写者

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 ...

编写者

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.

相关帖文 回复 查看 活动
1
12月 19
27682
0
9月 15
3456
1
4月 21
6603
1
1月 20
4847
1
12月 16
4579