__manifest__.py 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Task Logs',
  5. 'version': '1.0',
  6. 'category': 'Services/Timesheets',
  7. 'sequence': 23,
  8. 'summary': 'Track employee time on tasks',
  9. 'description': """
  10. This module implements a timesheet system.
  11. ==========================================
  12. Each employee can encode and track their time spent on the different projects.
  13. Lots of reporting on time and employee tracking are provided.
  14. It is completely integrated with the cost accounting module. It allows you to set
  15. up a management by affair.
  16. """,
  17. 'website': 'https://www.odoo.com/app/timesheet',
  18. 'depends': ['hr', 'hr_hourly_cost', 'analytic', 'project', 'uom'],
  19. 'data': [
  20. 'security/hr_timesheet_security.xml',
  21. 'security/ir.model.access.csv',
  22. 'security/ir.model.access.xml',
  23. 'data/digest_data.xml',
  24. 'views/hr_timesheet_views.xml',
  25. 'views/res_config_settings_views.xml',
  26. 'views/project_views.xml',
  27. 'views/project_portal_templates.xml',
  28. 'views/hr_timesheet_portal_templates.xml',
  29. 'report/hr_timesheet_report_view.xml',
  30. 'report/project_report_view.xml',
  31. 'report/report_timesheet_templates.xml',
  32. 'views/hr_views.xml',
  33. 'data/hr_timesheet_data.xml',
  34. 'views/project_sharing_views.xml',
  35. 'views/rating_rating_views.xml',
  36. 'views/project_update_views.xml',
  37. ],
  38. 'demo': [
  39. 'data/hr_timesheet_demo.xml',
  40. ],
  41. 'installable': True,
  42. 'post_init_hook': 'create_internal_project',
  43. 'uninstall_hook': '_uninstall_hook',
  44. 'assets': {
  45. 'web.assets_backend': [
  46. 'hr_timesheet/static/src/**/*',
  47. ],
  48. 'web.qunit_suite_tests': [
  49. 'hr_timesheet/static/tests/**/*',
  50. ],
  51. 'project.webclient': [
  52. 'hr_timesheet/static/src/components/**/*',
  53. 'hr_timesheet/static/src/scss/timesheets_task_form.scss'
  54. ],
  55. },
  56. 'license': 'LGPL-3',
  57. }