forked from OCA/margin-analysis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
__manifest__.py
28 lines (27 loc) · 925 Bytes
/
__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
# 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": "16.0.1.1.1",
"category": "Account",
"author": "GRAP,Odoo Community Association (OCA)",
"maintainers": ["legalsylvain"],
"website": "https://github.com/OCA/margin-analysis",
"license": "AGPL-3",
"depends": ["sale"],
"data": [
"security/ir_rule.xml",
"security/ir.model.access.csv",
"data/decimal_precision.xml",
"views/view_product_product.xml",
"views/view_product_template.xml",
"views/view_product_margin_classification.xml",
],
"demo": [
"demo/res_groups.xml",
"demo/product_margin_classification.xml",
"demo/product_product.xml",
],
"installable": True,
}