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.

20 lines
758 B

  1. <odoo>
  2. <record model="ir.ui.view" id="holiday_coop_wizard_view_form">
  3. <field name="name">Holiday Management</field>
  4. <field name="model">beesdoo.shift.holiday</field>
  5. <field name="arch" type="xml">
  6. <form>
  7. <field name="cooperator_id" invisible="1"/>
  8. <group>
  9. <field name="holiday_start_day"/>
  10. <field name="holiday_end_day"/>
  11. </group>
  12. <footer>
  13. <button type="object" name="holidays"
  14. string="Confirm" class="oe_highlight"/>
  15. <button special="cancel" string="Cancel"/>
  16. </footer>
  17. </form>
  18. </field>
  19. </record>
  20. </odoo>