-
-
Notifications
You must be signed in to change notification settings - Fork 811
Expand file tree
/
Copy path__manifest__.py
More file actions
22 lines (22 loc) · 767 Bytes
/
__manifest__.py
File metadata and controls
22 lines (22 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2017 ACSONE SA/NV (<http://acsone.eu>)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{
"name": "Product State",
"summary": """
Module introducing a state field on product template""",
"author": "ACSONE SA/NV, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/product-attribute",
"category": "Product",
"version": "17.0.1.1.0",
"license": "AGPL-3",
"depends": ["product", "sale"],
"data": [
"data/product_state_data.xml",
"security/ir.model.access.csv",
"views/product_template_views.xml",
"views/product_state_views.xml",
],
"application": False,
"maintainers": ["emagdalenaC2i"],
"post_init_hook": "post_init_hook",
}