2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
'name': 'Timesheets',
|
2018-01-16 12:05:52 +01:00
|
|
|
'author' : 'Odoo S.A',
|
2018-01-16 06:58:15 +01:00
|
|
|
'version': '1.0',
|
|
|
|
'category': 'Human Resources',
|
|
|
|
'sequence': 23,
|
|
|
|
'summary': 'Review and approve employees time reports',
|
|
|
|
'description': """
|
|
|
|
This module implements a timesheet system.
|
|
|
|
==========================================
|
|
|
|
|
|
|
|
Each employee can encode and track their time spent on the different projects.
|
|
|
|
|
|
|
|
Lots of reporting on time and employee tracking are provided.
|
|
|
|
|
|
|
|
It is completely integrated with the cost accounting module. It allows you to set
|
|
|
|
up a management by affair.
|
|
|
|
""",
|
2018-01-16 11:34:37 +01:00
|
|
|
'website': 'https://flectrahq.com/page/employees',
|
2018-01-16 06:58:15 +01:00
|
|
|
'depends': ['hr', 'project'],
|
|
|
|
'data': [
|
|
|
|
'security/hr_timesheet_security.xml',
|
|
|
|
'security/ir.model.access.csv',
|
|
|
|
'views/hr_timesheet_views.xml',
|
|
|
|
'views/res_config_settings_views.xml',
|
|
|
|
'views/project_views.xml',
|
|
|
|
'views/project_portal_templates.xml',
|
|
|
|
'report/hr_timesheet_report_view.xml',
|
|
|
|
'report/report_timesheet_templates.xml',
|
|
|
|
'views/hr_views.xml',
|
|
|
|
],
|
|
|
|
'demo': [
|
|
|
|
'data/hr_timesheet_demo.xml',
|
|
|
|
],
|
|
|
|
'installable': True,
|
|
|
|
'application': True,
|
|
|
|
'auto_install': False,
|
|
|
|
}
|