You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
819 B

3 years ago
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record model="ir.ui.view" id="product_template_form_view">
  4. <field name="name">product.template.product.return.form</field>
  5. <field name="model">product.template</field>
  6. <field name="inherit_id" ref="website_sale.product_template_form_view"/>
  7. <field name="arch" type="xml">
  8. <div name="options" position="inside">
  9. <div>
  10. <field name="is_returnable"/>
  11. <label for="is_returnable"/>
  12. </div>
  13. </div>
  14. <field name="accessory_product_ids" position="after">
  15. <field name="return_product_ids" widget="many2many_tags" attrs="{'invisible': [('is_returnable', '=', True)]}"/>
  16. </field>
  17. </field>
  18. </record>
  19. </odoo>