-
Notifications
You must be signed in to change notification settings - Fork 15
/
__manifest__.py
36 lines (35 loc) · 1.02 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 (C) 2022 - Today: GRAP (http://www.grap.coop)
# @author: Quentin Dupont ([email protected])
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "MRP Business Modules",
"summary": "MRP functions that meet the business needs of GRAP,"
"adapted for food-related professions",
"version": "12.0.1.5.0",
"category": "GRAP - Custom",
"author": "GRAP",
"website": "https://github.com/grap/grap-odoo-custom",
"license": "AGPL-3",
"depends": [
"mrp",
# OCA modules
"product_net_weight",
"res_company_code",
"web_notify",
# GRAP Modules
"mrp_bom_line_net_qty",
"mrp_bom_product_variant",
],
"demo": [
"demo/product.xml",
"demo/bom.xml",
],
"data": [
"security/ir_rule.xml",
"security/ir.model.access.csv",
"views/view_mrp_bom.xml",
"views/view_mrp_meal_category.xml",
"views/view_product_product.xml",
],
"installable": True,
}