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