-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
51 lines (51 loc) · 1.97 KB
/
__manifest__.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
# -*- coding: utf-8 -*-
##############################################################################
#
# Author: Abdulmomen Bsruki ([email protected])
#
# You can modify it under the terms of the GNU AFFERO
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3.
#
# 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details.
#
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
# (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{
'name': "RealEstateX",
'version': '16.0.0.9.0',
'category': 'Extra Tools',
'summary': """Real Estate Complaints Management""",
'description': """RealEstateX will provide a form on their website for tenants to submit complaints about their
rented flats. These complaints will then be classified and dealt with by RealEstateX’s employees.""",
'author': 'Abdulmomen Bsruki',
'maintainer': 'Abdulmomen Bsruki',
'website': 'bluemix.me',
'depends': ['website', 'mail', 'l10n_din5008'],
'data': [
'security/ir.model.access.csv',
'data/data.xml',
'data/complaint_received_mail_template.xml',
'data/complaint_finished_template.xml',
'views/complaint_template.xml',
'views/complaint_submitted_template.xml',
'views/complaint_ticket_views.xml',
'views/complaint_stage_views.xml',
'views/complaint_type_views.xml',
'views/res_config_settings_views.xml',
'report/print_complaint_ticket.xml',
],
'demo': [
'demo/demo.xml',
],
'images': ['static/description/banner.jpg'],
'license': 'AGPL-3',
'installable': True,
'auto_install': False,
'application': True
}