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.

21 lines
859 B

  1. <odoo>
  2. <record model="ir.ui.view" id="temporary_exemption_wizard_view_form">
  3. <field name="name">Temporary Exemption</field>
  4. <field name="model">beesdoo.shift.temporary_exemption</field>
  5. <field name="arch" type="xml">
  6. <form>
  7. <field name="cooperator_id" invisible="1"/>
  8. <group>
  9. <field name="temporary_exempt_reason_id"/>
  10. <field name="temporary_exempt_start_date"/>
  11. <field name="temporary_exempt_end_date"/>
  12. </group>
  13. <footer>
  14. <button type="object" name="exempt"
  15. string="Confirm" class="oe_highlight"/>
  16. <button special="cancel" string="Cancel"/>
  17. </footer>
  18. </form>
  19. </field>
  20. </record>
  21. </odoo>