Ir al contenido
Menú
Se marcó esta pregunta
2 Respuestas
23271 Vistas

I have a problem when i use domain to compare two integer fields ?


_name = 'y'
'field1': fields.integer('Field1'),
'field2': fields.integer('Field2'),


_name = 'x'

'y_id': fields.many2one('y', 'Y', domain="[('field1','>','field2')]"),


=> ValueError: invalid literal for int() with base 10: 'field2'

Avatar
Descartar
Mejor respuesta

Hi,

In domain filter you have to give the value in right side of the operator. In domain we have to follow the syntax like : [('field_of_model','operator','any_value_according_to_field_and_operator')]

In your domain 'field2' is text and system is going to convert it into "int" thats why system is giving an error message "like invalid literal for int() with base 10:"

Avatar
Descartar
Autor Mejor respuesta

ok but now how i compare field1 and field2 in domaine ?

Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
2
ene 23
26731
4
jun 21
39677
1
dic 20
2822
1
abr 18
7946
3
sept 15
9794