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.

24 lines
1014 B

  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="shift_id" domain="[('remaining_worker', '>', 0)]" attrs="{'invisible': [('working_mode', '!=', 'regular')]}"/>
  13. <field name="super" />
  14. </group>
  15. <footer>
  16. <button type="object" name="subscribe"
  17. string="Confirm" class="oe_highlight" />
  18. or
  19. <button special="cancel" string="Cancel" />
  20. </footer>
  21. </form>
  22. </field>
  23. </record>
  24. </odoo>