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.

24 lines
911 B

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