forked from OCA/hr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
29 lines (28 loc) · 927 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
27
28
29
# Copyright 2020 Escodoo
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Personal Protective Equipment (PPE) Management",
"version": "12.0.1.1.0",
"author": "Escodoo, Odoo Community Association (OCA)",
'maintainers': ['marcelsavegnago', 'eduaparicio'],
'images': ['static/description/banner.png'],
"website": "https://github.com/oca/hr",
"license": "AGPL-3",
"category": "Human Resources",
"depends": ["hr",
'mail',
'product'],
"data": [
"security/hr_security.xml",
'security/hr_employee_ppe_equipment.xml',
"security/ir.model.access.csv",
"views/hr_employee_view.xml",
"views/hr_employee_ppe_view.xml",
'views/hr_employee_ppe_equipment.xml',
'data/hr_employee_ppe_cron.xml',
],
'demo': [
'demo/hr_employee_ppe_demo.xml',
],
'installable': True
}