product_view.xml 632 B

123456789101112131415
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <openerp>
  3. <data>
  4. <record id="product_template_hide_tabs" model="ir.ui.view">
  5. <field name="name">product.template_hide_tabs</field>
  6. <field name="model">product.template</field>
  7. <field name="inherit_id" ref="product.product_template_form_view"/>
  8. <field name="arch" type="xml">
  9. <xpath expr="//form/sheet/notebook//page[@string='Inventory']" position="attributes">
  10. <attribute name="attrs">{'invisible':True}</attribute>
  11. </xpath>
  12. </field>
  13. </record>
  14. </data>
  15. </openerp>