Hello,
i've got a problem with option "show_address"
In the sale order view sale.view_order_form, i want to display partner_shipping_id and partner_invoice_id and display their address.
To display, i deleted the attribute groups and for the address, i added the option "show_address" with the value 1 like on the lines below
It works for shipping address but not for invoice address and i don't understand why?!?
Note : here i modified directly the original view but it is only for the example. I will crearte an inherited view after
Note2 : I deleted the first "
group name="partner_details">
field name="partner_id" widget="res_partner_many2one" context="{'res_partner_search_mode': 'customer', 'show_address': 1, 'show_vat': True}" options="{"always_reload": True}"/>
field name="partner_invoice_id" context="{'default_type':'invoice', 'show_address': 1}" options="{"always_reload": True}"/>
field name="partner_shipping_id" context="{'default_type':'delivery', 'show_address': 1}" options="{"always_reload": True}"/>
/group>