forked from OCA/field-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
26 lines (26 loc) · 879 Bytes
/
__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
# Copyright (C) 2019 - TODAY, Patrick Wilson
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Field Service - Project",
"summary": "Create field service orders from a project or project task",
"version": "17.0.1.0.0",
"license": "AGPL-3",
"author": "Pavlov Media, Odoo Community Association (OCA)",
"category": "Project",
"website": "https://github.com/OCA/field-service",
"depends": ["fieldservice", "project"],
"data": [
"views/project_views.xml",
"views/project_task_views.xml",
"views/fsm_location_views.xml",
"views/fsm_order_views.xml",
"security/ir.model.access.csv",
"views/fsm_team.xml",
],
"assets": {
"web.assets_backend": [
"/fieldservice_project/static/src/scss/project_column.scss",
]
},
"installable": True,
}