Skip to Content
Menú
This question has been flagged

is there a way to send more fields than just display_name and id from related model in odoov14?

Avatar
Descartar
Best Answer

Hello Mohammad Fallahi, 

Please find code in comment. 

I hope this will help you. 

Thanks & Regards,
Email: odoo@aktivsoftware.com
Skype: kalpeshmaheshwari

Avatar
Descartar

please try this

there are two ways:

first Way
def name_get(self):
result = []
for rec in self:
display_name = f"[{rec.field_name}] {rec.field_name}"
result.append((rec.id, display_name))
return result

second way
def name_get(self):
record = []
for record in self:
record.append((res.id, '%s - %s' % (res.field_name, field.field_name)))
return record

Related Posts Respostes Vistes Activitat
0
de maig 23
3857
1
de gen. 23
8637
1
de des. 20
8185
1
de març 15
10623
2
de març 25
1287