Hi all,
I am trying to customize the Product view via inherited view. Currently, there are a few tabs in the Product page: Information/Procurements/Inventory/Sales/Accounting.
We do not need the Sales for now. To avoid the users' confusion, I would like to hide the tab. At first, I tried to delete the page, the system gives error as it seems that other page calls for some information from this tab. Hence I am not able to delete the page. Thus I am thinking whether it's possible to hide the page. I tried to use invisible =1 in the editing tags, but it did not work. Please kindly advise how I could achieve this.
Thanks a lot in advance!
<record model="ir.ui.view" id="moleac_product_form_view">
<field name="name">Product Inherited View</field>
<field name="model">product.product</field>
<field name="inherit_id" ref="product.product_normal_form_view" />
<field name="arch" type="xml">
<data>
<!--Edit Tab Sales-->
<xpath expr="/form/sheet/notebook/page[@string='Sales']" invisiable="1"/>
</data>
</field>
</record>