forked from OCA/product-attribute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__openerp__.py
36 lines (35 loc) · 922 Bytes
/
__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
# coding: utf-8
# © 2015 Sylvain CALADOR @ Akretion
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': 'Pricelist Per Product',
'version': '8.0.1.0.0',
'author': 'Akretion, Odoo Community Association (OCA)',
'summarize': 'Display pricelist items in products',
'maintainer': 'Akretion',
'category': 'sale',
'depends': [
'sale',
],
'website': 'http://www.akretion.com/',
'data': [
'install_view.xml',
'product_view.xml',
'pricelist_view.xml',
'data/pricelist.xml',
],
'demo': [
'demo/product.pricelist.item.csv',
],
'tests': [],
'images': [
'static/description/mass.png',
'static/description/pricelist.png',
'static/description/product.png',
],
'installable': True,
'license': 'AGPL-3',
'external_dependencies': {
'python': [],
},
}