[IMP]Tax fix related to stock and pos
[odoo/odoo.git] / addons / hr_evaluation / __openerp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 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 Appraisals",
24     "version": "0.1",
25     "author": "OpenERP SA",
26     "category": "Human Resources",
27     "website": "http://www.openerp.com",
28     "summary": "Periodical Evaluations, Surveys",
29     "images": ["images/hr_evaluation_analysis.jpeg","images/hr_evaluation.jpeg"],
30     "depends": ["hr","base_calendar","survey"],
31     "description": """
32 Ability to create employees evaluation.
33 =======================================
34
35 An evaluation can be created by employee for subordinates, juniors as well as
36 his manager. The evaluation is done under a plan in which various surveys can be
37 created and it can be defined which level of employee hierarchy fills what and
38 final review and evaluation is done by the manager. Every evaluation filled by
39 the employees can be viewed in the form of pdf file.
40          """,
41     "demo": ["hr_evaluation_demo.xml"],
42     "data": [
43         "security/ir.model.access.csv",
44         "security/hr_evaluation_security.xml",
45 #        "wizard/hr_evaluation_mail_view.xml",
46         "hr_evaluation_view.xml",
47         "report/hr_evaluation_report_view.xml",
48         "board_hr_evaluation_view.xml",
49         'hr_evaluation_data.xml',
50         'hr_evaluation_installer.xml',
51     ],
52     "test": [
53         "test/test_hr_evaluation.yml",
54         "test/hr_evalution_demo.yml",
55     ],
56     "auto_install": False,
57     "installable": True,
58     "certificate" : "00883207679172998429",
59     'application': True,
60 }
61 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
62