forked from OCA/product-attribute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
28 lines (27 loc) · 1004 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 2021 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Product Abc Classification based on delivered products",
"summary": """
Compute ABC classification from the number of delivered sale order
line by product""",
"version": "16.0.1.0.0",
"license": "AGPL-3",
"website": "https://github.com/OCA/product-attribute",
"maintainers": ["rousseldenis", "lmignon", "lmarion-source"],
"author": "ACSONE SA/NV,Odoo Community Association (OCA)",
"depends": ["product_abc_classification", "sale_stock"],
"data": [
"views/abc_classification_product_level.xml",
"security/abc_sale_stock_level_history.xml",
"views/abc_sale_stock_level_history.xml",
"views/abc_classification_profile.xml",
],
"external_dependencies": {
"python": ["freezegun"],
},
"demo": [
"demo/abc_classification_level.xml",
"demo/abc_classification_profile.xml",
],
}