product_template_view.xml 497 B

12345678910111213141516
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <openerp>
  3. <data>
  4. <record model="ir.ui.view" id="product_template_interest_form">
  5. <field name="name">product.template.interest.form</field>
  6. <field name="model">product.template</field>
  7. <field name="inherit_id" ref="product.product_template_only_form_view"/>
  8. <field name="arch" type="xml">
  9. <field name="default_code" position="before">
  10. <field name="is_interest" string="¿Es un interes?"/>
  11. </field>
  12. </field>
  13. </record>
  14. </data>
  15. </openerp>