~project-core-editors/project-service/trunk

« back to all changes in this revision

Viewing changes to project_issue_sequences/__openerp__.py

  • Committer: Guewen Baconnier
  • Author(s): Daniel Reis
  • Date: 2013-01-03 11:34:54 UTC
  • mfrom: (19.1.2 project-service-sequences)
  • Revision ID: guewen.baconnier@camptocamp.com-20130103113454-ov1q8obbla7abrdx
[ADD] Reference sequences for Issues, configurable by Category

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#    
 
4
#    Copyright (C) 2012 Daniel Reis
 
5
#
 
6
#    This program is free software: you can redistribute it and/or modify
 
7
#    it under the terms of the GNU Affero General Public License as
 
8
#    published by the Free Software Foundation, either version 3 of the
 
9
#    License, or (at your option) any later version.
 
10
#
 
11
#    This program is distributed in the hope that it will be useful,
 
12
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
#    GNU Affero General Public License for more details.
 
15
#
 
16
#    You should have received a copy of the GNU Affero General Public License
 
17
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
#
 
19
##############################################################################
 
20
{
 
21
    'name': 'Project Issue Sequences',
 
22
    'version': '0.1',
 
23
    "category": "Project Management",
 
24
    'description': """\
 
25
Reference sequences for Issues, configurable by Category.
 
26
For example: an IT Management related issue might have a "IT-xxxxx" sequence, and a Building maintenance issue an independent "B-xxxx" sequence.  
 
27
If no specific Sequence is specified, the default "Project Issue" sequence will be used.
 
28
If the crm_categ_hierarchy module is also installed, specific sequences will apply to all child categories. 
 
29
""",
 
30
    'author': 'Daniel Reis',
 
31
    'website': 'daniel.reis@securitas.pt',
 
32
    'depends': ['project_issue'], 
 
33
    'data': [
 
34
        'crm_categ_view.xml', 
 
35
        'project_issue_view.xml', 
 
36
        'project_issue_data.xml',
 
37
    ],
 
38
    'installable': True,
 
39
    'application': False,
 
40
}
 
41
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: