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.

25 lines
1.1 KiB

7 years ago
  1. <odoo>
  2. <record model="ir.ui.view" id="subscribe_coop_wizard_view_form">
  3. <field name="name">Subscribre Cooperator</field>
  4. <field name="model">beesdoo.shift.subscribe</field>
  5. <field name="arch" type="xml">
  6. <form>
  7. <group>
  8. <field name="cooperator_id" />
  9. <field name="info_session" />
  10. <field name="info_session_date" />
  11. <field name="working_mode" />
  12. <field name="exempt_reason_id" attrs="{'invisible':[('working_mode', '!=', 'exempt')]}"/>
  13. <field name="shift_id" domain="[('remaining_worker', '>', 0)]" attrs="{'invisible': [('working_mode', '!=', 'regular')]}"/>
  14. <field name="super" />
  15. </group>
  16. <footer>
  17. <button type="object" name="subscribe"
  18. string="Confirm" class="oe_highlight" />
  19. or
  20. <button special="cancel" string="Cancel" />
  21. </footer>
  22. </form>
  23. </field>
  24. </record>
  25. </odoo>