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.

27 lines
1009 B

  1. <?xml version="1.0"?>
  2. <odoo>
  3. <!-- Agreement Form View -->
  4. <record model="ir.ui.view" id="agreement_form_view">
  5. <field name="name">Agreement Form</field>
  6. <field name="model">agreement</field>
  7. <field name="inherit_id" ref="agreement.partner_agreement_form_view"/>
  8. <field name="arch" type="xml">
  9. <xpath expr="//notebook/page[@name='products']/group"
  10. position="after">
  11. <group string="Service Profiles">
  12. <field name="serviceprofile_ids" nolabel="1">
  13. <tree>
  14. <field name="name"/>
  15. <field name="profile_type"/>
  16. <field name="equipment_id"/>
  17. <field name="product_id"/>
  18. <field name="fsm_location_id"/>
  19. </tree>
  20. </field>
  21. </group>
  22. </xpath>
  23. </field>
  24. </record>
  25. </odoo>