forked from ITPS/oerp_gap_analysis_ITPS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__openerp__.py
81 lines (71 loc) · 2.75 KB
/
__openerp__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# -*- encoding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Enterprise Resource Planning and Management Solution
#
# Copyright (c) 2013 ITpedia Solutions LLC. All Rights Reserved
# Author: Mohammed Arif <[email protected]>
#
# Copyright (c) 2010-2013 Elico Corp. All Rights Reserved.
# Author: Yannick Gouin <[email protected]>
#
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{
'name': 'Gap Analysis',
'version': '1.1',
'category': 'Tools',
'complexity': "easy",
'description': """
This module provides the necessary tools to create and manage a software gap-analysis.
=> Once the Gap Analysis set as Done, you can generate a new project with all the task from the Gap Analysis.
You can manage :
----------------
* functionalities, eg: "Ability to provide quantity discount"
* categories, eg: "SEO, Website, ..."
* workload, eg: "1 day for 500$"
* workload type, eg: "Training, Advanced Development, ..."
Report :
--------
* Generate a full gap-analysis, with the total planned workload and cost estimation.
Security :
----------
* Everybody can read
* Gap Analysis Users can create, read and update their own gap-analysis
* Gap Analysis Managers can create, read, update and delete any gap-analysis
""",
'author': 'Mohammed Arif',
'website': 'http://www.itpedia-solutions.com/',
'images': ['images/report.jpg','images/gap_analysis.jpg','images/gap_analysis2.jpg'],
'depends': ['report_webkit','project'],
'init_xml': [],
'data': [
'security/gap_analysis_rules.xml',
'security/ir.model.access.csv',
'report/gap_analysis_report_view.xml',
#'gap_analysis_workflow.xml',
'gap_analysis_sequence.xml',
'gap_analysis.xml',
],
#'demo_xml': ['gap_analysis_demo.xml'],
'test': [],
'installable': True,
'auto_install': False,
'application': True,
'active': True,
'certificate': '',
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: