Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
4195 Weergaven

How would I add a new res.partner Hierarchical relationships? I tried:

```

class ResPartner(models.Model):
    _inherit = "res.partner"
    _parent_name = 'father'
    father = fields.Many2one('res.partner', string='father', index=True)
    kids = fields.One2many('res.partner', 'father', string="kids", context={'active_test': False})

```
but it doesn't seem to work.
- Is there a limit in the number of Hierarchical relationships on a same model (a parent / child relationship already exist in res_partner)?
TIA
Avatar
Annuleer
Auteur

I got rid of the error by updating the base module.

Gerelateerde posts Antwoorden Weergaven Activiteit
1
dec. 19
3413
3
mrt. 25
27740
1
dec. 17
6412
2
mrt. 16
29610
0
mrt. 15
4891