Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
5731 Переглядів

Hello friends!!!

I am using an onchange function to modify a boolean field.

here is the code:

Python:

def on_change_valid_id(self, cr, uid, ids,is_valid, context=None):

res = {'value':{'is_valid': self.get_inputs(cr, uid, ids, is_valid, context=context),

}

}

return res

def get_inputs(self, cr, uid,ids, is_valid, context=None):

ret = []

present = datetime.now()

a = str(present.year)+'-'+str(present.month)+'-'+str(present.day)

for obj in self.browse(cr, uid, ids, context=context):

matricule = obj.employee_id.id

obj = self.pool.get('hr.contract')

obj_ids = obj.search(cr, uid, [('employee_id', '=', matricule)])

res = obj.read(cr, uid, obj_ids, ['id', 'employee_id', 'date_end'], context)

for r in res:

b = str(r['date_end'])

compare = a > b

print compare

if compare == False:

inputs = {

'is_valid': True,

}

ret += [inputs]

else:

inputs = {

'is_valid': True,

}

ret += [inputs]

print ret

return ret

Can any one help please.

Best Regards.

Аватар
Відмінити
Найкраща відповідь

Hello Drees,

I can see that get_inputs function return [{'is_valid': True}] and you are call in onchange that function, and your onchange is return something like this,

{'value':{'is_valid': [{'is_valid': True}] ,

}

The return must be something like this,

{'value':{'is_valid': True,

}

also, you must check that field is not like readonly

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
1
лют. 16
6649
0
лист. 23
1267
2
груд. 22
7485
2
трав. 22
33945
0
бер. 19
4059