[MERGE] lp881356
[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 Validation',
25     'version': '1.0',
26     'category': 'Human Resources',
27     "sequence": 16,
28     'description': """
29 This module helps you to easily encode and validate timesheet and attendances within the same view.
30 ===================================================================================================
31
32 The upper part of the view is for attendances and track (sign in/sign out) events.
33 The lower part is for timesheet.
34
35 Other tabs contains statistics views to help you analyse your
36 time or the time of your team:
37 * Time spent by day (with attendances)
38 * Time spent by project
39
40 This module also implements a complete timesheet validation process:
41 * Draft sheet
42 * Confirmation at the end of the period by the employee
43 * Validation by the project manager
44
45 The validation can be configured in the company:
46 * Period size (day, week, month, year)
47 * Maximal difference between timesheet and attendances
48     """,
49     'author': 'OpenERP SA',
50     'website': 'http://www.openerp.com',
51     'images': ['images/hr_my_timesheet.jpeg','images/hr_timesheet_analysis.jpeg','images/hr_timesheet_sheet_analysis.jpeg','images/hr_timesheets.jpeg'],
52     'depends': ['hr_timesheet', 'hr_timesheet_invoice', 'process'],
53     'init_xml': [],
54     'update_xml': [
55         'security/ir.model.access.csv',
56         'security/hr_timesheet_sheet_security.xml',
57         'hr_timesheet_sheet_view.xml',
58         'hr_timesheet_workflow.xml',
59         'process/hr_timesheet_sheet_process.xml',
60         'board_hr_timesheet_view.xml',
61         'report/hr_timesheet_report_view.xml',
62         'report/timesheet_report_view.xml',
63         'wizard/hr_timesheet_current_view.xml',
64         'hr_timesheet_sheet_data.xml'
65     ],
66     'demo_xml': ['hr_timesheet_sheet_demo.xml',
67
68                  ],
69     'test':['test/test_hr_timesheet_sheet.yml'],
70     'installable': True,
71     'auto_install': False,
72     'certificate': '0073297700829',
73     'application': True,
74 }
75 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: