I need to inherit product.pricelist form view. In this inherited form view I need to add buttons and state in header. But there is no header tag in product.pricelist form view.
So I used below the code in the inherited form view, but the state showed in the sheet not in the header.
<xpath expr="//field[@name='active']" position="before">
<header>
<field name="state" widget="statusbar"/>
</header>
<xpath>
So how to add header in inherited form view in odoo 10?