İçereği Atla
Menü
Bu soru işaretlendi
5 Cevaplar
16062 Görünümler

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
Vazgeç

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.

Üretici

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

En İyi Yanıt

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
Vazgeç
En İyi Yanıt

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
Vazgeç
En İyi Yanıt

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
Vazgeç
İlgili Gönderiler Cevaplar Görünümler Aktivite
1
Eki 19
5050
1
Oca 25
1810
2
Eyl 22
9535
2
Nis 22
4585
0
Tem 21
7227