forked from OCA/server-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path__openerp__.py
47 lines (46 loc) · 1.44 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
# -*- coding: utf-8 -*-
# © 2015 Antiun Ingeniería S.L. - Sergio Teruel
# © 2015 Antiun Ingeniería S.L. - Carlos Dauden
# © 2015-2016 Jairo Llopis <jairo.llopis@tecnativa.com>
# License LGPL-3 - See http://www.gnu.org/licenses/lgpl-3.0.html
{
'name': "Base Custom Info",
'summary': "Add custom field in models",
'category': 'Tools',
'version': '9.0.2.0.0',
'depends': [
'base_setup',
],
'data': [
'security/ir.model.access.csv',
'security/res_groups.xml',
'views/custom_info_category_view.xml',
'views/custom_info_option_view.xml',
'views/custom_info_template_view.xml',
'views/custom_info_property_view.xml',
'views/custom_info_value_view.xml',
'views/menu.xml',
'views/res_partner_view.xml',
'wizard/base_config_settings_view.xml',
],
'demo': [
'demo/custom.info.category.csv',
'demo/custom.info.template.csv',
'demo/custom.info.property.csv',
'demo/custom.info.option.csv',
'demo/custom_info_property_defaults.yml',
'demo/res_groups.xml',
],
"images": [
"images/menu.png",
"images/properties.png",
"images/templates.png",
"images/values.png",
],
'author': 'Tecnativa, '
'Odoo Community Association (OCA)',
'website': 'https://www.tecnativa.com',
'license': 'LGPL-3',
'application': True,
'installable': True,
}