[FIX] error reporting in _.sprintf
[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     'complexity': "easy",
28     "website": "http://www.openerp.com",
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,
36 juniors as well as his manager.The evaluation is done under a plan
37 in which various surveys can be created and it can be defined which
38 level of employee hierarchy fills what and final review and evaluation
39 is done by the manager.Every evaluation filled by the employees can be viewed
40 in the form of pdf file. Implements a dashboard for My Current Evaluations
41          """,
42     "demo": ["hr_evaluation_demo.xml"],
43     "data": [
44         "security/ir.model.access.csv",
45         "security/hr_evaluation_security.xml",
46 #        "wizard/hr_evaluation_mail_view.xml",
47         "hr_evaluation_view.xml",
48         "report/hr_evaluation_report_view.xml",
49         "board_hr_evaluation_view.xml",
50         'hr_evaluation_data.xml',
51         'hr_evaluation_installer.xml',
52     ],
53     "test": [
54         "test/test_hr_evaluation.yml",
55         "test/hr_evalution_demo.yml",
56     ],
57     "active": False,
58     "installable": True,
59     "certificate" : "00883207679172998429",
60     'application': True,
61 }
62 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
63