forked from OCA/product-attribute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
36 lines (34 loc) · 1.19 KB
/
__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
29
30
31
32
33
34
35
36
# Copyright 2017 Akretion (http://www.akretion.com).
# Copyright 2017-Today GRAP (http://www.grap.coop).
# @author Sébastien BEAU <[email protected]>
# @author Sylvain LE GAL <https://twitter.com/legalsylvain>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Product Stock State",
"summary": "Compute the state of a product's stock"
"the stock level and sale_ok field",
"version": "14.0.1.0.1",
"website": "https://github.com/OCA/product-attribute",
"author": " Akretion, GRAP, Odoo Community Association (OCA)",
"license": "AGPL-3",
"application": False,
"installable": True,
"depends": ["sale_stock"],
"data": [
"security/res_groups.xml",
"views/product_template_view.xml",
"views/product_product_view.xml",
"views/product_category_view.xml",
"views/res_config_settings_view.xml",
"views/res_company_view.xml",
"data/data.xml",
],
"demo": [
"demo/res_groups.xml",
"demo/product_category.xml",
"demo/product_product.xml",
"demo/product_category.xml",
],
"qweb": [],
"maintainers": ["sebastienbeau", "legalsylvain", "kevinkhao"],
}