f84a026748b8bce0f01fc6b71e7aa808d7675dc6
[odoo/odoo.git] / addons / hr_holidays / __terp__.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" : "Human Resources: Holidays management",
25     "version" : "1.5",
26     "author" : "Tiny & Axelor",
27     "category" : "Generic Modules/Human Resources",
28     "website" : "http://www.openerp.com",
29     "description": """Human Ressources: Holidays tracking and workflow
30
31     This module allows you to manage leaves and leaves requests.
32
33     Note that:
34     - A synchronisation with an internal agenda (use of the CRM module) is possible: in order to automatically create a case when an holiday request is accepted, you have to link the holidays status to a case section. You can set up this info and your colour preferences in
35                 HR / Configuration / Holidays Status
36     - 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).
37     - There are two ways to print the employee's holidays:
38         * The first will allow to choose employees by department and is used by clicking the menu item located in
39                 HR / Holidays Request / Print Summary of Holidays
40         * The second will allow you to choose the holidays report for specific employees. Go on the list
41                 HR / Employees / Employees
42             then select the ones you want to choose, click on the print icon and select the option
43                 'Print Summary of Employee's Holidays'
44     - The wizard allows you to choose if you want to print either the Confirmed & Validated holidays or only the Validated ones. These states must be set up by a user from the group 'HR' and with the role 'holidays'. You can define these features in the security tab from the user data in
45                 Administration / Users / Users
46             for example, you maybe will do it for the user 'admin'.
47 """,
48     'author': 'Tiny & Axelor',
49     'website': 'http://www.openerp.com',
50     'depends': ['hr', 'crm', 'process'],
51     'init_xml': [],
52     'update_xml': [
53         'security/ir.model.access.csv',
54         'hr_workflow.xml',
55         'hr_view.xml',
56         'hr_holidays_report.xml',
57         'hr_holidays_wizard.xml',
58         #'process/hr_holidays_process.xml'
59     ],
60     'demo_xml': [],
61     'installable': True,
62     'active': False,
63     'certificate': '0086579209325',
64 }
65 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: