product_view.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637
  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='Procurements']" position="attributes">
  10. <!--<attribute name="attrs">{'invisible':True}</attribute>-->
  11. <attribute name="groups">stock.group_stock_manager</attribute>
  12. </xpath>
  13. <xpath expr="//form/sheet/notebook//page[@string='Inventory']" position="attributes">
  14. <!--<attribute name="attrs">{'invisible':True}</attribute>-->
  15. <attribute name="groups">stock.group_stock_manager</attribute>
  16. </xpath>
  17. </field>
  18. </record>
  19. <record id="product_product_hide_tabs" model="ir.ui.view">
  20. <field name="name">product.template_hide_tabs</field>
  21. <field name="model">product.product</field>
  22. <field name="inherit_id" ref="product.product_normal_form_view"/>
  23. <field name="arch" type="xml">
  24. <xpath expr="//form/sheet/notebook//page[@string='Procurements']" position="attributes">
  25. <!--<attribute name="attrs">{'invisible':True}</attribute>-->
  26. <attribute name="groups">stock.group_stock_manager</attribute>
  27. </xpath>
  28. <xpath expr="//form/sheet/notebook//page[@string='Inventory']" position="attributes">
  29. <!--<attribute name="attrs">{'invisible':True}</attribute>-->
  30. <attribute name="groups">stock.group_stock_manager</attribute>
  31. </xpath>
  32. </field>
  33. </record>
  34. </data>
  35. </openerp>