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

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


how to achieve this ??

Awatar
Odrzuć
Najlepsza odpowiedź

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

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

Autor

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.

Autor

getting KeyError: 'product.product'

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

Autor

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

add this import statement: from lxml import etree

Autor

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

Autor

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

Najlepsza odpowiedź

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 

Awatar
Odrzuć
Autor

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.

Najlepsza odpowiedź

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

Awatar
Odrzuć
Autor

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

Autor Najlepsza odpowiedź

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.

Awatar
Odrzuć
Najlepsza odpowiedź

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

Awatar
Odrzuć
Autor

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

Autor

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.

Powiązane posty Odpowiedzi Widoki Czynność
1
gru 19
27672
0
wrz 15
3450
1
kwi 21
6573
1
sty 20
4838
1
gru 16
4561