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.

22 lines
948 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. <field name="barcode" />
  12. </group>
  13. <footer>
  14. <button type="object" name="validate_sheet"
  15. string="Confirm" class="oe_highlight" />
  16. or
  17. <button special="cancel" string="Cancel" />
  18. </footer>
  19. </form>
  20. </field>
  21. </record>
  22. </odoo>