Skip to Content
Menu
This question has been flagged
2 Replies
3392 Views

I successfully edited my List view for Orders (adding the 'client_order_ref' field) using the developer tools.

I want to do the same with the Quotations list. (i actually thought there was some inheritence between the both so that i should have only changed it in one place). But that does not give me the list ... It shows an xpath expression with an attribute name="banner_route" /sales/sale_quotation_onboarding_panel


Avatar
Discard

Inheritance in Odoo: https://goo.gl/fGNfBY

Best Answer

Hi,

In the view/wizard in which you see the attribute name="banner_route" /sales/sale_quotation_onboarding_panel (inside the architecture page), here you can see a field named Inherited View, click the external link(to open the record, after the field), then you will get the view named sale.view_quotation_tree , here you can add your new field.


You can do the same thing from the Settings -> Technical -> User Interface -> Views , and search view_quotation_tree , then you can see a record with External ID as sale.view_quotation_tree, in this view you can add your new field. 


For creating and adding new fields from the user interface: How To Add custom field from UI

Thanks

Avatar
Discard
Author Best Answer

Thank you. that worked.

Still confused how this inheritence works ... if sale.view_quotation_tree_with_onboarding herits from sale.order.tree  and that was the one i changed earlier i would expect the changes would ripple through

Avatar
Discard