[FIX] I have improve the error message in procurement
[odoo/odoo.git] / addons / hr / __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     "name": "Employee Directory",
24     "version": "1.1",
25     "author": "OpenERP SA",
26     "category": "Human Resources",
27     "sequence": 12,
28     "website": "http://www.openerp.com",
29     "description": """
30 Module for human resource management.
31 =====================================
32
33 You can manage:
34     * Employees and hierarchies : You can define your employee with User and display hierarchies
35     * HR Departments
36     * HR Jobs
37     """,
38     'author': 'OpenERP SA',
39     'website': 'http://www.openerp.com',
40     'images': ['images/hr_department.jpeg', 'images/hr_employee.jpeg','images/hr_job_position.jpeg'],
41     'depends': ['base_setup','mail', 'resource', 'board'],
42     'init_xml': [],
43     'update_xml': [
44         'security/hr_security.xml',
45         'security/ir.model.access.csv',
46         'hr_view.xml',
47         'hr_department_view.xml',
48         'process/hr_process.xml',
49         'hr_installer.xml',
50         'hr_data.xml',
51         'hr_board.xml',
52         'res_config_view.xml',
53     ],
54     'demo_xml': [
55         'hr_demo.xml',
56     ],
57     'test': [
58              'test/open2recruit2close_job.yml',
59              'test/hr_demo.yml',
60              ],
61     'installable': True,
62     'application': True,
63     'auto_install': False,
64     'certificate': '0086710558965',
65     "css": [ 'static/src/css/hr.css' ],
66 }
67 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: