Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
5 Odpovědi
16022 Zobrazení

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
Zrušit

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

Nejlepší odpověď

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
Zrušit
Nejlepší odpověď

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
Zrušit
Nejlepší odpověď

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
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
1
říj 19
5021
1
led 25
1759
2
zář 22
9481
2
dub 22
4515
0
čvc 21
7180