跳至內容
選單
此問題已被標幟
2 回覆
21073 瀏覽次數

Hello, I have Odoo8.

I have a view of a specified model by: <field name="model">sale.order</field> for example.

If I want to display in that view values from other model related with this, for example the display_name of the partner_id, how can I do? If I do this <field name="partner_id.display_name" /> (in the "arch" field, of course) I get an internal server error when install the module.

Thanks!

頭像
捨棄
作者

@Ivan, this works in Odoo8? I don't find any reference in the docs and I do this related_display = fields.related('partner_id', 'display_name') and not works.

Hola Jose, lograste mostrar un campo de otro modelo en una vista?? Porque estoy con el mismo problema y no encuentro solucion

作者

Hola, pude hacerlo con las respuestas que me indicaron abajo. ¿Vos no pudiste?

最佳答案

Hello José,

You can define related field for this as below:

display_name = fields.Char('Display Name', related='partner_id.display_name',store=True)

Thanks!

頭像
捨棄
最佳答案

@Jose, you need to create a related field to display it, so 'display_name' = fields.related('partner_id', 'display_name', ....) and use 'display_name' in your view.

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
2
12月 19
4707
4
1月 24
22623
2
1月 24
2044
0
8月 23
1982
2
12月 22
14384