Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
2 Replies
5236 Tampilan

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
Buang
Jawaban Terbai

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
Buang
Jawaban Terbai

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


Avatar
Buang
Post Terkait Replies Tampilan Aktivitas
0
Feb 16
5964
3
Jan 24
14206
2
Mar 15
5919
1
Jul 19
3740
2
Nov 16
6393