forked from OCA/product-attribute
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__manifest__.py
More file actions
28 lines (27 loc) · 804 Bytes
/
__manifest__.py
File metadata and controls
28 lines (27 loc) · 804 Bytes
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
# SPDX-FileCopyrightText: 2023 Coop IT Easy SC
#
# SPDX-License-Identifier: AGPL-3.0-or-later
{
"name": "Product Attribute Company Favorite",
"summary": """
Possibility to set favorite product attributes per company""",
"version": "16.0.1.0.0",
"category": "Product",
"website": "https://github.com/OCA/product-attribute",
"author": "Coop IT Easy SC, Odoo Community Association (OCA)",
"maintainers": ["victor-champonnois"],
"license": "AGPL-3",
"application": False,
"depends": [
"product",
"stock",
],
"excludes": [],
"data": [
"views/product_attribute_views.xml",
"views/res_config_settings_views.xml",
],
"demo": [],
"qweb": [],
"post_init_hook": "initialize_attribute_is_favorite_field",
}