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