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.

28 lines
1.1 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright (C) 2018 - Today: GRAP (http://www.grap.coop)
  4. @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
  5. License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  6. -->
  7. <openerp><data>
  8. <record id="view_ir_cron_form" model="ir.ui.view">
  9. <field name="model">ir.cron</field>
  10. <field name="inherit_id" ref="base.ir_cron_view" />
  11. <field name="arch" type="xml">
  12. <field name="doall" position="after">
  13. <newline />
  14. <group string="Inactivity Periods" colspan="4">
  15. <field name="inactivity_period_ids" nolabel="1">
  16. <tree editable="bottom">
  17. <field name="type"/>
  18. <field name="inactivity_hour_begin" attrs="{'invisible': [('type', '!=', 'hour')]}" widget="float_time"/>
  19. <field name="inactivity_hour_end" attrs="{'invisible': [('type', '!=', 'hour')]}" widget="float_time"/>
  20. </tree>
  21. </field>
  22. </group>
  23. </field>
  24. </field>
  25. </record>
  26. </data></openerp>