Ir al contenido
Menú
Se marcó esta pregunta
5 Respuestas
15954 Vistas

PLease, how to make a one2many field required at least one element in openerp.

'coefficient_ids' : fields.one2many('schoolem.coefficient','cours_id','Coefficients',required=True),

Avatar
Descartar

I don't believe you can, offhand. one2many records are just an aggregation of many2one records are the other object. That means the many2one record must be set first. You should try working around that by inheriting the create() and write() functions and raising an error if you attempt to save the record without any values being stored in that field.

Autor

I have rewritten create and write methods do apply the constraints. For others, look here: http://stackoverflow.com/questions/19575157/make-a-one2many-field-required-in-openerp

Mejor respuesta

class ModelX(models.Model):

    flag_childs = fields.Char('Label XXX', compute='_compute_flag_childs')


@api.depends('child_ids')

    def _compute_flag_childs(self):

        for record in self:

             record.flag_childs = record.child_ids.ids and len(record.child_ids.ids) or ''

Avatar
Descartar
Mejor respuesta

This old link can help any body facing same problem. \https://code.launchpad.net/~therp-nl/openerp-web/7.0-lp1013636-x2m_honour_required_attribute

Avatar
Descartar
Mejor respuesta

You can add method similar like this (example in idea module):

def _check_name(self,cr,uid,ids):
    for idea in self.browse(cr, uid, ids):
       if 'spam' in idea.name: return False # Can't create ideas with spam!
           return True

...but instead would check the coefficient_ids field that something was passed.

Then add to constraints (for validation):

  _constraints = [(_check_name, 'Please avoid spam in ideas !', ['name'])]

Update:

This would be validation for other field types, I'm not exactly sure for one2many or many2one validation. I believe this maybe possible only for many2one.

Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
1
oct 19
4927
1
ene 25
1630
2
sept 22
9392
2
abr 22
4407
0
jul 21
7091