d368ecac912fc49d4a1b6e332ff6cc3367681ec4
[odoo/odoo.git] / addons / gamification / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2013 OpenERP SA (<http://openerp.com>).
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     'name': 'Gamification',
23     'version': '1.0',
24     'author': 'OpenERP SA',
25     'category': 'Human Ressources',
26     'website' : 'https://www.odoo.com/page/gamification',
27     'depends': ['mail', 'email_template', 'web_kanban_gauge'],
28     'description': """
29 Gamification process
30 ====================
31 The Gamification module provides ways to evaluate and motivate the users of OpenERP.
32
33 The users can be evaluated using goals and numerical objectives to reach.
34 **Goals** are assigned through **challenges** to evaluate and compare members of a team with each others and through time.
35
36 For non-numerical achievements, **badges** can be granted to users. From a simple "thank you" to an exceptional achievement, a badge is an easy way to exprimate gratitude to a user for their good work.
37
38 Both goals and badges are flexibles and can be adapted to a large range of modules and actions. When installed, this module creates easy goals to help new users to discover OpenERP and configure their user profile.
39 """,
40
41     'data': [
42         'wizard/update_goal.xml',
43         'wizard/grant_badge.xml',
44         'views/badge.xml',
45         'views/challenge.xml',
46         'views/goal.xml',
47         'data/cron.xml',
48         'security/gamification_security.xml',
49         'security/ir.model.access.csv',
50         'data/goal_base.xml',
51         'data/badge.xml',
52         'views/gamification.xml',
53     ],
54     'installable': True,
55     'application': True,
56     'auto_install': False,
57
58     'qweb': ['static/src/xml/gamification.xml'],
59 }