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

Hello there, it's possible to make a many2many field required ?

Thanks you !

Avatar
Descartar
Autor

The only thing I see for my problem is :

Redefine create and write et add constrains. It's the only thing I can do ?

Autor

Hello, it doesn't work for me, it's that for this reason I have created this request. :'(

Thanks anyway.

Mejor respuesta

try fields_to_use = fields.Many2many('model.model', 'field_names_model', required=True)

Avatar
Descartar
Mejor respuesta

You Can Use len() function in pythin, 

Eg: 

if len(self.Many2mnay_filed) == 0:
raise UserError(_('Please Add Many2many Field'))

Avatar
Descartar