__manifest__.py 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Attendances',
  5. 'version': '2.0',
  6. 'category': 'Human Resources/Attendances',
  7. 'sequence': 240,
  8. 'summary': 'Track employee attendance',
  9. 'description': """
  10. This module aims to manage employee's attendances.
  11. ==================================================
  12. Keeps account of the attendances of the employees on the basis of the
  13. actions(Check in/Check out) performed by them.
  14. """,
  15. 'website': 'https://www.odoo.com/app/employees',
  16. 'depends': ['hr', 'barcodes'],
  17. 'data': [
  18. 'security/hr_attendance_security.xml',
  19. 'security/ir.model.access.csv',
  20. 'views/hr_attendance_view.xml',
  21. 'views/hr_attendance_overtime_view.xml',
  22. 'report/hr_attendance_report_views.xml',
  23. 'views/hr_department_view.xml',
  24. 'views/hr_employee_view.xml',
  25. 'views/res_config_settings_views.xml',
  26. ],
  27. 'demo': [
  28. 'data/hr_attendance_demo.xml'
  29. ],
  30. 'installable': True,
  31. 'application': True,
  32. 'assets': {
  33. 'web.assets_backend': [
  34. 'hr_attendance/static/src/**/*',
  35. 'hr_attendance/static/src/xml/**/*',
  36. ],
  37. 'web.qunit_suite_tests': [
  38. ('after', 'web/static/tests/legacy/views/kanban_tests.js', 'hr_attendance/static/tests/hr_attendance_tests.js'),
  39. ],
  40. },
  41. 'license': 'LGPL-3',
  42. }