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.

25 lines
960 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <!-- Copyright 2019 Open Source Integrators
  4. License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
  5. <!-- Product Template Form View -->
  6. <record id="product_template_form_view" model="ir.ui.view">
  7. <field name="name">product.template.form.view</field>
  8. <field name="model">product.template</field>
  9. <field name="inherit_id" ref="product.product_template_form_view"/>
  10. <field name="arch" type="xml">
  11. <xpath expr="//notebook" position="inside">
  12. <page id="agreement" string="Agreement">
  13. <group>
  14. <group id="agreement_left">
  15. <field name="is_serviceprofile"/>
  16. </group>
  17. <group id="agreement_right"/>
  18. </group>
  19. </page>
  20. </xpath>
  21. </field>
  22. </record>
  23. </odoo>