is that possible to display value of another fields of related field? For example, by default, in Sale Order, the displayed value of partner_id
is the value of partner_id.name
.. how if I want to display value of partner_id.mobile
instead of their default?
I've tried explicitly declare "partner_id.{FIELD}"
like this one below, but the SO model always detects that those fields are not available in the model :
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="sale_order_form_inherit" model="ir.ui.view">
<field name="name">sale.order.form.inherit</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.sale_order_form"/>
<field name="arch" type="xml">
<notebook position="inside">
<page string="BSP Prinsipal" name="bsp_prinsipal_page">
<group>
<field name="partner_id.cp_logistik"/>
<field name="partner_id.cp_finance"/>
<field name="partner_id.cp_marketing"/>
</group>
</page>
</notebook>
</field>
</record>
</odoo>
Thanks in advance, by the way!
You can't use dotted field names in the form view. You can use a related field and remove
partner_id
from the field nameExample:
Inherit sale order model:
Use related field names in form view:
. You may need to modify the field types