Skip to Content
Menú
This question has been flagged
1 Respondre
2083 Vistes

In the field many2one, when I finish creating data in popup Create and Edit. . .Then the name will be displayed in the default field many2one. I want it to show partner_name. What do I have to do? I tried setting _rec_name = "partner_name" but it not working. Thanks a lot!

Avatar
Descartar
Best Answer

Hi,

You might have to inherit and change the name_get function of the res.partner model.

See: https://www.youtube.com/watch?v=aT_tsfW5HaQ

Thanks

Avatar
Descartar
Autor

Hi Niyas Raphy, Thanks for your answer! But I tried to inherit name_get function.
My code:
def name_get(self):
result = []
for record in self:
result.append((record.id, '%s' % record.partner_name))
return result

It was showing properly.
But I want to say, at the end of creating new data in the popup Create and Edit...
It displays the name, not partner_name.

Related Posts Respostes Vistes Activitat
3
de març 24
6996
2
de febr. 24
2174
2
de febr. 25
5812
1
de des. 24
1379
4
de maig 24
12599