[FIX] I have improve the error message in procurement
[odoo/odoo.git] / addons / project_scrum / __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 {
24     'name': 'Methodology: SCRUM',
25     'version': '1.0',
26     'category': 'Project Management',
27     'description': """
28 This module implements all concepts defined by the scrum project management methodology for IT companies.
29 =========================================================================================================
30
31     * Project with sprints, product owner, scrum master
32     * Sprints with reviews, daily meetings, feedbacks
33     * Product backlog
34     * Sprint backlog
35
36 It adds some concepts to the project management module:
37     * Mid-term, long-term road-map
38     * Customers/functional requests VS technical ones
39
40 It also creates a new reporting:
41     * Burn-down chart
42
43 The scrum projects and tasks inherit from the real projects and
44 tasks, so you can continue working on normal tasks that will also
45 include tasks from scrum projects.
46
47 More information on the methodology:
48     * http://controlchaos.com
49     """,
50     'author': 'OpenERP SA',
51     'images': ['images/product_backlogs.jpeg', 'images/project_sprints.jpeg', 'images/scrum_dashboard.jpeg', 'images/scrum_meetings.jpeg'],
52     'depends': ['project', 'process', 'mail'],
53     'init_xml': [],
54     'update_xml': [
55         'security/ir.model.access.csv',
56         'project_scrum_report.xml',
57         'wizard/project_scrum_backlog_create_task_view.xml',
58         'wizard/project_scrum_backlog_merger_view.xml',
59         'wizard/project_scrum_postpone_view.xml',
60 #        "wizard/project_scrum_email_view.xml",
61         'project_scrum_view.xml',
62         'wizard/project_scrum_backlog_sprint_view.xml',
63         'process/project_scrum_process.xml',
64         "board_project_scrum_view.xml",
65     ],
66     'demo_xml': ['project_scrum_demo.xml'],
67     'test': ['test/backlog_process.yml',
68              'test/sprint_process.yml',
69              'test/cancel_backlog.yml',
70              'test/project_scrum_demo.yml',
71              ],
72     'installable': True,
73     'auto_install': False,
74     'certificate' : '00736750152003010781',
75 }
76 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: