Skip to Content
Menu
This question has been flagged
2 Replies
4149 Views

Namaste, I have tax field which I want to be required for a particular company, I have tried this code in company onchange:

        if company_id == self.env.ref('x.company').id:
            cr, uid, context = self.env.args
            context = dict(context)
            context.update({'filter_comp': True})
            self.env.args = cr, uid, misc.frozendict(context)

and iN XML

attrs="{'readonly':[('state','not in','draft')],
                                'required':[('company_id','=',context.get('filter_comp',False))]}"/>

it says context is not defined. Am I doing something wrong here?

if not, how can i achieve this?

Avatar
Discard
Best Answer

You can do this tweak.

make filter_comp as a boolean field

filter_comp = fields.Boolean(default=False)

Then on onchange function :

if company_id == self.env.ref('x.company').id:
      self.filter_comp = True


In XML
attrs="{'readonly':[('state','not in','draft')],
                                'required':[('
filter_comp','=',True)]}"/>

Avatar
Discard
Best Answer

Context won't be available in the PyObject / Column level, better set it in XML view.


Avatar
Discard
Related Posts Replies Views Activity
0
Feb 16
4152
3
Jan 24
12815
2
Mar 15
3988
1
Jul 19
2206
2
Nov 16
4857