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

I have a field called crm (selection from table crm.lead)

I need to find away that when I select a crm name return the partner name of this stage in put it 

in many2one field called partner_name

Avatar
Zrušit
Nejlepší odpověď

Is this what you are asking?

@api.onchange('crm')
def _onchange_crm_name(self):
if self.crm.parent_id:
self.partner_name = self.crm.partner_id.id

Avatar
Zrušit
Nejlepší odpověď

Hi,

Either you can define an on change function for the crm field or created a related field to achive this.

Thanks

Avatar
Zrušit