| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- # -*- coding: utf-8 -*-
- # Part of Odoo. See LICENSE file for full copyright and licensing details.
- {
- 'name': 'HR Efficiency',
- 'version': '1.0',
- 'category': 'Human Resources',
- 'summary': 'Employee Efficiency Tracking',
- 'description': """
- Employee Efficiency Tracking
- ============================
- This module tracks employee efficiency by comparing planned hours vs actual hours worked.
- It provides monthly reports showing:
- - Available hours (considering holidays and time off)
- - Planned hours (from planning module)
- - Planned hours on billable projects
- - Actual hours worked on billable projects
- - Planned hours on non-billable projects
- - Actual hours worked on non-billable projects
- Features:
- - Automatic weekly calculation for last 3 months and next 6 months
- - Manual calculation wizard
- - Integration with Planning, Timesheets, Projects and Holidays
- - Efficiency reports in Planning application
- """,
- 'depends': [
- 'hr',
- 'hr_timesheet',
- 'hr_holidays',
- 'project',
- 'planning',
- 'project_timesheet_holidays',
- ],
- 'data': [
- 'security/ir.model.access.csv',
- 'data/hr_efficiency_cron.xml',
- 'data/hr_efficiency_filters.xml',
- 'data/hr_efficiency_indicators.xml',
- 'data/hr_efficiency_init.xml',
- 'data/hr_efficiency_post_init.xml',
- 'data/hr_efficiency_dynamic_filters.xml',
- 'wizard/hr_efficiency_calculation_wizard_views.xml',
- 'wizard/hr_efficiency_field_visibility_wizard_views.xml',
- 'views/hr_efficiency_views.xml',
- 'views/hr_efficiency_indicator_views.xml',
- 'views/hr_efficiency_dynamic_field_views.xml',
- 'views/hr_efficiency_dynamic_views.xml',
- 'views/planning_views.xml',
- 'report/hr_efficiency_report_views.xml',
- ],
- 'demo': [],
- 'installable': True,
- 'auto_install': False,
- 'application': False,
- 'license': 'LGPL-3',
- }
|