forked from grap/grap-odoo-business
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
30 lines (30 loc) · 1 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
# Copyright (C) 2024 - 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": "Products - Food Certification Informations",
"version": "12.0.1.0.0",
"category": "Sales",
"author": "GRAP",
"website": "https://github.com/grap/grap-odoo-business",
"license": "AGPL-3",
"depends": ["product_food"],
"data": [
"security/res_groups.xml",
"security/ir.model.access.csv",
"views/view_certifier_organization.xml",
"views/view_product_product.xml",
"views/view_product_template.xml",
"views/view_res_company.xml",
"views/view_product_label.xml",
],
"external_dependencies": {"python": ["openupgradelib"]},
"demo": [
"demo/certifier_organization.xml",
"demo/product_label.xml",
"demo/res_company.xml",
],
"images": [],
"installable": True,
"post_init_hook": "post_init_hook",
}