product_template.xml 773 B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <openerp>
  3. <data>
  4. <record id="product_template_tree_view_cemobo" model="ir.ui.view">
  5. <field name="name">product_template_tree_view_cemobo</field>
  6. <field name="model">product.template</field>
  7. <field name="inherit_id" ref="product.product_template_tree_view"/>
  8. <field name="arch" type="xml">
  9. <!-- tree -->
  10. <tree string="Product" position="replace">
  11. <tree string="Product">
  12. <field name="name"/>
  13. <field name="default_code"/>
  14. <field name="qty_available"/>
  15. <field name="standard_price"/>
  16. <field name="lst_price"/>
  17. </tree>
  18. </tree>
  19. </field>
  20. </record>
  21. </data>
  22. </openerp>