Se rendre au contenu
Menu
Cette question a été signalée
2 Réponses
1780 Vues

supprose i have this 2 class: 


class Personne(models.Model):

    _name = "personne"

    

name = fields.Char(string="name")

birth = fields.Date(string="Birth date")

class inscription(models.Model):

    _name = "inscription"

    

    name = fields.Char(string="Date")

personne = fields.Many2one('personne', string='Personne')

    birth = fields.Many2one('personne', string='Birth date')

in class "inscription" the value of birth should be related to shoosed personne

how can i set birth value automaticaly after personne choosed?

Avatar
Ignorer

Odoo Customization Tips: https://goo.gl/8HgnCF

Meilleure réponse

Hi, 

You can rewrite the birth field in model inscription As

birth = fields.Date(string="Birth date", related='personne.birth')

Avatar
Ignorer
Publications associées Réponses Vues Activité
3
oct. 23
9088
1
sept. 23
3433
1
mai 23
2413
2
avr. 23
2987
1
mars 23
2360