__manifest__.py 846 B

123456789101112131415161718192021222324252627282930313233
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Employee Presence Control',
  5. 'version': '1.0',
  6. 'category': 'Human Resources',
  7. 'description': """
  8. Control Employees Presence
  9. ==========================
  10. Based on:
  11. * The IP Address
  12. * The User's Session
  13. * The Sent Emails
  14. Allows to contact directly the employee in case of unjustified absence.
  15. """,
  16. 'depends': ['hr', 'hr_holidays', 'sms'],
  17. 'data': [
  18. 'security/sms_security.xml',
  19. 'security/ir.model.access.csv',
  20. 'data/ir_actions_server.xml',
  21. 'views/hr_employee_views.xml',
  22. 'data/mail_template_data.xml',
  23. 'data/sms_data.xml',
  24. 'data/ir_cron.xml',
  25. ],
  26. 'installable': True,
  27. 'post_init_hook': 'post_init_hook',
  28. 'license': 'LGPL-3',
  29. }