-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path__manifest__.py
44 lines (43 loc) · 1.34 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
43
44
# Copyright (C) 2023 - 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 Grouped Sales and Production",
"summary": "Quickly manage what you need to produce thanks to grouped sales",
"version": "12.0.1.6.0",
"category": "GRAP - Custom",
"author": "GRAP",
"website": "https://github.com/grap/grap-odoo-custom",
"license": "AGPL-3",
"depends": [
"mrp",
"sale_management",
# OCA
"web_widget_x2many_2d_matrix",
# GRAP
"mrp_bom_simple_report",
"mrp_bom_purchase",
],
"demo": [
"demo/product.xml",
"demo/bom.xml",
"demo/sale_order.xml",
"demo/sale_order_line.xml",
],
"data": [
"data/report_paperformat.xml",
"security/ir_rule.xml",
"security/ir.model.access.csv",
"report/report_sale_grouped.xml",
"report/ir_actions_report.xml",
"views/action.xml",
"views/menu.xml",
"views/view_mrp_sale_grouped.xml",
"views/view_sale_order.xml",
"wizard/view_sale_grouped_wizard.xml",
"wizard/x2m_matrix_grouped_sales.xml",
"wizard/view_production_assistant_wizard.xml",
"views/action.xml",
],
"installable": True,
}