__manifest__.py 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'HR Efficiency',
  5. 'version': '1.0',
  6. 'category': 'Human Resources',
  7. 'summary': 'Employee Efficiency Tracking',
  8. 'description': """
  9. Employee Efficiency Tracking
  10. ============================
  11. This module tracks employee efficiency by comparing planned hours vs actual hours worked.
  12. It provides monthly reports showing:
  13. - Available hours (considering holidays and time off)
  14. - Planned hours (from planning module)
  15. - Planned hours on billable projects
  16. - Actual hours worked on billable projects
  17. - Planned hours on non-billable projects
  18. - Actual hours worked on non-billable projects
  19. Features:
  20. - Automatic weekly calculation for last 3 months and next 6 months
  21. - Manual calculation wizard
  22. - Integration with Planning, Timesheets, Projects and Holidays
  23. - Efficiency reports in Planning application
  24. """,
  25. 'depends': [
  26. 'hr',
  27. 'hr_timesheet',
  28. 'hr_holidays',
  29. 'project',
  30. 'planning',
  31. 'project_timesheet_holidays',
  32. ],
  33. 'data': [
  34. 'security/ir.model.access.csv',
  35. 'data/hr_efficiency_cron.xml',
  36. 'data/hr_efficiency_filters.xml',
  37. 'data/hr_efficiency_indicators.xml',
  38. 'data/hr_efficiency_init.xml',
  39. 'data/hr_efficiency_post_init.xml',
  40. 'data/hr_efficiency_dynamic_filters.xml',
  41. 'wizard/hr_efficiency_calculation_wizard_views.xml',
  42. 'wizard/hr_efficiency_field_visibility_wizard_views.xml',
  43. 'views/hr_efficiency_views.xml',
  44. 'views/hr_efficiency_indicator_views.xml',
  45. 'views/hr_efficiency_dynamic_field_views.xml',
  46. 'views/hr_efficiency_dynamic_views.xml',
  47. 'views/hr_employee_views.xml',
  48. 'views/res_company_views.xml',
  49. 'views/planning_views.xml',
  50. 'report/hr_efficiency_report_views.xml',
  51. ],
  52. 'assets': {
  53. 'web.assets_backend': [
  54. 'hr_efficiency/static/src/css/hr_efficiency.css',
  55. ],
  56. },
  57. 'demo': [],
  58. 'installable': True,
  59. 'auto_install': False,
  60. 'application': False,
  61. 'license': 'LGPL-3',
  62. }