forked from OCA/management-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
33 lines (32 loc) · 1.2 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
# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Hazard",
"version": "16.0.1.0.0",
"author": "Savoir-faire Linux, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/management-system",
"license": "AGPL-3",
"category": "Management System",
"depends": ["mgmtsystem", "hr"],
"data": [
"security/ir.model.access.csv",
"security/mgmtsystem_hazard_security.xml",
"views/mgmtsystem_hazard.xml",
"views/mgmtsystem_hazard_origin.xml",
"views/mgmtsystem_hazard_type.xml",
"views/mgmtsystem_hazard_probability.xml",
"views/mgmtsystem_hazard_severity.xml",
"views/mgmtsystem_hazard_usage.xml",
"views/mgmtsystem_hazard_control_measure.xml",
"views/mgmtsystem_hazard_test.xml",
],
"demo": [
"demo/mgmtsystem_hazard_hazard.xml",
"demo/mgmtsystem_hazard_origin.xml",
"demo/mgmtsystem_hazard_probability.xml",
"demo/mgmtsystem_hazard_severity.xml",
"demo/mgmtsystem_hazard_type.xml",
"demo/mgmtsystem_hazard_usage.xml",
],
"installable": True,
}