-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path__manifest__.py
42 lines (41 loc) · 1.16 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
37
38
39
40
41
42
# 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 for Food",
"summary": "MRP modules adapted for food-related professions",
"version": "12.0.3.0.0",
"category": "GRAP - Custom",
"author": "GRAP",
"website": "https://github.com/grap/grap-odoo-custom",
"license": "AGPL-3",
"depends": [
"mrp",
# OCA modules
"web_widget_color",
"purchase_triple_discount",
# GRAP modules,
"mrp_bom_tag",
"product_food",
"product_label",
"product_main_seller",
"mrp_bom_sale_product_margin",
"product_supplierinfo_standard_price",
],
"demo": [
"demo/allergens.xml",
"demo/product.xml",
"demo/bom.xml",
],
"data": [
"views/view_mrp_bom.xml",
"views/view_product_allergen.xml",
"views/view_product_product.xml",
"views/view_product_template.xml",
"views/assets.xml",
],
"images": [
"./static/img/tomato_pie.png",
],
"installable": True,
}