product_template.xml 603 B

123456789101112131415
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <openerp>
  3. <data>
  4. <record id="view_product_no_negative_form" model="ir.ui.view">
  5. <field name="name">view.product.no.negative.form</field>
  6. <field name="model">product.template</field>
  7. <field name="inherit_id" ref="stock.view_template_property_form"/>
  8. <field name="arch" type="xml">
  9. <xpath expr="//field[@name='virtual_available']" position="after">
  10. <field name='check_no_negative'/>
  11. </xpath>
  12. </field>
  13. </record>
  14. </data>
  15. </openerp>