[IMP] sale order line invisible type
[odoo/odoo.git] / addons / hr_holidays / __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': 'Leaves Management',
25     'version': '1.5',
26     'author': 'OpenERP SA',
27     'category': 'Human Resources',
28     'sequence': 28,
29     'summary': 'Holidays, Allocation and Leave Requests',
30     'website': 'http://www.openerp.com',
31     'description': """
32 This module allows you to manage leaves and leave's requests.
33 =============================================================
34
35 Implements a dashboard for human resource management that includes:
36 -------------------------------------------------------------------
37     * Leaves
38
39 Note that:
40 ~~~~~~~~~~
41     - A synchronisation with an internal agenda (use of the CRM module) is
42       possible: in order to automatically create a case when an holiday request
43       is accepted, you have to link the holidays status to a case section. You
44       can setup this info and your colour preferences in
45       
46           **Human Resources** / **Configuration** / **Leave Type**
47     - An employee can make an ask for more off-days by making a new Allocation. It will increase his total of that leave type available (if the request is accepted).
48     - There are two ways to print the employee's holidays:
49         * The first will allow to choose employees by department and is used by clicking the menu item located in
50                 **Reporting** / **Human Resources** / **Leaves** / **Leaves by Department**
51         * The second will allow you to choose the holidays report for specific employees. Go on the list
52                 **Human Resources** / **Human Resources** / **Employees**
53                 then select the ones you want to choose, click on the print icon and select the option
54                 'Leaves Summary'
55     - The wizard allows you to choose if you want to print either the Approved & Confirmed holidays or both. These states must be set up by a user from the group 'HR'. You can define these features in the security tab from the user data in
56                 **Settings** / **Users** / **Users**
57                 
58                 for example, you maybe will do it for the user 'admin'.
59 """,
60     'images': ['images/hr_allocation_requests.jpeg', 'images/hr_leave_requests.jpeg', 'images/leaves_analysis.jpeg'],
61     'depends': ['hr', 'base_calendar', 'process', 'resource'],
62     'data': [
63         'security/ir.model.access.csv',
64         'security/ir_rule.xml',
65         'hr_holidays_workflow.xml',
66         'hr_holidays_view.xml',
67         'hr_holidays_data.xml',
68         'hr_holidays_report.xml',
69         'report/hr_holidays_report_view.xml',
70         'report/available_holidays_view.xml',
71         'wizard/hr_holidays_summary_department_view.xml',
72         'wizard/hr_holidays_summary_employees_view.xml',
73         'board_hr_holidays_view.xml',
74         ],
75     'demo': ['hr_holidays_demo.xml',],
76     'test': ['test/test_hr_holiday.yml',
77              'test/hr_holidays_report.yml',
78     ],
79     'installable': True,
80     'application': True,
81     'auto_install': False,
82     'certificate': '0086579209325',
83 }
84 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: