Skip to Content
Menú
This question has been flagged
5 Respostes
15985 Vistes

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

Best Answer

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
Best Answer

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
Best Answer

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
Related Posts Respostes Vistes Activitat
1
d’oct. 19
4981
1
de gen. 25
1691
2
de set. 22
9421
2
d’abr. 22
4450
0
de jul. 21
7142