forked from OCA/project
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path__manifest__.py
38 lines (38 loc) · 1.22 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
# Copyright 2022 Camptocamp SA
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Project Forecast Lines",
"summary": "Project Forecast Lines",
"version": "15.0.1.3.3",
"author": "Camptocamp SA, Odoo Community Association (OCA)",
"license": "AGPL-3",
"category": "Project",
"website": "https://github.com/OCA/project",
"depends": ["sale_timesheet", "sale_project", "hr_holidays"],
"data": [
"security/forecast_line_security.xml",
"security/ir.model.access.csv",
"views/sale_order_views.xml",
"views/hr_employee_views.xml",
"views/forecast_line_views.xml",
"views/forecast_role_views.xml",
"views/product_views.xml",
"views/project_task_views.xml",
"views/project_project_stage_views.xml",
"views/res_config_settings_views.xml",
"data/ir_cron.xml",
"data/project_data.xml",
],
"demo": [
"demo/res_users.xml",
"demo/forecast_role.xml",
"demo/hr_job.xml",
"demo/hr_employee.xml",
"demo/product.xml",
"demo/project.xml",
"demo/sale.xml",
],
"installable": True,
"development_status": "Alpha",
"application": True,
}