[IMP] bundlify addons (except website)
[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': 24,
28     'summary': 'Timesheets, Attendances, Activities',
29     'description': """
30 Record and validate timesheets and attendances easily
31 =====================================================
32
33 This application supplies a new screen enabling you to manage both attendances (Sign in/Sign out) and your work encoding (timesheet) by period. Timesheet entries are made by employees each day. At the end of the defined period, employees validate their sheet and the manager must then approve his team's entries. Periods are defined in the company forms and you can set them to run monthly or weekly.
34
35 The complete timesheet validation process is:
36 ---------------------------------------------
37 * Draft sheet
38 * Confirmation at the end of the period by the employee
39 * Validation by the project manager
40
41 The validation can be configured in the company:
42 ------------------------------------------------
43 * Period size (Day, Week, Month)
44 * Maximal difference between timesheet and attendances
45     """,
46     'author': 'OpenERP SA',
47     'website': 'http://www.openerp.com',
48     'images': ['images/hr_my_current_timesheet.jpeg','images/hr_timesheet_analysis.jpeg','images/hr_timesheet_sheet_analysis.jpeg','images/hr_timesheet_activity.jpeg'],
49     'depends': ['hr_timesheet', 'hr_timesheet_invoice', 'process'],
50     'data': [
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         'res_config_view.xml',
62         'views/hr_timesheet_sheet.xml',
63     ],
64     'demo': ['hr_timesheet_sheet_demo.xml'],
65     'test':['test/test_hr_timesheet_sheet.yml'],
66     'installable': True,
67     'auto_install': False,
68     'application': True,
69     'qweb': ['static/src/xml/timesheet.xml',],
70 }
71 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: