[TYPO] Set the right category for the Point Of Sale
[odoo/odoo.git] / addons / project_issue / __openerp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU Affero General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU Affero General Public License for more details.
17 #
18 #    You should have received a copy of the GNU Affero General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23 {
24     'name': 'Issues Tracker',
25     'version': '1.0',
26     'category': 'Project Management',
27     "sequence": 22,
28     "summary": "Support, Bug Traker, Helpdesk",
29     'description': """
30 This module provides Issues/Bugs Management in Project.
31 =======================================================
32
33 OpenERP allows you to manage the issues you might face in a project
34 like bugs in a system, client complaints or material breakdowns. A
35 list view allows the manager to quickly check the issues, assign them
36 and decide on their status as they evolve.
37     """,
38     'author': 'OpenERP SA',
39     'website': 'http://www.openerp.com',
40     'images': ['images/issue_analysis.jpeg','images/project_issue.jpeg'],
41     'depends': [
42         'base_status',
43         'crm',
44         'project',
45     ],
46     'init_xml': [
47         'project_issue_data.xml'
48     ],
49     'update_xml': [
50         'project_issue_view.xml',
51         'project_issue_menu.xml',
52         'report/project_issue_report_view.xml',
53         'security/project_issue_security.xml',
54         'security/ir.model.access.csv',
55         "board_project_issue_view.xml",
56         "res_config_view.xml",
57      ],
58     'demo_xml': ['project_issue_demo.xml'],
59     'test': [
60       'test/subscribe_issue.yml',
61       'test/issue_process.yml',
62       'test/cancel_issue.yml',
63       'test/issue_demo.yml'
64     ],
65     'installable': True,
66     'auto_install': False,
67     'application': True,
68     'certificate' : '001236490750848623845',
69     'js': [
70         'static/src/js/project_issue.js',
71     ],
72 }
73
74 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: