[MERGE]: Merged with trunk-addons.
[odoo/odoo.git] / addons / hr_timesheet_sheet / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22
23 {
24     'name': 'Timesheets',
25     'version': '1.0',
26     'category': 'Human Resources',
27     'description': """
28 This module helps you to easily encode and validate timesheet and attendances within the same view.
29 ===================================================================================================
30
31 The upper part of the view is for attendances and track (sign in/sign out) events.
32 The lower part is for timesheet.
33
34 Other tabs contains statistics views to help you analyse your
35 time or the time of your team:
36 * Time spent by day (with attendances)
37 * Time spent by project
38
39 This module also implements a complete timesheet validation process:
40 * Draft sheet
41 * Confirmation at the end of the period by the employee
42 * Validation by the project manager
43
44 The validation can be configured in the company:
45 * Period size (day, week, month, year)
46 * Maximal difference between timesheet and attendances
47     """,
48     'author': 'OpenERP SA',
49     'website': 'http://www.openerp.com',
50     'images': ['images/hr_my_timesheet.jpeg','images/hr_timesheet_analysis.jpeg','images/hr_timesheet_sheet_analysis.jpeg','images/hr_timesheets.jpeg'],
51     'depends': ['hr_timesheet', 'hr_timesheet_invoice', 'process'],
52     'init_xml': [],
53     'update_xml': [
54         'security/ir.model.access.csv',
55         'security/hr_timesheet_sheet_security.xml',
56         'hr_timesheet_sheet_view.xml',
57         'hr_timesheet_workflow.xml',
58         'process/hr_timesheet_sheet_process.xml',
59         'board_hr_timesheet_view.xml',
60         'report/hr_timesheet_report_view.xml',
61         'report/timesheet_report_view.xml',
62         'wizard/hr_timesheet_current_view.xml',
63         'hr_timesheet_sheet_data.xml'
64     ],
65     'demo_xml': ['hr_timesheet_sheet_demo.xml',
66
67                  ],
68     'test':['test/test_hr_timesheet_sheet.yml'],
69     'installable': True,
70     'active': False,
71     'certificate': '0073297700829',
72 }
73 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: