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
903 B

  1. <odoo>
  2. <record model="ir.ui.view" id="validate_attendance_sheet_form">
  3. <field name="name">Validate Attendance Sheet</field>
  4. <field name="model">beesdoo.shift.sheet.validate</field>
  5. <field name="arch" type="xml">
  6. <form>
  7. <label string="Beware : a validated sheet cannot be edited anymore and you won't be able to add any latecomers.
  8. Emails will be sent to workers who did not attend their shift." />
  9. <group>
  10. <field name="user" />
  11. </group>
  12. <footer>
  13. <button type="object" name="validate_sheet"
  14. string="Confirm" class="oe_highlight" />
  15. or
  16. <button special="cancel" string="Cancel" />
  17. </footer>
  18. </form>
  19. </field>
  20. </record>
  21. </odoo>