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.

33 lines
1.3 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Copyright 2016 LasLabs Inc.
  4. License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  5. -->
  6. <odoo>
  7. <record id="view_config_settings" model="ir.ui.view">
  8. <field name="name">project settings</field>
  9. <field name="model">project.config.settings</field>
  10. <field name="inherit_id" ref="project.view_config_settings"/>
  11. <field name="arch" type="xml">
  12. <xpath expr="//div[field[@name='module_project_forecast']]/../preceding-sibling::*[1]"
  13. position="attributes">
  14. <attribute name="invisible">True</attribute>
  15. </xpath>
  16. <xpath expr="//div[field[@name='module_project_forecast']]/.." position="attributes">
  17. <attribute name="invisible">True</attribute>
  18. </xpath>
  19. <xpath expr="//div[field[@name='module_project_timesheet_synchro']]/preceding-sibling::*[1]"
  20. position="attributes">
  21. <attribute name="invisible">True</attribute>
  22. </xpath>
  23. <xpath expr="//div[field[@name='module_project_timesheet_synchro']]"
  24. position="attributes">
  25. <attribute name="invisible">True</attribute>
  26. </xpath>
  27. </field>
  28. </record>
  29. </odoo>