forked from akretion/sale-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__openerp__.py
31 lines (30 loc) · 924 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
# -*- coding: utf-8 -*-
# Copyright (C) 2016-Today GRAP (http://www.grap.coop)
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': 'Product Margin Classification',
'version': '8.0.2.1.0',
'category': 'Account',
'author': 'GRAP,Odoo Community Association (OCA)',
'website': 'http://www.grap.coop',
'license': 'AGPL-3',
'depends': [
'account',
],
'data': [
'security/ir_rule.xml',
'security/ir.model.access.csv',
'data/decimal_precision.xml',
'views/action.xml',
'views/menu.xml',
'views/view_product_template.xml',
'views/view_product_margin_classification.xml',
],
'demo': [
'demo/res_groups.yml',
'demo/product_margin_classification.xml',
'demo/product_template.xml',
],
'installable': True,
}